:root {
  --ink: #0d0d0c;
  --muted: #665d70;
  --paper: #f4eff8;
  --panel: rgba(255, 253, 255, 0.72);
  --panel-solid: #fbf7ff;
  --line: rgba(67, 18, 122, 0.14);
  --accent: #43127a;
  --taupe: #d8cae9;
  --accent-soft: rgba(104, 54, 157, 0.1);
  --accent-mid: #e8def3;
  --dark: #171714;
  --shadow: 0 22px 60px rgba(50, 25, 82, 0.12);
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

[id] {
  scroll-margin-top: 132px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(255, 255, 255, 0.92),
      transparent 24rem
    ),
    radial-gradient(
      circle at 85% 32%,
      rgba(104, 54, 157, 0.12),
      transparent 30rem
    ),
    linear-gradient(135deg, #ece6f1 0%, #fbf8ff 42%, #e7deef 100%);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  width: min(1320px, calc(100% - 48px));
  margin: 18px auto 24px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: 230px 1fr 145px;
  align-items: center;
  min-height: 74px;
  padding: 13px 15px 13px 30px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 50px rgba(49, 43, 36, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 14px;
  align-items: center;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 8px;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.brand-copy strong {
  color: var(--accent);
}

.brand-copy small {
  color: #777176;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #22211f;
  border-radius: 7px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -1px;
}

.brand strong {
  display: block;
  font-size: 31px;
  line-height: 1;
  letter-spacing: 1.8px;
  font-weight: 800;
}

.brand small {
  display: block;
  font-size: 11px;
  letter-spacing: 6px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(26px, 4.2vw, 62px);
}

.nav-links a,
.talk-link,
.text-action,
.service-card a {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a:hover,
.text-action:hover,
.service-card a:hover {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 4px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #0e0d0c;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(67, 18, 122, 0.2);
}

.menu-toggle span {
  width: 16px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

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

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

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

.circle-arrow {
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  margin-left: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.section-grid {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 30px;
  padding: 36px 42px 16px 80px;
}

.side-index {
  position: absolute;
  left: -36px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  justify-items: center;
  gap: 18px;
  font-size: 11px;
}

.side-index i {
  width: 1px;
  height: 30px;
  background: var(--ink);
}

.side-index span {
  width: 5px;
  height: 5px;
  border: 1px solid var(--muted);
  border-radius: 50%;
}

.panel,
.work-process,
.about-section,
.portfolio-section,
.gallery,
.contact-section,
.site-footer {
  position: relative;
}

.section-index {
  position: absolute;
  left: -42px;
  top: 50%;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 18px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.section-index i {
  width: 1px;
  height: 30px;
  background: currentColor;
}

.section-index span {
  width: 5px;
  height: 5px;
  border: 1px solid var(--muted);
  border-radius: 50%;
}

.section-index-up {
  left: -54px;
  right: auto;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.section-index-up b {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.08em;
  transform: rotate(180deg);
}

.section-index-up i {
  background: currentColor;
}

.section-index-up span {
  border-color: rgba(67, 18, 122, 0.34);
}

.section-index-up:hover,
.section-index-up:focus-visible {
  color: var(--accent-dark);
  transform: translateY(-50%) translateY(-4px);
}

.eyebrow {
  position: relative;
  margin: 0 0 18px;
  padding-left: 34px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #4e4842;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 1px;
  background: #4d4640;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-kicker {
  opacity: 0;
  transform: translateX(-220px);
}

.hero-copy.hero-title-complete .hero-kicker {
  animation: heroKickerSettle 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
  overflow: hidden;
}

.hero-typed {
  white-space: normal;
  transition: opacity 0.18s ease;
}

.hero-type-cursor {
  display: inline-block;
  width: 0.08em;
  height: 0.78em;
  margin-left: 0.08em;
  background: var(--accent);
  transform: translateY(0.08em);
  animation: heroTypeCursor 0.95s steps(1) infinite;
}

.hero-title.is-typed .hero-type-cursor {
  opacity: 0;
  animation: none;
}

.mark-word {
  display: inline-flex;
  overflow: visible;
  perspective: 800px;
  background: linear-gradient(90deg, var(--accent), #7d43b7, var(--accent));
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mark-letter,
.mark-dot {
  display: inline-block;
  opacity: 0;
  color: var(--accent);
  will-change: transform, opacity;
}

.mark-word.is-visible .mark-m {
  animation: backInLeft 0.82s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.mark-word.is-visible .mark-a {
  animation: backInDown 0.82s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s forwards;
}

.mark-word.is-visible .mark-r {
  animation: backInUp 0.82s cubic-bezier(0.34, 1.56, 0.64, 1) 0.16s forwards;
}

.mark-word.is-visible .mark-k {
  animation: backInRight 0.82s cubic-bezier(0.34, 1.56, 0.64, 1) 0.24s forwards;
}

.mark-word.is-visible .mark-dot {
  animation: markDotPop 0.35s ease 0.56s forwards;
}

@keyframes heroKickerSettle {
  0% {
    opacity: 0;
    transform: translateX(-220px);
  }

  62% {
    opacity: 1;
    transform: translateX(min(46vw, 620px));
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroTypeCursor {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

@keyframes backInLeft {
  0% {
    opacity: 0;
    transform: translateX(-120px) scale(0.72);
  }

  80% {
    opacity: 0.78;
    transform: translateX(10px) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes backInDown {
  0% {
    opacity: 0;
    transform: translateY(-120px) scale(0.72);
  }

  80% {
    opacity: 0.78;
    transform: translateY(10px) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes backInUp {
  0% {
    opacity: 0;
    transform: translateY(120px) scale(0.72);
  }

  80% {
    opacity: 0.78;
    transform: translateY(-10px) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes backInRight {
  0% {
    opacity: 0;
    transform: translateX(120px) scale(0.72);
  }

  80% {
    opacity: 0.78;
    transform: translateX(-10px) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes markDotPop {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }

  80% {
    opacity: 1;
    transform: scale(1.18);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-kicker,
  .mark-letter,
  .mark-dot {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .hero-type-cursor {
    display: none;
  }
}

.animated-heading {
  overflow: visible;
}

.animated-heading .heading-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.75em);
  filter: blur(7px);
  transition:
    opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.72s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--heading-index, 0) * 0.055s);
}

.animated-heading.heading-in-view .heading-word {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.animated-heading em {
  display: inline-block;
  overflow: visible;
}

.heading-em-word {
  display: inline-block;
  white-space: nowrap;
}

.heading-em-letter {
  display: inline-block;
  opacity: 0;
  color: var(--accent);
  will-change: transform, opacity;
}

.animated-heading.heading-in-view .heading-back-left {
  animation: backInLeft 0.82s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: calc(0.18s + (var(--heading-index, 0) * 0.045s));
}

.animated-heading.heading-in-view .heading-back-down {
  animation: backInDown 0.82s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: calc(0.18s + (var(--heading-index, 0) * 0.045s));
}

.animated-heading.heading-in-view .heading-back-up {
  animation: backInUp 0.82s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: calc(0.18s + (var(--heading-index, 0) * 0.045s));
}

.animated-heading.heading-in-view .heading-back-right {
  animation: backInRight 0.82s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: calc(0.18s + (var(--heading-index, 0) * 0.045s));
}

@media (prefers-reduced-motion: reduce) {
  .animated-heading .heading-word,
  .heading-em-letter {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    transition: none;
  }
}

h2 {
  margin-bottom: 0;
  font-size: clamp(29px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: 0;
}

em {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

.lead {
  margin-bottom: 30px;
  color: #1d1b19;
  font-size: 15px;
}

.button-row,
.contact-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.btn:hover,
.service-card:hover,
.project-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
}

.btn:hover span,
.service-card:hover a span,
.project-card:hover a,
.blog-card:hover a {
  transform: translate(3px, -3px);
}

.btn span,
.service-card a span,
.project-card a,
.blog-card a {
  display: inline-block;
  transition: transform 0.25s ease;
}

.btn-dark {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.btn-ghost {
  color: #17120f;
  background: transparent;
  border-color: transparent;
  border-radius: 0;
}

.hero-media {
  min-height: 335px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-media img {
  width: min(100%, 560px);
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.16));
}

.trusted-strip,
.panel,
.work-band,
.insights,
.gallery,
.contact-section {
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.trusted-strip {
  display: grid;
  grid-template-columns: 130px 130px 130px 1fr 250px;
  align-items: center;
  gap: 0;
  margin: 0 30px 22px;
  padding: 18px 34px;
  border-radius: var(--radius);
}

.metric {
  min-height: 58px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.metric strong {
  display: block;
  font-size: 26px;
}

.metric span,
.showreel small,
.project-card p,
.blog-card p,
.contact-line small,
.map-features small {
  color: var(--muted);
  font-size: 11px;
}

.trusted-logos {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-left: 28px;
  color: #1c1b1a;
}

.trusted-logos span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.trusted-logos b {
  font-size: 14px;
  opacity: 0.8;
}

.showreel {
  min-height: 72px;
  display: grid;
  grid-template-columns: 42px 84px 1fr;
  align-items: center;
  gap: 10px;
  margin-left: 18px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
}

.play {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
}

.showreel img {
  height: 44px;
  width: 84px;
  object-fit: cover;
  border-radius: 8px;
}

.showreel em {
  font-family: Inter, Arial, sans-serif;
  color: var(--muted);
  font-style: normal;
  font-size: 10px;
  font-weight: 400;
}

.panel,
.work-band,
.insights,
.gallery,
.contact-section {
  margin: 0 28px 16px;
  padding: 30px 36px 18px;
  border-radius: 14px;
}

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: start;
  gap: 44px;
  margin-bottom: 34px;
}

.section-head > p {
  max-width: 370px;
  margin-top: 26px;
  font-size: 14px;
}

.text-action {
  justify-self: end;
  margin-top: 44px;
}

.text-action span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.services {
  padding: 34px clamp(22px, 5vw, 72px) 34px;
  background: rgba(255, 255, 255, 0.28);
}

.services .section-head {
  grid-template-columns: minmax(360px, 1.05fr) minmax(280px, 0.72fr);
  align-items: end;
  margin-bottom: 34px;
}

.services .section-head > p {
  max-width: 420px;
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  box-shadow: 0 18px 40px rgba(37, 31, 26, 0.12);
}

.featured-service-card {
  position: relative;
  min-height: 218px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(152px, 0.82fr) minmax(180px, 1fr);
  align-items: center;
  gap: 8px;
  padding: 22px 18px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  background:
    radial-gradient(
      circle at 86% 26%,
      rgba(255, 255, 255, 0.85),
      transparent 14rem
    ),
    rgba(255, 255, 255, 0.38);
}

.featured-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(88, 76, 64, 0.04);
}

.service-copy {
  position: relative;
  z-index: 2;
  min-height: 170px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-content: start;
  gap: 0 16px;
}

.icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(118, 96, 79, 0.12);
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 20px;
  line-height: 1;
}

.service-number {
  align-self: center;
  color: #171512;
  font-size: 16px;
  font-weight: 500;
}

.service-card h3,
.service-card p,
.service-card a {
  grid-column: 1 / -1;
}

.service-card h3 {
  margin: 6px 0 9px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
}

.service-card p {
  max-width: 178px;
  margin-bottom: 20px;
  color: #3f3933;
  font-size: 14px;
  line-height: 1.45;
}

.service-card a {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
}

.service-card a span,
.service-cta a span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(36, 31, 27, 0.4);
  border-radius: 50%;
}

.featured-service-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 172px;
  object-fit: contain;
  justify-self: end;
  filter: drop-shadow(0 18px 22px rgba(48, 40, 33, 0.14));
  transition: transform 0.45s ease;
}

.featured-service-card:hover img {
  transform: scale(1.04);
}

.service-cta {
  width: min(430px, 100%);
  min-height: 54px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 18px;
  margin: 14px auto 0;
  padding: 6px 12px 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 12px 30px rgba(52, 44, 38, 0.1);
}

.service-cta .icon {
  width: 42px;
  height: 42px;
  margin: 0;
  font-size: 18px;
}

.service-cta b,
.service-cta a {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-cta a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.service-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 10, 66, 0.52);
  backdrop-filter: blur(10px);
}

.service-modal__card {
  position: relative;
  width: min(850px, 100%);
  max-height: min(720px, calc(100vh - 44px));
  overflow: auto;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(255, 255, 255, 0.86),
      transparent 17rem
    ),
    linear-gradient(
      135deg,
      rgba(250, 247, 241, 0.96),
      rgba(228, 220, 211, 0.94)
    );
  box-shadow: 0 28px 90px rgba(18, 15, 13, 0.32);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.service-modal.is-open .service-modal__card {
  transform: translateY(0) scale(1);
}

.service-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(36, 31, 27, 0.12);
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.service-modal__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.service-modal__body {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 28px;
  align-items: center;
}

.service-modal__image {
  width: 100%;
  min-height: 280px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.28);
  filter: drop-shadow(0 20px 26px rgba(49, 40, 33, 0.14));
}

.service-modal__number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--accent);
  background: rgba(104, 54, 157, 0.2);
  font-weight: 700;
}

.service-modal__content h3 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  line-height: 1;
}

.service-modal__text {
  margin-bottom: 18px;
  color: #37312c;
  font-size: 16px;
  line-height: 1.7;
}

.service-modal__list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.service-modal__list li {
  position: relative;
  padding: 12px 14px 12px 38px;
  border: 1px solid rgba(36, 31, 27, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.36);
  color: #342e29;
  font-size: 13px;
}

.service-modal__list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.service-modal__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

body.modal-open {
  overflow: hidden;
}

.work-band,
.insights,
.gallery {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 24px;
  padding-top: 22px;
}

.work-title {
  padding: 24px 0 0;
}

.work-title .text-action {
  display: inline-block;
  margin-top: 70px;
}

.project-row,
.blog-row,
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.project-card,
.blog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.45);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.project-card:hover,
.blog-card:hover {
  box-shadow: 0 18px 42px rgba(42, 36, 31, 0.12);
}

.project-card img {
  width: 100%;
  height: 154px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.project-card:hover img,
.blog-card:hover img,
.gallery-strip img:hover,
.map-card:hover > img {
  transform: scale(1.04);
}

.project-card > span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.62);
  font-size: 10px;
}

.project-card div {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 5px;
  padding: 13px 12px;
}

.project-card h3 {
  margin: 0 0 2px;
  font-size: 13px;
}

.project-card p {
  grid-column: 1;
  margin: 0;
}

.project-card a,
.blog-card a {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.work-process {
  margin: 0 0 16px;
}

.work-process-hero {
  min-height: 405px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 36px;
  padding: 66px 76px 42px;
}

.work-process-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(46px, 5vw, 66px);
}

.work-process-copy > p:not(.eyebrow) {
  max-width: 365px;
  color: #1f1b18;
  font-size: 16px;
  line-height: 1.65;
}

.work-process-copy > p:not(.eyebrow)::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  margin-bottom: 16px;
  background: rgba(62, 53, 45, 0.42);
}

.work-process-hero img {
  width: 100%;
  height: 330px;
  object-fit: contain;
  justify-self: end;
  filter: drop-shadow(0 22px 35px rgba(45, 38, 32, 0.15));
}

.work-process-panel {
  padding: 30px 34px 34px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.process-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 0 0 34px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.process-label span {
  width: 23px;
  height: 1px;
  background: rgba(76, 65, 55, 0.32);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.process-step {
  position: relative;
  min-height: 244px;
  padding: 42px 22px 24px;
  text-align: center;
  border: 1px solid rgba(46, 39, 33, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 30px rgba(42, 36, 31, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.process-step:hover,
.work-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(42, 36, 31, 0.12);
}

.process-step b {
  position: absolute;
  top: -16px;
  left: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-mid);
  font-size: 11px;
}

.process-step:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: -17px;
  z-index: 2;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-mid);
  box-shadow: 0 6px 14px rgba(42, 36, 31, 0.1);
}

.process-icon,
.work-cta-points span,
.experience-stats span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 25px;
}

.process-step h3 {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 700;
}

.process-step p {
  margin: 0;
  color: #312c27;
  font-size: 12px;
  line-height: 1.6;
}

.experience-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 54px;
  margin: 38px 6px 36px;
  padding: 42px 48px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 45px rgba(42, 36, 31, 0.08);
}

.experience-copy {
  padding-right: 42px;
  border-right: 1px solid rgba(61, 53, 46, 0.16);
}

.experience-copy h3,
.work-cta-content h3 {
  margin-bottom: 26px;
  font-size: clamp(34px, 3.5vw, 45px);
  line-height: 1.04;
}

.experience-copy > p:not(.eyebrow) {
  max-width: 350px;
  color: #302a25;
  font-size: 14px;
  line-height: 1.7;
}

.experience-copy > p:not(.eyebrow)::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin-top: 18px;
  background: var(--accent);
}

.experience-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.experience-stats div {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-content: center;
  gap: 0 22px;
  min-height: 118px;
  padding: 16px 28px;
}

.experience-stats div:nth-child(1),
.experience-stats div:nth-child(3) {
  border-right: 1px solid rgba(61, 53, 46, 0.12);
}

.experience-stats div:nth-child(1),
.experience-stats div:nth-child(2) {
  border-bottom: 1px solid rgba(61, 53, 46, 0.12);
}

.experience-stats span {
  grid-row: span 3;
  width: 54px;
  height: 54px;
  margin: 0;
  font-size: 22px;
}

.experience-stats strong {
  font-size: 30px;
  line-height: 1;
}

.experience-stats b {
  font-size: 12px;
}

.experience-stats small,
.work-cta-points small {
  color: var(--muted);
  font-size: 12px;
}

.work-cta-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 38px;
  margin: 0 6px;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 22% 28%, rgba(67, 18, 122, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 45px rgba(67, 18, 122, 0.1);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.work-cta-card > img {
  width: 100%;
  height: 305px;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(135deg, rgba(67, 18, 122, 0.18), rgba(255, 255, 255, 0.55));
  filter: saturate(0.96) contrast(1.04);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.work-cta-card:hover > img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.08);
}

.work-cta-content {
  padding: 38px 42px 28px 0;
}

.work-cta-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.work-cta-points div {
  padding-right: 20px;
  border-right: 1px solid rgba(61, 53, 46, 0.12);
}

.work-cta-points div:last-child {
  border-right: 0;
}

.work-cta-points span {
  width: 48px;
  height: 48px;
  margin: 0 0 18px;
  font-size: 20px;
}

.work-cta-points b {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

.portfolio-section {
  margin: 0 28px 16px;
  padding: 38px 32px 22px;
}

.portfolio-head {
  display: grid;
  grid-template-columns: minmax(320px, 430px) 1fr;
  gap: 46px;
  align-items: end;
  margin-bottom: 28px;
}

.portfolio-head h2 {
  margin-bottom: 20px;
  font-size: clamp(40px, 4.6vw, 56px);
}

.portfolio-head p:not(.eyebrow) {
  max-width: 360px;
  color: #26211d;
  font-size: 15px;
  line-height: 1.7;
}

.portfolio-side {
  display: grid;
  gap: 22px;
  align-self: stretch;
  align-content: end;
}

.portfolio-proof {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 18px;
  justify-self: end;
  width: min(100%, 720px);
  min-height: 132px;
  overflow: hidden;
  padding: 22px 24px;
  border: 1px solid rgba(67, 18, 122, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 18%, rgba(67, 18, 122, 0.18), transparent 13rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(238, 228, 247, 0.72));
  box-shadow: 0 24px 58px rgba(67, 18, 122, 0.1);
}

.portfolio-proof::after {
  content: "";
  position: absolute;
  inset: auto -48px -74px auto;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(67, 18, 122, 0.16);
  border-radius: 50%;
  background: rgba(67, 18, 122, 0.08);
}

.portfolio-proof > span {
  grid-column: 1 / -1;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.portfolio-proof strong {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.9;
}

.portfolio-proof p {
  position: relative;
  z-index: 1;
  max-width: 410px;
  margin: 0;
  color: #2d2538;
  font-size: 14px;
  line-height: 1.65;
}

.portfolio-proof div {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-proof small {
  padding: 7px 10px;
  border: 1px solid rgba(67, 18, 122, 0.13);
  border-radius: 999px;
  color: #4d3c5f;
  background: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 700;
}

.portfolio-filters {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.portfolio-filters button {
  min-width: 86px;
  height: 42px;
  padding: 0 23px;
  border: 1px solid rgba(61, 53, 46, 0.17);
  border-radius: 999px;
  color: #171411;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.portfolio-filters button:hover,
.portfolio-filters .is-active {
  background: var(--accent-mid);
}

.portfolio-filters button:hover {
  transform: translateY(-2px);
}

.portfolio-featured {
  display: grid;
  grid-template-columns: 1.9fr 0.95fr;
  overflow: hidden;
  border: 1px solid rgba(61, 53, 46, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.26);
  box-shadow: 0 18px 45px rgba(42, 36, 31, 0.08);
}

.portfolio-featured img {
  width: 100%;
  height: 326px;
  object-fit: cover;
}

.portfolio-featured-copy {
  padding: 38px 38px 34px;
}

.portfolio-tag,
.portfolio-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 18px;
  border-radius: 999px;
  color: #2f2924;
  background: var(--accent-mid);
  font-size: 12px;
}

.portfolio-featured h3 {
  margin: 26px 0 20px;
  font-size: clamp(31px, 3vw, 42px);
  line-height: 1.08;
}

.portfolio-featured p {
  max-width: 300px;
  margin-bottom: 18px;
  color: #2e2925;
  font-size: 15px;
  line-height: 1.65;
}

.portfolio-featured p::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin-top: 18px;
  background: var(--accent);
}

.portfolio-featured b {
  display: block;
  margin-bottom: 28px;
  font-size: 14px;
}

.portfolio-featured a,
.portfolio-card a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.portfolio-featured a span,
.portfolio-card a span {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(36, 31, 27, 0.48);
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(61, 53, 46, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 16px 36px rgba(42, 36, 31, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(42, 36, 31, 0.13);
}

.portfolio-card.is-hidden,
.portfolio-featured.is-hidden {
  display: none;
}

.portfolio-card img {
  width: 100%;
  height: 186px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.portfolio-card:hover img {
  transform: scale(1.04);
}

.portfolio-card > span {
  position: absolute;
  top: 13px;
  left: 13px;
}

.portfolio-card div {
  padding: 16px 18px 18px;
}

.portfolio-card h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.portfolio-card p {
  margin-bottom: 15px;
  color: #403a35;
  font-size: 13px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(430px, 46%) minmax(0, 1fr);
  gap: clamp(42px, 4.8vw, 72px);
  margin: 0 28px 16px;
  padding: 34px 0 22px;
}

.about-visual-card {
  position: relative;
  aspect-ratio: 684 / 665;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 65px rgba(45, 38, 32, 0.12);
}

.about-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual-caption {
  position: absolute;
  left: 22px;
  bottom: 36px;
  width: min(340px, calc(100% - 44px));
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 10px;
  color: #fff;
  background: rgba(15, 14, 12, 0.74);
  backdrop-filter: blur(12px);
}

.about-visual-caption span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 24px;
}

.about-visual-caption p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.about-content {
  padding: 4px 0 0;
}

.about-content h2 {
  margin-bottom: 26px;
  font-size: clamp(38px, 5vw, 72px);
}

.about-content > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 34px;
  color: #1e1b18;
  font-size: 18px;
  line-height: 1.65;
}

.about-content > p:not(.eyebrow)::after {
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  margin-top: 24px;
  background: rgba(71, 61, 52, 0.42);
}

.about-content h3 {
  margin-bottom: 24px;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.16;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-values article {
  min-height: 274px;
  min-width: 0;
  padding: 22px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 18px 45px rgba(42, 36, 31, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-values article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(42, 36, 31, 0.13);
}

.about-values span,
.about-stats span {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 32px;
}

.about-values h4 {
  margin: 0 0 12px;
  font-size: 20px;
}

.about-values p {
  margin-bottom: 24px;
  color: #342f2a;
  font-size: 14px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.about-values p::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 18px;
  background: var(--accent);
}

.about-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0 0;
  padding: 34px 36px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 18px 45px rgba(42, 36, 31, 0.08);
}

.about-stats div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-content: center;
  gap: 0 18px;
  min-height: 88px;
  min-width: 0;
  padding: 0 28px;
  border-right: 1px solid rgba(61, 53, 46, 0.14);
}

.about-stats div:last-child {
  border-right: 0;
}

.about-stats span {
  grid-row: span 3;
  width: 64px;
  height: 64px;
  margin: 0;
  font-size: 28px;
}

.about-stats strong {
  font-size: 34px;
  line-height: 1;
}

.about-stats b {
  font-size: 14px;
  overflow-wrap: anywhere;
}

.about-stats small {
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.blog-row {
  align-items: stretch;
}

.blog-card img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card {
  display: grid;
  grid-template-rows: 80px auto auto 1fr;
  padding-bottom: 12px;
}

.blog-card time,
.blog-card h3,
.blog-card p {
  padding: 0 14px;
}

.blog-card time {
  margin-top: 14px;
  color: #8b837a;
  font-size: 10px;
}

.blog-card h3 {
  margin: 7px 0 7px;
  font-size: 14px;
  line-height: 1.45;
}

.blog-card p {
  margin-bottom: 10px;
}

.blog-card a {
  position: absolute;
  right: 14px;
  bottom: 14px;
}

.gallery {
  grid-template-columns: minmax(245px, 0.36fr) minmax(0, 1fr);
  position: relative;
  overflow: visible;
  gap: 22px;
  min-height: 560px;
  padding: 34px 38px 36px;
  background:
    radial-gradient(circle at 82% 16%, rgba(67, 18, 122, 0.12), transparent 24rem),
    linear-gradient(135deg, rgba(255, 253, 255, 0.82), rgba(235, 226, 242, 0.72));
}

.gallery::before {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border-radius: 18px;
  background:
    radial-gradient(circle at 76% 12%, rgba(67, 18, 122, 0.12), transparent 18rem),
    radial-gradient(circle at 42% 88%, rgba(255, 255, 255, 0.56), transparent 15rem);
  opacity: 0.9;
}

.gallery-brand,
.gallery-showcase {
  position: relative;
  z-index: 1;
}

.gallery-brand {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 54px rgba(50, 25, 82, 0.1);
  backdrop-filter: blur(16px);
}

.gallery-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
  margin-bottom: 28px;
  padding: 9px 14px 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 34px rgba(50, 25, 82, 0.1);
}

.gallery-brand h2 {
  max-width: 100%;
  overflow-wrap: anywhere;
  line-height: 1.04;
}

.gallery-logo-lockup img {
  width: 42px;
  height: 42px;
  border-radius: 9px;
}

.gallery-logo-lockup span {
  display: grid;
  line-height: 1;
}

.gallery-logo-lockup strong {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 1.4px;
}

.gallery-logo-lockup small {
  color: #777176;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 3.2px;
}

.gallery-brand > p:not(.eyebrow) {
  max-width: 100%;
  margin: 22px 0 24px;
  color: #342c3f;
  line-height: 1.7;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: auto 0 18px;
}

.gallery-filter button {
  min-height: 36px;
  padding: 0 15px;
  border: 1px solid rgba(67, 18, 122, 0.18);
  border-radius: 999px;
  color: #211a2a;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  font-size: 12px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-filter button:hover,
.gallery-filter button.is-active {
  transform: translateY(-2px);
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(67, 18, 122, 0.22);
}

.gallery-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(168px, 0.35fr);
  gap: 14px;
  min-width: 0;
}

.gallery-feature {
  position: relative;
  min-width: 0;
  min-height: 500px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 28px 70px rgba(50, 25, 82, 0.16);
  cursor: pointer;
}

.gallery-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(19, 11, 28, 0.68));
  pointer-events: none;
}

.gallery-feature img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: contain;
  background: rgba(25, 18, 32, 0.08);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.gallery-feature:hover img,
.gallery-feature:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.04);
}

.gallery-feature__badge,
.gallery-feature__caption {
  position: absolute;
  z-index: 2;
}

.gallery-feature__badge {
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #fff;
  background: rgba(20, 14, 26, 0.38);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-feature__caption {
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  color: #fff;
}

.gallery-feature__caption b {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  text-align: left;
}

.gallery-feature__caption small {
  font-size: 12px;
  opacity: 0.78;
}

.gallery-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(74px, 1fr);
  gap: 14px;
  align-items: stretch;
}

.gallery-tile {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 34px rgba(42, 36, 31, 0.1);
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.gallery-tile.is-large {
  grid-row: auto;
}

.gallery-tile.is-active {
  border-color: rgba(67, 18, 122, 0.46);
  box-shadow: 0 16px 34px rgba(67, 18, 122, 0.18);
}

.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 28%, rgba(12, 9, 8, 0.68)),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.22), transparent 16rem);
  opacity: 0.84;
  transition: opacity 0.32s ease;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: -45% auto auto -55%;
  z-index: 2;
  width: 48%;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: rotate(20deg) translateX(-120%);
  transition: transform 0.6s ease;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
  transition: transform 0.52s ease, filter 0.52s ease;
}

.gallery-tile span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(20, 14, 12, 0.42);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 700;
}

.gallery-tile:hover,
.gallery-tile:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 54px rgba(42, 36, 31, 0.2), 0 0 0 1px rgba(67, 18, 122, 0.12);
}

.gallery-tile:hover::before,
.gallery-tile:focus-visible::before {
  opacity: 0.68;
}

.gallery-tile:hover::after,
.gallery-tile:focus-visible::after {
  transform: rotate(20deg) translateX(360%);
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  transform: scale(1.08);
  filter: saturate(0.95) contrast(1.08);
}

.gallery-tile:focus-visible {
  outline: 2px solid rgba(67, 18, 122, 0.42);
  outline-offset: 3px;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 10, 66, 0.56);
  backdrop-filter: blur(10px);
}

.gallery-modal__card {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(820px, calc(100vh - 44px));
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(255, 255, 255, 0.88),
      transparent 20rem
    ),
    linear-gradient(
      135deg,
      rgba(250, 247, 241, 0.96),
      rgba(228, 220, 211, 0.94)
    );
  box-shadow: 0 28px 90px rgba(18, 15, 13, 0.32);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.gallery-modal.is-open .gallery-modal__card {
  transform: translateY(0) scale(1);
}

.gallery-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(67, 18, 122, 0.28);
  transition: transform 0.22s ease, background 0.22s ease;
}

.gallery-modal__close:hover,
.gallery-modal__close:focus-visible {
  transform: rotate(90deg) scale(1.05);
  background: var(--accent-dark);
}

.gallery-modal__card h3 {
  margin: 0 0 22px;
  font-size: clamp(30px, 4vw, 46px);
}

.gallery-viewer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin-bottom: 18px;
}

