:root {
  --ink: #0d0d0c;
  --muted: #6f675f;
  --paper: #f1eee9;
  --panel: rgba(255, 253, 248, 0.68);
  --panel-solid: #f8f5ef;
  --line: rgba(43, 37, 31, 0.12);
  --accent: #8c6a55;
  --taupe: #c9beb3;
  --dark: #171714;
  --shadow: 0 22px 60px rgba(40, 34, 28, 0.1);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(255, 255, 255, 0.9),
      transparent 24rem
    ),
    radial-gradient(
      circle at 85% 32%,
      rgba(162, 149, 135, 0.28),
      transparent 30rem
    ),
    linear-gradient(135deg, #e5dfd8 0%, #f6f2ec 42%, #ddd5cc 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: 13px;
  align-items: center;
}

.brand-logo {
  width: 185px;
  height: 62px;
  object-fit: contain;
}

.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: 28px;
  line-height: 1;
  letter-spacing: 2px;
}

.brand small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 5px;
  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;
}

.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: 10px;
  top: 150px;
  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%;
}

.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;
}

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: #050505;
  border-color: #050505;
}

.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: #6b4f3d;
  background: rgba(198, 187, 176, 0.55);
  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(20, 18, 16, 0.48);
  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: #11100e;
  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: #6b4f3d;
  background: rgba(198, 187, 176, 0.64);
  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: #6b4f3d;
  background: #d7ccc1;
  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: #725540;
  background: #d7ccc1;
  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: #6b4f3d;
  background: rgba(198, 187, 176, 0.55);
  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: rgba(255, 255, 255, 0.3);
  box-shadow: 0 18px 45px rgba(42, 36, 31, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.work-cta-card > img {
  width: 100%;
  height: 305px;
  object-fit: cover;
}

.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-filters {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom: 60px;
}

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

.portfolio-filters button:hover,
.portfolio-filters .is-active {
  background: #d5c8bd;
}

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

.portfolio-featured {
  display: grid;
  grid-template-columns: 1.9fr .95fr;
  overflow: hidden;
  border: 1px solid rgba(61, 53, 46, .18);
  border-radius: 12px;
  background: rgba(255,255,255,.26);
  box-shadow: 0 18px 45px rgba(42,36,31,.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: #dfd5cc;
  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: .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,.48);
  border-radius: 50%;
  transition: transform .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, .14);
  border-radius: 10px;
  background: rgba(255,255,255,.34);
  box-shadow: 0 16px 36px rgba(42,36,31,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

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

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

.portfolio-card img {
  width: 100%;
  height: 186px;
  object-fit: cover;
  transition: transform .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: #6b4f3d;
  background: rgba(198, 187, 176, 0.55);
  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: 265px 1fr;
}

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

.gallery-strip img {
  height: 144px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.45s ease;
}

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

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

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, .52);
  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,.68);
  border-radius: 18px;
  background:
    radial-gradient(circle at 85% 12%, rgba(255,255,255,.88), transparent 20rem),
    linear-gradient(135deg, rgba(250,247,241,.96), rgba(228,220,211,.94));
  box-shadow: 0 28px 90px rgba(18, 15, 13, .32);
  transform: translateY(18px) scale(.98);
  transition: transform .25s ease;
}

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

.gallery-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #11100e;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

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

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

.gallery-modal__grid a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(61, 53, 46, .12);
  background: rgba(255,255,255,.32);
  box-shadow: 0 12px 28px rgba(42,36,31,.08);
}

.gallery-modal__grid img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  transition: transform .45s ease;
}

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

.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;
  min-height: 250px;
  overflow: hidden;
  border-radius: 12px;
  background: #ede8e1;
}

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

.map-popup {
  position: absolute;
  right: 28px;
  top: 74px;
  width: 170px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 45px rgba(25, 22, 19, 0.12);
}

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

.map-popup small {
  margin: 4px 0 18px;
  color: var(--muted);
  font-size: 11px;
}

.map-popup a {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.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;
}

.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, #20201d, #121210);
}

.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 {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 11px;
}

.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;
}

.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) {
  .page-shell {
    width: min(100% - 24px, 720px);
    margin-top: 12px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 10px 12px 10px 16px;
  }

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

  .brand-logo {
    width: 156px;
    height: auto;
  }

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

  .nav-links {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 18px;
    padding: 0;
  }

  .nav-links a {
    padding: 0;
  }

  .nav-actions {
    justify-content: flex-start;
  }

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

  .side-index {
    display: none;
  }

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

  .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-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__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, 1fr);
  }

  .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;
  }

  .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: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .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;
  }

  .featured-service-card {
    grid-template-columns: minmax(140px, 0.8fr) minmax(140px, 1fr);
    min-height: 218px;
  }

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

  .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: 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__close {
    top: 12px;
    right: 12px;
  }

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

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

  .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-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;
  }
}