.gallery-viewer > img {
  width: 100%;
  height: min(430px, 48vh);
  object-fit: contain;
  background:
    radial-gradient(circle at 72% 20%, rgba(67, 18, 122, 0.12), transparent 20rem),
    rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 16px;
  box-shadow: 0 22px 56px rgba(42, 36, 31, 0.18);
}

.gallery-viewer__caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 12px;
  color: #fff;
  background: rgba(14, 12, 11, 0.46);
  backdrop-filter: blur(14px);
}

.gallery-viewer__caption span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
}

.gallery-viewer__caption strong {
  font-size: 17px;
}

.gallery-modal__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.gallery-modal__grid a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(61, 53, 46, 0.12);
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 12px 28px rgba(42, 36, 31, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-modal__grid img {
  width: 100%;
  height: 145px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.44);
  transition: transform 0.45s ease;
}

.gallery-modal__grid a:hover img {
  transform: scale(1.05);
}

.gallery-modal__grid a:hover,
.gallery-modal__grid a:focus-visible,
.gallery-modal__grid a.is-active {
  transform: translateY(-3px);
  border-color: rgba(67, 18, 122, 0.42);
  box-shadow: 0 16px 34px rgba(67, 18, 122, 0.18);
}

.gallery-modal__grid a.is-active::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 9px;
  box-shadow: 0 0 0 999px rgba(67, 18, 122, 0.16);
}

.contact-section {
  display: grid;
  grid-template-columns: 250px 1fr 1fr;
  gap: 24px;
  padding: 34px 38px 36px;
}

.contact-intro h2 {
  margin-bottom: 32px;
}

.contact-line {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 3px 13px;
  margin-bottom: 24px;
}

.contact-line span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 8px 20px rgba(65, 55, 46, 0.08);
}

.contact-line b {
  font-size: 13px;
}

.enquiry-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.36);
}

.enquiry-card h3 {
  font-size: 18px;
  font-weight: 500;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.38);
  outline: 0;
}

textarea {
  min-height: 112px;
  margin-top: 14px;
  padding-top: 16px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(140, 106, 85, 0.6);
  box-shadow: 0 0 0 3px rgba(140, 106, 85, 0.1);
}

.submit-btn {
  width: 100%;
  margin-top: 14px;
  border-radius: 7px;
}

.connect {
  margin: 14px 0;
  text-align: center;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-light {
  flex: 1;
  background: rgba(255, 255, 255, 0.35);
}

.form-status {
  min-height: 18px;
  margin: 12px 0 0;
  color: var(--accent);
  font-size: 12px;
  text-align: center;
}

.map-card {
  position: relative;
  display: block;
  min-height: 250px;
  overflow: hidden;
  border-radius: 12px;
  background: #ede8e1;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(67, 18, 122, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.map-card > img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.map-card:hover,
.map-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(67, 18, 122, 0.16);
}

.map-card:focus-visible {
  outline: 3px solid rgba(67, 18, 122, 0.28);
  outline-offset: 4px;
}

.map-popup {
  position: absolute;
  right: 24px;
  top: 58px;
  z-index: 2;
  width: min(210px, calc(100% - 48px));
  padding: 18px 18px 17px;
  border: 1px solid rgba(67, 18, 122, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 48px rgba(25, 22, 19, 0.16);
  backdrop-filter: blur(12px);
}

.map-popup b,
.map-popup small,
.map-popup strong {
  display: block;
}

.map-popup b {
  color: #171411;
  font-size: 16px;
  line-height: 1.15;
}

.map-popup small {
  margin: 7px 0 16px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.map-popup strong {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.map-popup i {
  display: inline-block;
  margin-left: 5px;
  font-style: normal;
  transition: transform 0.22s ease;
}

.map-card:hover .map-popup i,
.map-card:focus-visible .map-popup i {
  transform: translate(3px, -3px);
}

.map-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  text-align: center;
}

.map-features a {
  display: block;
  min-width: 0;
  padding: 14px 8px 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.map-features a:hover,
.map-features a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(67, 18, 122, 0.14);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 16px 34px rgba(67, 18, 122, 0.1);
}

.map-features a:focus-visible {
  outline: 2px solid rgba(67, 18, 122, 0.28);
  outline-offset: 3px;
}

.map-features span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.52);
}

.map-features b {
  display: block;
  font-size: 12px;
  line-height: 1.25;
}

.site-footer {
  margin: 0 28px;
  padding: 38px 64px 24px;
  color: #fff;
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(255, 255, 255, 0.08),
      transparent 25rem
    ),
    linear-gradient(135deg, #2e0d57, #160625);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.7fr 0.85fr 1.2fr 1.25fr;
  gap: 42px;
}

.footer-logo .brand-mark {
  background: transparent;
  border: 0;
  color: #fff;
}

.footer-logo strong {
  color: #fff;
}

.site-footer p,
.site-footer a,
.site-footer small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.site-footer h3 {
  margin: 8px 0 20px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 11px;
}

.footer-brand p {
  max-width: 270px;
  margin: 22px 0;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.socials a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(135deg, var(--accent), #7d43b7);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.socials svg {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.28s ease, color 0.28s ease;
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(67, 18, 122, 0.34);
  box-shadow: 0 14px 30px rgba(67, 18, 122, 0.38);
  color: #fff;
}

.socials a:hover::before,
.socials a:focus-visible::before {
  opacity: 1;
}

.socials a:hover svg,
.socials a:focus-visible svg {
  transform: scale(1.08);
}

.socials a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.74);
  outline-offset: 3px;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 36px;
  margin: 20px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
}

.newsletter input {
  min-height: 46px;
  color: #fff;
  border: 0;
  background: transparent;
}

.newsletter button {
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.newsletter-status {
  min-height: 16px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 34px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 190px 1fr 125px;
  }

  .nav-links {
    gap: 22px;
  }

  .trusted-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .trusted-logos,
  .showreel {
    grid-column: span 3;
    margin: 14px 0 0;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-section {
    grid-template-columns: 1fr 1.45fr;
  }

  .map-wrap {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 28px 0 10px;
  }

  .about-visual-card {
    width: min(684px, 100%);
  }

  .about-content {
    padding: 0;
  }

  .about-values {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 18px;
  }

  .about-values article {
    min-height: 245px;
    padding: 24px;
  }
}

@media (max-width: 900px) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  .animated-heading .heading-word,
  .heading-em-letter {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    transition: none;
  }

  .page-shell {
    width: min(100% - 24px, 720px);
    margin-top: 12px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 10px 12px 10px 16px;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand small {
    letter-spacing: 4px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    max-height: 0;
    overflow: hidden;
    display: grid;
    gap: 0;
    padding: 0 4px;
    opacity: 0;
    border-top: 1px solid transparent;
    transition: max-height 0.3s ease, opacity 0.24s ease, padding 0.3s ease, border-color 0.3s ease;
  }

  .nav-links a {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(67, 18, 122, 0.12);
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
  }

  .menu-toggle {
    display: grid;
  }

  .site-header.menu-open .nav-links {
    max-height: 360px;
    padding: 12px 4px 4px;
    opacity: 1;
    border-top-color: rgba(67, 18, 122, 0.12);
  }

  .section-grid {
    grid-template-columns: 1fr;
    padding: 52px 24px 8px;
  }

  .side-index,
  .section-index {
    display: none;
  }

  .hero-media {
    min-height: 230px;
    justify-content: center;
  }

  .hero-copy,
  .work-process-copy,
  .about-content,
  .portfolio-head,
  .contact-intro {
    min-width: 0;
  }

  .trusted-strip,
  .panel,
  .work-band,
  .insights,
  .gallery,
  .contact-section,
  .about-section,
  .site-footer {
    margin-left: 0;
    margin-right: 0;
  }

  .section-head,
  .work-band,
  .insights,
  .gallery,
  .contact-section,
  .about-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 0;
  }

  .about-visual-card {
    min-height: 0;
  }

  .about-content {
    padding: 0;
  }

  .about-values {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-head {
    gap: 12px;
  }

  .section-head > p,
  .text-action,
  .work-title .text-action {
    margin-top: 10px;
    justify-self: start;
  }

  .services .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .services .section-head > p {
    max-width: 560px;
  }

  .work-process-hero,
  .experience-card,
  .work-cta-card {
    grid-template-columns: 1fr;
  }

  .portfolio-head,
  .portfolio-featured {
    grid-template-columns: 1fr;
  }

  .portfolio-side {
    align-content: start;
  }

  .portfolio-proof {
    justify-self: start;
    width: 100%;
  }

  .portfolio-filters {
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .portfolio-featured img {
    height: 320px;
  }

  .work-process-hero {
    padding: 48px 30px 28px;
  }

  .work-process-hero img {
    height: 260px;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }

  .process-step:nth-child(3)::after {
    display: none;
  }

  .experience-copy {
    padding-right: 0;
    border-right: 0;
  }

  .work-cta-card > img {
    height: 300px;
  }

  .work-cta-content {
    padding: 0 32px 32px;
  }

  .service-grid-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-service-card {
    grid-template-columns: 1fr;
    min-height: 330px;
  }

  .featured-service-card img {
    height: 145px;
  }

  .service-modal__body {
    grid-template-columns: 1fr;
  }

  .service-modal__card,
  .gallery-modal__card {
    width: min(100%, 720px);
    max-height: calc(100dvh - 28px);
  }

  .service-modal__image {
    min-height: 220px;
    max-height: 300px;
  }

  .gallery-modal__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-row,
  .blog-row,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }

  .gallery-tile.is-large {
    grid-column: auto;
    grid-row: span 1;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    margin: 6px 0 0;
    padding: 22px;
  }

  .about-stats div {
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(61, 53, 46, 0.14);
  }

  .about-stats div:nth-child(odd) {
    border-right: 1px solid rgba(61, 53, 46, 0.14);
  }

  .about-stats div:nth-child(3),
  .about-stats div:nth-child(4) {
    border-bottom: 0;
  }

  .contact-section {
    padding: 28px 22px;
  }

  .enquiry-card,
  .map-wrap,
  .contact-intro {
    min-width: 0;
  }

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

@media (max-width: 640px) {
  .page-shell {
    width: calc(100% - 18px);
  }

  .site-header {
    top: 10px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 48px);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  h3 {
    overflow-wrap: anywhere;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    font-size: 9px;
    letter-spacing: 3.2px;
  }

  .talk-link {
    display: none;
  }

  .hero-title {
    min-height: 2.18em;
  }

  .trusted-strip {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 14px;
    margin-bottom: 14px;
  }

  .trusted-logos,
  .showreel {
    grid-column: auto;
  }

  .trusted-logos {
    flex-wrap: wrap;
    padding-left: 0;
    gap: 16px;
  }

  .service-grid,
  .project-row,
  .blog-row,
  .gallery-strip,
  .form-grid,
  .map-features,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 165px;
  }

  .gallery-tile.is-large {
    grid-column: auto;
  }

  .featured-service-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 20px;
  }

  .featured-service-card img {
    width: 100%;
    height: 190px;
    object-fit: contain;
    order: -1;
  }

  .service-copy {
    grid-template-columns: 46px 1fr;
  }

  .service-cta {
    grid-template-columns: 42px 1fr;
    border-radius: 18px;
  }

  .service-cta a {
    grid-column: 2;
  }

  .work-process-hero {
    padding: 38px 20px 22px;
  }

  .work-process-copy h2 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .work-process-hero img {
    height: 210px;
  }

  .work-process-panel {
    padding: 26px 16px;
    border-radius: 18px;
  }

  .process-steps,
  .experience-stats,
  .work-cta-points {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
  }

  .process-step::after {
    display: none;
  }

  .experience-card {
    margin: 28px 0;
    padding: 28px 20px;
    gap: 22px;
  }

  .experience-stats div {
    min-height: auto;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(61, 53, 46, 0.12);
    padding: 18px 0;
  }

  .experience-stats div:last-child {
    border-bottom: 0;
  }

  .work-cta-card {
    margin: 0;
    gap: 24px;
  }

  .work-cta-card > img {
    height: 240px;
  }

  .work-cta-content {
    padding: 0 20px 26px;
  }

  .work-cta-points div {
    border-right: 0;
    padding-right: 0;
  }

  .service-modal {
    padding: 12px;
  }

  .gallery-modal {
    padding: 12px;
  }

  .service-modal__card {
    padding: 22px 16px;
    border-radius: 14px;
  }

  .gallery-modal__card {
    padding: 24px 16px;
    border-radius: 14px;
  }

  .service-modal__body {
    gap: 18px;
  }

  .service-modal__image {
    min-height: 180px;
    max-height: 240px;
  }

  .service-modal__close {
    top: 12px;
    right: 12px;
  }

  .gallery-modal__close {
    top: 12px;
    right: 12px;
  }

  .gallery-modal__grid {
    grid-template-columns: 1fr;
  }

  .gallery-viewer {
    grid-template-columns: 1fr;
  }

  .gallery-viewer > img {
    height: min(280px, 38vh);
    border-radius: 13px;
  }

  .gallery-viewer__caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .gallery-modal__grid img {
    height: 220px;
  }

  .service-modal__actions {
    flex-direction: column;
  }

  .service-modal__actions .btn {
    width: 100%;
  }

  .panel,
  .work-band,
  .insights,
  .gallery {
    padding: 24px 18px;
  }

  .project-card img,
  .gallery-strip img,
  .portfolio-card img {
    height: 210px;
  }

  .portfolio-featured img {
    height: 240px;
  }

  .portfolio-featured-copy,
  .work-cta-content {
    padding: 24px 18px;
  }

  .portfolio-card,
  .project-card,
  .blog-card,
  .about-values article,
  .enquiry-card,
  .map-wrap {
    border-radius: 12px;
  }

  .contact-buttons,
  .button-row {
    align-items: stretch;
  }

  .contact-buttons .btn,
  .button-row .btn {
    width: 100%;
  }

  input,
  select,
  textarea {
    min-width: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom span:last-child {
    flex-wrap: wrap;
    gap: 16px;
  }

  .gallery-tile img {
    height: 100%;
  }

  .portfolio-section {
    margin: 0 0 16px;
    padding: 28px 18px;
  }

  .portfolio-head,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-featured-copy {
    padding: 26px 22px;
  }

  .portfolio-featured img {
    height: 250px;
  }

  .about-section {
    padding: 20px 0;
  }

  .about-visual-card {
    min-height: 0;
    border-radius: 14px;
  }

  .about-visual-caption {
    left: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    grid-template-columns: 52px 1fr;
    padding: 14px;
  }

  .about-visual-caption span {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .about-visual-caption p {
    font-size: 13px;
  }

  .about-content h2 {
    font-size: 40px;
  }

  .about-content > p:not(.eyebrow) {
    font-size: 15px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-values article {
    min-height: auto;
  }

  .about-stats {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .about-stats div,
  .about-stats div:nth-child(odd) {
    grid-template-columns: 68px 1fr;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(61, 53, 46, 0.14);
  }

  .about-stats div:last-child {
    border-bottom: 0;
  }

  .about-stats span {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .map-popup {
    right: 18px;
    left: 18px;
    width: auto;
  }

  .site-footer {
    padding: 32px 22px 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .gallery {
    min-height: 0;
    padding: 28px 22px;
  }

  .gallery-brand {
    padding: 0;
  }

  .gallery-brand > p:not(.eyebrow) {
    max-width: 100%;
    margin-bottom: 18px;
  }

  .gallery-showcase {
    grid-template-columns: 1fr;
  }

  .gallery-feature,
  .gallery-feature img {
    min-height: 360px;
  }

  .gallery-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 140px;
  }
}

@media (max-width: 640px) {
  .gallery {
    padding: 24px 16px;
  }

  .gallery-logo-lockup {
    width: 100%;
  }

  .gallery-filter {
    gap: 8px;
  }

  .gallery-filter button {
    flex: 1 1 calc(50% - 8px);
  }

  .gallery-feature,
  .gallery-feature img {
    min-height: 300px;
  }

  .gallery-feature__caption {
    align-items: start;
    flex-direction: column;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }
}
