* {
  box-sizing: border-box;
}

:root {
  --black: #000;
  --near-black: #161616;
  --charcoal: #363636;
  --dark-grey: #6a6a6a;
  --mid-grey: #7c7c7c;
  --light-grey: #e3e3e3;
  --soft-grey: #f7f7f7;
  --warm-grey: #eceadd;
  --white: #fff;
  --gold: #af8c68;
  --title: "Cormorant Garamond", serif;
  --body: "DM Sans", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

body,
button,
input,
textarea {
  font-family: var(--body);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 300ms ease, color 300ms ease, background-color 300ms ease, transform 700ms var(--ease);
}

a:hover {
  opacity: 0.8;
}

a:focus-visible,
summary:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  opacity: 1;
}

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

p + p {
  margin-top: 1.2em;
}

.web-content {
  width: min(100% - 36px, 1180px);
  margin: 0 auto;
}

.section-pad {
  padding-top: 100px;
  padding-bottom: 100px;
}

h1,
h2,
h3,
.section-label,
.footer-name {
  font-family: var(--title);
  font-weight: 400;
}

h1 {
  max-width: 560px;
  font-size: clamp(34px, 3.9vw, 48px);
  line-height: 1.05;
  overflow-wrap: break-word;
}

h1 span {
  display: block;
  color: var(--dark-grey);
}

h2 {
  max-width: 800px;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.1;
}

h3 {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.18;
}

.section-label {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 24px;
  line-height: 1.3;
}

.black-btn {
  display: inline-block;
  width: fit-content;
  border: 1px solid var(--black);
  border-radius: 10px;
  padding: 7px 22px;
  color: var(--black);
  background: transparent;
  font-size: 16px;
  line-height: 1.4;
  transition: color 300ms ease, background-color 300ms ease, transform 700ms var(--ease);
}

.black-btn:hover,
.black-btn:focus-visible {
  background: var(--black);
  color: var(--white);
  opacity: 1;
  transform: translateY(-2px);
}

.reveal {
  animation: fade-up 850ms var(--ease) both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.image-frame {
  margin: 0;
  overflow: hidden;
  background: var(--soft-grey);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.image-frame:hover img {
  transform: scale(1.025);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  min-height: 56px;
  border-bottom: 1px solid var(--light-grey);
  padding: 10px 50px;
  background: var(--white);
}

.header-logo {
  position: absolute;
  top: 10px;
  left: 50%;
  display: block;
  width: 120px;
  transform: translateX(-50%);
}

.header-logo img {
  width: 100%;
  aspect-ratio: 430 / 121;
  object-fit: contain;
}

.site-nav {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  color: var(--black);
  font-size: 14px;
  text-transform: none;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-group {
  position: relative;
}

.nav-group summary {
  cursor: pointer;
  list-style: none;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  display: grid;
  min-width: 190px;
  border: 1px solid var(--light-grey);
  padding: 12px 0;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  text-transform: none;
}

.dropdown-wide {
  min-width: 320px;
}

.dropdown a {
  padding: 8px 16px;
  color: var(--black);
  white-space: nowrap;
}

.nav-group:not([open]) .dropdown {
  display: none;
}

.menu-state,
.menu-toggle {
  display: none;
}

.hero-section {
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 88px;
}

.hero-grid {
  position: relative;
  display: block;
  min-height: min(760px, calc(100vh - 118px));
}

.hero-copy {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  display: grid;
  width: min(510px, calc(100% - 68px));
  gap: 22px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  padding: 30px 34px 32px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(6px);
}

.hero-copy > p {
  max-width: 620px;
  color: #333;
}

.hero-kicker {
  color: var(--black) !important;
  font-family: var(--title);
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.2;
}

.hero-image img {
  width: 100%;
  min-height: min(760px, calc(100vh - 118px));
  object-fit: cover;
  object-position: left center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--mid-grey);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--black);
}

.trust-statement {
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 38px 0;
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.55fr);
  gap: 70px;
  align-items: center;
}

.trust-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(300px, 0.72fr);
  gap: 42px;
  align-items: start;
}

.trust-copy h2 {
  font-size: clamp(31px, 3vw, 42px);
}

.trust-copy p {
  color: #333;
}

.proof-stack {
  border-top: 1px solid var(--black);
}

.proof-stack p,
.rule-list p {
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  color: var(--black);
}

.ecosystem-section {
  background: var(--near-black);
  color: var(--white);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  gap: 70px;
  align-items: center;
}

.image-wide img {
  aspect-ratio: 16 / 9;
  object-position: center center;
}

.ecosystem-copy p:not(.section-label),
.network-copy p {
  color: inherit;
  opacity: 0.78;
}

.network-section {
  border-bottom: 1px solid var(--black);
  background: var(--white);
}

.network-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(420px, 0.82fr);
  gap: 92px;
  align-items: start;
}

.network-copy {
  border-top: 1px solid var(--black);
  padding-top: 28px;
  color: #333;
}

.section-intro {
  position: relative;
  display: block;
  max-width: 760px;
}

.section-intro p:last-child {
  margin-top: 30px;
  border-top: 1px solid var(--black);
  padding-top: 28px;
  color: inherit;
  opacity: 0.76;
}

.strategic-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.strategic-section::before {
  content: "MJPM";
  position: absolute;
  top: 28px;
  right: max(24px, calc((100vw - 1180px) / 2));
  color: rgba(174, 122, 76, 0.08);
  font-family: var(--title);
  font-size: clamp(80px, 13vw, 190px);
  line-height: 1;
  pointer-events: none;
}

.partner-list {
  position: relative;
  margin-top: 46px;
  border-top: 1px solid var(--black);
}

.capability-item {
  position: relative;
  border-bottom: 1px solid var(--black);
}

.capability-item::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--gold);
  transform-origin: left center;
  transition: width 420ms var(--ease);
}

.capability-item[open]::before {
  width: 56px;
}

.capability-summary {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 38px;
  gap: 24px;
  align-items: center;
  min-height: 130px;
  padding: 34px 0;
  cursor: pointer;
  list-style: none;
}

.capability-summary::-webkit-details-marker {
  display: none;
}

.capability-number {
  color: var(--dark-grey);
  font-family: var(--title);
  font-size: 58px;
  line-height: 0.9;
}

.capability-title-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(300px, 0.78fr);
  gap: 48px;
  align-items: center;
}

.capability-title {
  max-width: 520px;
  color: var(--black);
  font-family: var(--title);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.08;
}

.capability-intro {
  color: var(--black);
  font-family: var(--title);
  font-size: 24px;
  line-height: 1.2;
}

.body-copy {
  color: #333;
}

.capability-toggle {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid var(--black);
  border-radius: 999px;
  transition: border-color 320ms var(--ease), transform 320ms var(--ease);
}

.capability-toggle::before,
.capability-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--black);
  transform: translate(-50%, -50%);
  transition: transform 320ms var(--ease), background 320ms var(--ease);
}

.capability-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.capability-item[open] .capability-toggle {
  border-color: var(--gold);
  transform: rotate(180deg);
}

.capability-item[open] .capability-toggle::before,
.capability-item[open] .capability-toggle::after {
  background: var(--gold);
}

.capability-item[open] .capability-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.capability-panel {
  display: grid;
  grid-template-columns: 86px minmax(0, 0.76fr) minmax(340px, 0.56fr);
  gap: 24px;
  overflow: hidden;
  max-height: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 680ms var(--ease), opacity 420ms ease, padding-bottom 680ms var(--ease), transform 680ms var(--ease);
}

.capability-item[open] .capability-panel {
  max-height: 760px;
  padding-bottom: 42px;
  opacity: 1;
  transform: translateY(0);
}

.capability-copy {
  grid-column: 2 / 3;
  max-width: 720px;
}

.capability-image {
  grid-column: 3 / 4;
  margin: 0;
}

.capability-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.grade-network {
  background: var(--warm-grey);
}

.grade-grid {
  display: grid;
  grid-template-columns: minmax(480px, 1fr) minmax(0, 0.76fr);
  gap: 82px;
  align-items: center;
}

.grade-grid img {
  width: 100%;
  aspect-ratio: 1.14 / 1;
  object-fit: cover;
  object-position: center center;
}

.grade-grid p {
  max-width: 720px;
}

.rule-list {
  margin-top: 32px;
  border-top: 1px solid var(--black);
}

.related-section {
  background: var(--white);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--black);
  margin-top: 42px;
}

.related-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 24px 0;
  font-family: var(--title);
  font-size: 30px;
  line-height: 1.15;
}

.related-grid a:nth-child(odd) {
  margin-right: 42px;
}

.related-grid a:nth-child(even) {
  margin-left: 42px;
}

.related-grid a::after {
  content: "→";
  font-family: var(--body);
  font-size: 18px;
  transition: transform 600ms var(--ease);
}

.related-grid a:hover {
  color: var(--gold);
  opacity: 1;
}

.related-grid a:hover::after {
  transform: translateX(6px);
}

.contact-cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--light-grey);
  background: var(--white);
}

.contact-cta::before {
  content: "";
  position: absolute;
  top: 72px;
  left: max(24px, calc((100vw - 1180px) / 2));
  width: 84px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.inner-contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.72fr);
  gap: 70px;
  align-items: center;
}

.inner-contact-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
}

.inner-contact-left,
.inner-contact-right {
  width: auto;
}

.inner-contact-right {
  padding-top: 24px;
  color: #333;
}

.inner-contact-right .black-btn {
  margin-top: 28px;
}

.contact-cta-image {
  margin: 0;
}

.contact-cta-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center center;
}

.service-page,
.service-index-page {
  background: var(--white);
}

.svc-hero {
  padding-top: 118px;
  padding-bottom: 74px;
}

.svc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.7fr);
  gap: 76px;
  align-items: end;
}

.svc-hero-copy {
  display: grid;
  gap: 22px;
  border-top: 1px solid var(--black);
  padding-top: 30px;
}

.svc-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(46px, 6vw, 78px);
}

.svc-hero-copy > p:not(.section-label) {
  max-width: 680px;
  color: #333;
  font-size: 18px;
}

.svc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
}

.svc-text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
}

.svc-text-link::after {
  content: "→";
  color: var(--gold);
  transition: transform 500ms var(--ease);
}

.svc-text-link:hover::after {
  transform: translateX(5px);
}

.svc-hero-image img {
  aspect-ratio: 0.88 / 1;
  object-position: center center;
}

.svc-editorial,
.svc-section-head,
.svc-process-grid,
.svc-proof-grid,
.svc-faq-grid,
.svc-index-hero-grid,
.svc-ecosystem-grid,
.svc-engage-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 76px;
  align-items: start;
}

.svc-editorial {
  border-top: 1px solid var(--black);
  padding-top: 42px;
}

.svc-editorial-copy {
  max-width: 760px;
  color: #333;
  font-size: 18px;
}

.svc-capabilities {
  background: var(--near-black);
  color: var(--white);
}

.svc-capabilities .section-label,
.svc-capabilities h2 {
  color: inherit;
}

.svc-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.22);
}

.svc-capability-card {
  min-height: 260px;
  padding: 34px;
  background: var(--near-black);
}

.svc-capability-card span,
.svc-process-list span {
  color: var(--gold);
  font-family: var(--title);
  font-size: 30px;
}

.svc-capability-card h3 {
  margin-top: 42px;
  font-size: 31px;
}

.svc-capability-card p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.svc-process {
  background: var(--warm-grey);
}

.svc-process-list {
  border-top: 1px solid var(--black);
}

.svc-process-list article {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
  padding: 26px 0;
}

.svc-process-list h3 {
  font-size: 30px;
}

.svc-process-list p,
.svc-proof-list,
.svc-faq-list p,
.svc-related-grid p,
.svc-service-cards article > p:nth-of-type(2),
.svc-engage-list {
  color: #333;
}

.svc-proof {
  background: var(--white);
}

.svc-proof-list {
  border-top: 1px solid var(--black);
}

.svc-proof-list p {
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 24px 0;
}

.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--light-grey);
}

.svc-related-grid a {
  display: grid;
  min-height: 250px;
  align-content: space-between;
  padding: 30px;
  background: var(--white);
}

.svc-related-grid span,
.svc-service-cards article > p:first-child {
  color: var(--gold);
  font-family: var(--title);
  font-size: 22px;
}

.svc-related-grid strong {
  margin-top: 22px;
  font-family: var(--title);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.1;
}

.svc-faq {
  background: var(--soft-grey);
}

.svc-faq-list {
  border-top: 1px solid var(--black);
}

.svc-faq-list details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  padding: 22px 0;
}

.svc-faq-list summary {
  cursor: pointer;
  font-family: var(--title);
  font-size: 28px;
  line-height: 1.16;
}

.svc-faq-list p {
  max-width: 820px;
  margin-top: 16px;
}

.svc-final-cta {
  background: var(--charcoal);
  color: var(--white);
}

.svc-cta-panel {
  display: grid;
  max-width: 860px;
  gap: 22px;
}

.svc-final-cta .black-btn {
  border-color: var(--white);
  color: var(--white);
}

.svc-final-cta .black-btn:hover,
.svc-final-cta .black-btn:focus-visible {
  background: var(--white);
  color: var(--black);
}

.svc-index-hero {
  padding-top: 128px;
  padding-bottom: 0;
}

.svc-index-hero-grid {
  align-items: end;
}

.svc-index-hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 6vw, 86px);
}

.svc-index-intro {
  display: grid;
  gap: 28px;
  border-top: 1px solid var(--black);
  padding-top: 30px;
  color: #333;
  font-size: 18px;
}

.svc-index-visual {
  margin-top: 70px;
}

.svc-index-visual img {
  aspect-ratio: 16 / 7;
  object-position: center center;
}

.svc-ecosystem {
  background: var(--near-black);
  color: var(--white);
}

.svc-lifecycle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.svc-lifecycle p {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 24px;
  background: var(--near-black);
  font-family: var(--title);
  font-size: 28px;
}

.svc-lifecycle span {
  color: var(--gold);
}

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

.svc-service-cards article {
  display: grid;
  min-height: 380px;
  align-content: start;
  border: 1px solid var(--light-grey);
  padding: 30px;
  transition: border-color 300ms ease, transform 700ms var(--ease);
}

.svc-service-cards article:hover {
  border-color: var(--black);
  transform: translateY(-4px);
}

.svc-service-cards h3 {
  margin-top: 16px;
}

.svc-service-cards article > p:nth-of-type(2) {
  margin-top: 20px;
}

.svc-service-cards div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.svc-service-cards span {
  border: 1px solid var(--light-grey);
  padding: 6px 10px;
  color: #333;
  font-size: 13px;
}

.svc-service-cards a {
  margin-top: 30px;
  color: var(--black);
  font-weight: 600;
}

.svc-engage {
  background: var(--warm-grey);
}

.svc-engage-list {
  border-top: 1px solid var(--black);
}

.svc-engage-list p {
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 22px 0;
}

.svc-index-hero-v2 {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 1px solid var(--light-grey);
  background: var(--white);
}

.svc-index-hero-v2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 44vw;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(175, 140, 104, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(175, 140, 104, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.45;
  pointer-events: none;
}

.svc-index-stage {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(390px, 34vw) minmax(0, 1fr);
  grid-template-areas:
    "title image"
    "rail rail";
  gap: 0;
  align-items: stretch;
  overflow: visible;
}

.svc-index-title {
  grid-area: title;
  display: grid;
  align-content: center;
  gap: 22px;
  min-height: clamp(500px, 58vh, 690px);
  padding: 104px clamp(28px, 5.4vw, 84px) 42px max(36px, calc((100vw - 1180px) / 2));
  border-top: 0;
  background: rgba(255, 255, 255, 0.82);
  z-index: 1;
  animation: svcFadeUp 900ms var(--ease) both;
}

.svc-index-title h1 {
  position: relative;
  z-index: 4;
  width: min(980px, calc(100vw - 72px));
  max-width: none;
  margin-top: 4px;
  margin-right: -52vw;
  padding: 18px clamp(28px, 5vw, 72px) 18px 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 60%, rgba(255, 255, 255, 0.38) 82%, rgba(255, 255, 255, 0) 100%);
  font-size: clamp(48px, 5vw, 80px);
  letter-spacing: 0;
}

.svc-index-title > p:not(.section-label) {
  max-width: 520px;
  color: #333;
  font-size: 16px;
}

.svc-index-portrait {
  grid-area: image;
  margin: 0;
  min-height: clamp(500px, 58vh, 690px);
  overflow: hidden;
  z-index: 0;
  animation: svcImageIn 1200ms var(--ease) 120ms both;
}

.svc-index-portrait img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.015);
  transition: transform 1200ms var(--ease);
}

.svc-index-hero-v2:hover .svc-index-portrait img {
  transform: scale(1.045);
}

.svc-project-moments {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, #fbfbf8 100%);
}

.svc-project-moments::before {
  content: "";
  position: absolute;
  top: 96px;
  right: max(18px, calc((100vw - 1180px) / 2));
  width: min(28vw, 360px);
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

.svc-project-head {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.54fr);
  gap: clamp(48px, 7vw, 118px);
  align-items: start;
}

.svc-project-head h2 {
  max-width: 880px;
  font-size: clamp(50px, 5vw, 78px);
  line-height: 1.04;
}

.svc-project-intro {
  display: grid;
  gap: 28px;
  align-content: start;
  max-width: 460px;
  border-top: 1px solid var(--black);
  padding-top: 30px;
}

.svc-project-intro p {
  color: #333;
  font-size: 17px;
  line-height: 1.65;
}

.svc-project-intro .black-btn {
  margin-top: 6px;
}

.svc-project-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 168px;
  gap: 12px;
  margin-top: 72px;
}

.svc-project-mosaic figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--soft-grey);
  min-height: 0;
}

.svc-project-mosaic figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0.08));
  opacity: 0;
  transition: opacity 700ms var(--ease);
  pointer-events: none;
}

.svc-project-mosaic figure:hover::after {
  opacity: 1;
}

.svc-project-mosaic .wide {
  grid-column: 1 / 8;
  grid-row: 1 / 4;
}

.svc-project-mosaic .tall {
  grid-column: 11 / 13;
  grid-row: 2 / 4;
}

.svc-project-mosaic figure:nth-child(2) {
  grid-column: 8 / 10;
  grid-row: 1 / 2;
}

.svc-project-mosaic figure:nth-child(3) {
  grid-column: 10 / 13;
  grid-row: 1 / 2;
}

.svc-project-mosaic figure:nth-child(4) {
  grid-column: 8 / 11;
  grid-row: 2 / 3;
}

.svc-project-mosaic figure:nth-child(6) {
  grid-column: 8 / 11;
  grid-row: 3 / 4;
}

.svc-project-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease), filter 900ms var(--ease);
}

.svc-project-mosaic figure:hover img {
  filter: saturate(0.96) contrast(1.04);
  transform: scale(1.045);
}

@keyframes svcFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes svcImageIn {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


.svc-index-lifecycle-rail {
  grid-area: rail;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  padding-right: max(36px, calc((100vw - 1180px) / 2));
  padding-left: max(36px, calc((100vw - 1180px) / 2));
  border-top: 0;
  border-bottom: 0;
  background: var(--warm-grey);
}

.svc-index-lifecycle-rail p {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 132px;
  margin: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.16);
  padding: 24px 18px;
  font-family: var(--title);
  font-size: 20px;
  line-height: 1.05;
  text-align: center;
}

.svc-index-lifecycle-rail p:last-child {
  border-right: 0;
}

.svc-index-lifecycle-rail span {
  position: relative;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--body);
  font-size: 25px;
  font-weight: 600;
}

.svc-index-lifecycle-rail span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -16px;
  width: 34px;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
}

.svc-ecosystem-v2 {
  background: var(--white);
  padding-bottom: 0;
}

.svc-index-editorial {
  display: grid;
  grid-template-columns: minmax(270px, 0.56fr) minmax(0, 0.7fr) minmax(360px, 0.86fr);
  gap: 58px;
  align-items: start;
}

.svc-index-editorial h2 {
  max-width: 410px;
}

.svc-index-editorial-copy {
  border-top: 1px solid var(--black);
  padding-top: 30px;
  color: #333;
  font-size: 16px;
}

.svc-index-image-strip {
  display: grid;
  grid-template-columns: 1fr;
  align-self: stretch;
  min-height: 300px;
}

.svc-index-image-strip img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.svc-directory-v2 {
  background: var(--soft-grey);
}

.svc-service-ledger {
  margin-top: 52px;
  border-top: 1px solid var(--black);
}

.svc-service-ledger > a {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(300px, 0.62fr) minmax(340px, 0.72fr);
  gap: 34px;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 34px 0;
}

.svc-service-ledger > a:hover {
  color: var(--black);
  opacity: 1;
}

.svc-service-ledger > a > span {
  color: var(--gold);
  font-family: var(--title);
  font-size: 24px;
}

.svc-service-ledger strong {
  font-family: var(--title);
  font-size: clamp(31px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.05;
}

.svc-service-ledger p {
  color: #333;
}

.svc-service-ledger div {
  grid-column: 3 / 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -8px;
}

.svc-service-ledger div span {
  border: 1px solid var(--light-grey);
  padding: 6px 10px;
  background: var(--white);
  color: #333;
  font-size: 13px;
}

.svc-engage-v2 {
  position: relative;
  background: var(--warm-grey);
}

.svc-index-proof-v2 {
  background: var(--near-black);
  color: var(--white);
  padding-top: 0;
  padding-bottom: 0;
}

.svc-index-proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.svc-index-proof-band article {
  min-height: 176px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  padding: 42px 36px 42px 0;
}

.svc-index-proof-band article:not(:first-child) {
  padding-left: 36px;
}

.svc-index-proof-band article:last-child {
  border-right: 0;
}

.svc-index-proof-band span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--title);
  font-size: 20px;
}

.svc-index-proof-band h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
}

.svc-index-proof-band p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-wrap {
  background: var(--charcoal);
  color: var(--white);
  padding-top: 40px;
  padding-bottom: 30px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-content {
  width: 50%;
  padding-right: 80px;
}

.footer-name {
  margin-bottom: 18px;
  font-size: 28px;
}

.footer-muted,
.footer-meta {
  color: var(--mid-grey);
}

.footer-sitemap {
  display: flex;
  width: 50%;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-sitemap-list {
  width: 50%;
  padding-right: 40px;
}

.footer-sitemap-list p {
  margin-bottom: 14px;
  color: var(--mid-grey);
}

.footer-sitemap-list a {
  display: block;
  margin-bottom: 8px;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 80px;
  color: var(--white);
  font-size: 14px;
}

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

@media (max-width: 1180px) {
  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-left,
  .nav-right {
    gap: 20px;
  }

  .hero-grid,
  .ecosystem-grid,
  .network-grid,
  .grade-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .capability-title-wrap {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .capability-panel {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .capability-copy,
  .capability-image {
    grid-column: 2 / 3;
  }

  .svc-capability-grid,
  .svc-service-cards,
  .svc-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .svc-index-lifecycle-rail {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .svc-index-editorial {
    grid-template-columns: minmax(250px, 0.55fr) minmax(0, 0.7fr);
  }

  .svc-index-image-strip {
    grid-column: 1 / -1;
  }

  .svc-project-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }

  .svc-project-mosaic figure,
  .svc-project-mosaic .wide,
  .svc-project-mosaic .tall,
  .svc-project-mosaic figure:nth-child(2),
  .svc-project-mosaic figure:nth-child(3),
  .svc-project-mosaic figure:nth-child(4),
  .svc-project-mosaic figure:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .svc-service-ledger > a {
    grid-template-columns: minmax(140px, 0.32fr) minmax(260px, 0.58fr) minmax(260px, 0.72fr);
  }
}

@media (max-width: 1000px) {
  h1 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.08;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 30px;
  }

  .section-pad {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .site-header {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .header-logo {
    position: relative;
    top: initial;
    left: auto;
    width: 180px;
    transform: none;
  }

  .menu-toggle {
    position: fixed;
    top: 22px;
    right: 20px;
    z-index: 120;
    display: block;
    width: 29px;
    height: 18px;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    left: 0;
    width: 29px;
    height: 2px;
    background: var(--black);
  }

  .menu-toggle span:first-child {
    top: 2px;
  }

  .menu-toggle span:last-child {
    bottom: 2px;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    overflow: auto;
    padding: 95px 30px 40px;
    background: #575757;
    color: var(--white);
    font-size: 24px;
    line-height: 1.5;
  }

  .menu-state:checked ~ .site-nav {
    display: flex;
  }

  .menu-state:checked ~ .menu-toggle span {
    background: var(--white);
  }

  .nav-left,
  .nav-right {
    display: grid;
    width: 100%;
    gap: 20px;
  }

  .dropdown {
    position: static;
    display: grid;
    min-width: 0;
    border: 0;
    padding: 10px 0 0 20px;
    background: transparent;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
  }

  .dropdown a {
    padding: 6px 0;
    white-space: normal;
  }

  .hero-section {
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .hero-grid,
  .trust-grid,
  .trust-copy,
  .ecosystem-grid,
  .network-grid,
  .grade-grid,
  .inner-contact-copy,
  .inner-contact-wrap,
  .svc-hero-grid,
  .svc-editorial,
  .svc-section-head,
  .svc-process-grid,
  .svc-proof-grid,
  .svc-faq-grid,
  .svc-index-hero-grid,
  .svc-ecosystem-grid,
  .svc-engage-grid,
  .footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-copy {
    position: static;
    width: auto;
    border: 0;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .hero-image img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .section-intro {
    max-width: 100%;
  }

  .capability-summary {
    grid-template-columns: 68px minmax(0, 1fr) 34px;
    min-height: 112px;
    padding: 28px 0;
  }

  .capability-number {
    font-size: 50px;
  }

  .capability-title {
    font-size: 31px;
  }

  .capability-panel {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .capability-copy,
  .capability-image {
    grid-column: 2 / 3;
  }

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

  .footer-content,
  .footer-sitemap,
  .inner-contact-left,
  .inner-contact-right {
    width: 100%;
    padding-right: 0;
  }

  .contact-cta-image img {
    aspect-ratio: 4 / 3;
  }

  .svc-hero {
    padding-top: 110px;
  }

  .svc-hero-image img,
  .svc-index-visual img {
    aspect-ratio: 4 / 3;
  }

  .svc-index-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "image"
      "rail";
    gap: 0;
  }

  .svc-index-title {
    min-height: 0;
    padding: 104px max(24px, calc((100vw - 680px) / 2)) 54px;
  }

  .svc-index-title h1 {
    width: auto;
    margin-right: 0;
    padding-right: 0;
    background: transparent;
  }

  .svc-index-portrait img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .svc-index-lifecycle-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 24px;
    padding-left: 24px;
  }

  .svc-index-lifecycle-rail p {
    min-height: 104px;
  }

  .svc-index-image-strip {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .svc-index-image-strip img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .svc-project-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }

  .svc-project-mosaic .wide,
  .svc-project-mosaic .tall,
  .svc-project-mosaic figure:nth-child(2),
  .svc-project-mosaic figure:nth-child(3),
  .svc-project-mosaic figure:nth-child(4),
  .svc-project-mosaic figure:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .svc-index-proof-band {
    grid-template-columns: 1fr 1fr;
  }

  .svc-index-proof-band article,
  .svc-index-proof-band article:not(:first-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    padding: 32px 24px;
  }

  .svc-index-proof-band article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .svc-index-editorial {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .svc-service-ledger > a {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 0;
  }

  .svc-service-ledger div {
    grid-column: auto;
    margin-top: 8px;
  }

  .svc-capability-grid,
  .svc-service-cards,
  .svc-related-grid,
  .svc-lifecycle {
    grid-template-columns: 1fr;
  }

  .footer-copyright {
    display: grid;
    gap: 18px;
    padding-top: 50px;
  }
}

@media (max-width: 700px) {
  .web-content {
    width: min(100% - 36px, 1180px);
  }

  .hero-copy {
    width: min(100%, 330px);
    max-width: calc(100vw - 72px);
    gap: 18px;
    overflow-wrap: anywhere;
  }

  .hero-copy > p {
    max-width: 100%;
  }

  .hero-kicker {
    max-width: 100%;
    font-size: 20px;
    white-space: normal;
  }

  h1,
  h1 span {
    max-width: 330px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: 36px;
  }

  .svc-hero-copy h1,
  .svc-index-hero h1 {
    font-size: 42px;
  }

  .svc-index-title h1 {
    max-width: 100%;
    font-size: 44px;
  }

  .svc-index-lifecycle-rail {
    grid-template-columns: 1fr;
  }

  .svc-project-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .svc-project-mosaic img {
    aspect-ratio: 16 / 10;
  }

  .svc-index-lifecycle-rail p {
    min-height: 74px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  }

  .svc-index-lifecycle-rail p:last-child {
    border-bottom: 0;
  }

  .svc-index-proof-band {
    grid-template-columns: 1fr;
  }

  .svc-index-proof-band article:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .svc-index-proof-band article:last-child {
    border-bottom: 0;
  }

  .capability-summary {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .capability-toggle {
    position: absolute;
    top: 30px;
    right: 0;
  }

  .capability-title-wrap,
  .capability-panel {
    grid-template-columns: 1fr;
  }

  .capability-title {
    padding-right: 48px;
    font-size: 29px;
  }

  .capability-copy,
  .capability-image {
    grid-column: auto;
  }

  .svc-process-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .svc-capability-card,
  .svc-related-grid a,
  .svc-service-cards article {
    min-height: auto;
    padding: 24px;
  }

  .svc-capability-card h3 {
    margin-top: 24px;
  }

  .svc-faq-list summary {
    font-size: 24px;
  }

  .grade-grid {
    gap: 28px;
  }

  .related-grid a {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 20px 0;
    font-size: 22px;
  }

  .footer-sitemap {
    display: grid;
    width: 100%;
    gap: 28px;
  }

  .footer-sitemap-list {
    width: 100%;
    padding-right: 0;
  }
}

/* Office interior design service page */
.office-design-page {
  --office-ink: #161515;
  --office-paper: #f5f1e9;
  --office-stone: #e5ddd1;
  --office-gold: #b3936c;
  --office-rule: rgba(22, 21, 21, 0.18);
  color: var(--office-ink);
  background: var(--office-paper);
}

.office-design-page .site-header {
  position: relative;
  z-index: 10;
}

.office-design-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(820px, 100svh);
  overflow: hidden;
  color: #fff;
  background: #1a1917;
}

.office-design-hero-media,
.office-design-hero-shade {
  position: absolute;
  inset: 0;
}

.office-design-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.office-design-hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.92) 0%, rgba(8, 8, 7, 0.74) 31%, rgba(8, 8, 7, 0.27) 58%, rgba(8, 8, 7, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42) 0%, transparent 45%);
}

.office-design-hero-inner,
.office-design-hero-proof {
  position: relative;
  z-index: 1;
  width: min(100% - 72px, 1360px);
  margin: 0 auto;
}

.office-design-hero-inner {
  padding: 104px 0 78px;
}

.office-design-crumbs {
  display: flex;
  gap: 9px;
  margin-bottom: 74px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.office-design-crumbs a { color: inherit; text-decoration: none; }
.office-design-crumbs span { color: var(--office-gold); }

.office-design-kicker,
.office-design-section-kicker {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.office-design-kicker { color: #dfc293; }
.office-design-section-kicker { color: #9d7955; }

.office-design-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(56px, 6.5vw, 100px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.office-design-hero-lede {
  max-width: 515px;
  margin: 28px 0 38px;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.office-design-hero-actions,
.office-design-close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.office-design-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  color: #fff;
  background: #1c1b19;
  border: 1px solid #1c1b19;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.office-design-button:hover { color: #1c1b19; background: #fff; }

.office-design-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 8px;
  color: inherit;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.office-design-arrow-link span { font-size: 21px; line-height: 0.6; }

.office-design-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.office-design-hero-proof p {
  min-height: 72px;
  margin: 0;
  padding: 21px 24px 19px 0;
  color: rgba(255, 255, 255, 0.86);
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.office-design-hero-proof p + p { padding-left: 24px; }
.office-design-hero-proof p:last-child { border-right: 0; }

.office-design-intro,
.office-design-projects,
.office-design-capabilities,
.office-design-assurance,
.office-design-process,
.office-design-faq,
.office-design-close { padding: clamp(80px, 10vw, 150px) 0; }

.office-design-shell { width: min(100% - 72px, 1360px); margin: 0 auto; }

.office-design-intro-grid {
  display: grid;
  grid-template-columns: 2fr 5fr 3fr;
  gap: 38px;
  align-items: start;
}

.office-design-intro h2,
.office-design-section-heading h2,
.office-design-assurance h2,
.office-design-close h2 {
  margin: 0;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(42px, 4.55vw, 70px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.office-design-intro-copy { padding-top: 12px; font-size: 17px; line-height: 1.65; }
.office-design-intro-copy p { margin: 0 0 20px; }

.office-design-projects { padding-top: 0; }

.office-design-section-heading {
  display: grid;
  grid-template-columns: 2fr 6fr 2fr;
  gap: 38px;
  margin-bottom: 54px;
}

.office-design-section-heading p:last-child {
  align-self: end;
  margin: 0;
  color: #5c5750;
  font-size: 15px;
  line-height: 1.5;
}

.office-design-section-head {
  display: grid;
  grid-template-columns: 2fr 6fr;
  gap: 38px;
  align-items: start;
  margin-bottom: 54px;
}

.office-design-project-note {
  grid-column: 9 / span 4;
  align-self: end;
  padding-top: 35px;
  border-top: 1px solid var(--office-rule);
}

.office-design-project-note > span {
  display: block;
  margin-bottom: 13px;
  color: #9d7955;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.office-design-project-note p { margin: 0 0 22px; color: #5c5750; font-size: 15px; line-height: 1.55; }

.office-design-project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.office-design-project-primary { grid-column: 1 / span 8; }
.office-design-project-secondary { grid-column: 9 / span 4; padding-top: 96px; }
.office-design-project-grid figure { margin: 0; }

.office-design-project-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.office-design-project-secondary img { aspect-ratio: 0.82; }

.office-design-project-grid figcaption {
  margin-top: 14px;
  color: #625d55;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.office-design-capabilities { background: var(--office-stone); }

.office-design-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--office-rule);
  border-left: 1px solid var(--office-rule);
}

.office-design-capability-grid article {
  min-height: 225px;
  padding: 25px 27px;
  border-right: 1px solid var(--office-rule);
  border-bottom: 1px solid var(--office-rule);
}

.office-design-capability-grid span {
  display: block;
  margin-bottom: 64px;
  color: #9d7955;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.office-design-capability-grid h3 { margin: 0 0 10px; font-size: 21px; font-weight: 600; }
.office-design-capability-grid p { max-width: 290px; margin: 0; color: #5c5750; font-size: 14px; line-height: 1.55; }

.office-design-assurance { color: #f5f1e9; background: var(--office-ink); }
.office-design-assurance .office-design-section-kicker { color: #d8b98b; }

.office-design-assurance-grid {
  display: grid;
  grid-template-columns: 2fr 4fr 3fr;
  gap: 5%;
  align-items: start;
}

.office-design-assurance-copy { margin: 0; color: rgba(245, 241, 233, 0.78); font-size: 17px; line-height: 1.65; }

.office-design-assurance-copy { grid-column: 3; }
.office-design-assurance-copy p { margin: 0 0 32px; }
.office-design-assurance-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(245, 241, 233, 0.28);
}

.office-design-assurance-copy li {
  display: grid;
  grid-template-columns: 1fr;
  padding: 19px 0;
  border-bottom: 1px solid rgba(245, 241, 233, 0.28);
  font-size: 15px;
  line-height: 1.45;
}

.office-design-process { background: #ede8de; }

.office-design-process-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 15%;
}

.office-design-process-heading { max-width: 440px; }
.office-design-process-copy { max-width: 320px; margin: 27px 0 0; color: #5c5750; font-size: 16px; line-height: 1.6; }

.office-design-process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--office-rule); }

.office-design-process-list li {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 16px;
  padding: 25px 0;
  border-bottom: 1px solid var(--office-rule);
}

.office-design-process-list span { color: #9d7955; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; }
.office-design-process-list h3 { margin: 0 0 8px; font-size: 19px; font-weight: 600; }
.office-design-process-list p { margin: 0; color: #5c5750; font-size: 14px; line-height: 1.52; }

.office-design-faq { background: #f8f6f1; }

.office-design-faq-grid {
  display: grid;
  grid-template-columns: 3fr 6fr;
  gap: 15%;
}

.office-design-faq-list { border-top: 1px solid var(--office-rule); }
.office-design-faq-list details { padding: 22px 0; border-bottom: 1px solid var(--office-rule); }
.office-design-faq-list summary { display: flex; justify-content: space-between; gap: 25px; cursor: pointer; font-size: 18px; font-weight: 600; list-style: none; }
.office-design-faq-list summary::-webkit-details-marker { display: none; }
.office-design-faq-list summary span { color: #9d7955; font-size: 24px; font-weight: 400; line-height: 0.7; }
.office-design-faq-list details[open] summary { margin-bottom: 13px; }
.office-design-faq-list p { max-width: 700px; margin: 0; color: #5c5750; font-size: 15px; line-height: 1.58; }

.office-design-service-nav { padding: clamp(68px, 8vw, 110px) 0; background: #efebe4; }
.office-design-service-nav-head { display: grid; grid-template-columns: minmax(160px, .28fr) minmax(0, .84fr) minmax(240px, .38fr); gap: 42px; align-items: start; margin-bottom: 44px; }
.office-design-service-nav-head h2 { max-width: 600px; margin: 0; font-family: var(--font-display, Georgia, serif); font-size: clamp(38px, 3.65vw, 56px); font-weight: 400; letter-spacing: -.04em; line-height: 1.01; }
.office-design-service-nav-head > p:last-child { max-width: 270px; margin: 4px 0 0; font-size: 15px; line-height: 1.55; }
.office-design-service-nav-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(52, 46, 38, .18); border-left: 1px solid rgba(52, 46, 38, .18); }
.office-design-service-nav-card { position: relative; display: flex; flex-direction: column; min-height: 235px; padding: 25px 27px 24px; color: #302c27; background: #f7f4ee; border-right: 1px solid rgba(52, 46, 38, .18); border-bottom: 1px solid rgba(52, 46, 38, .18); }
.office-design-service-nav-card:nth-child(2) { background: #eee7dc; }
.office-design-service-nav-card:nth-child(3) { background: #e6dccf; }
.office-design-service-nav-card:nth-child(4) { background: #f3efe8; }
.office-design-service-nav-card:nth-child(5) { background: #e9e0d4; }
.office-design-service-nav-card:nth-child(6) { background: #dfd4c5; }
.office-design-service-nav-card.is-current { color: #f7f3ea; background: #272622; }
.office-design-service-nav-number { color: #aa7e4e; font-family: var(--font-display, Georgia, serif); font-size: 27px; line-height: 1; }
.office-design-service-nav-current { position: absolute; top: 28px; right: 27px; color: #d5b17f; font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.office-design-service-nav-card h3 { max-width: 280px; margin: 30px 0 13px; font-family: var(--font-display, Georgia, serif); font-size: clamp(28px, 2.5vw, 39px); font-weight: 400; letter-spacing: -.035em; line-height: .98; }
.office-design-service-nav-card p { max-width: 270px; margin: 0; color: currentColor; font-size: 15px; line-height: 1.48; opacity: .76; }
.office-design-service-nav-card a, .office-design-service-nav-status { display: inline-flex; align-items: center; gap: 10px; width: fit-content; margin-top: auto; padding-top: 20px; color: currentColor; border-bottom: 1px solid currentColor; padding-bottom: 4px; font-size: 13px; font-weight: 700; text-decoration: none; }
.office-design-service-nav-status { color: #d5b17f; border-bottom-color: rgba(213, 177, 127, .68); }
.office-design-service-nav-card a:hover span { transform: translateX(4px); }
.office-design-service-nav-card a span { transition: transform .22s var(--ease); }

.office-design-close { background: #c7b59e; }
.office-design-close-grid { display: grid; grid-template-columns: 7fr 3fr; gap: 8%; align-items: end; }
.office-design-close-copy { margin: 25px 0 0; font-size: 17px; line-height: 1.55; }
.office-design-close-actions { justify-content: flex-end; }
.office-design-close .office-design-arrow-link { color: #1c1b19; }
.office-design-close-grid > div:last-child > p { margin: 0 0 27px; font-size: 16px; line-height: 1.55; }
.office-design-phone { display: block; width: fit-content; margin-top: 23px; color: #1c1b19; border-bottom: 1px solid currentColor; font-size: 14px; font-weight: 700; text-decoration: none; }

@media (max-width: 800px) {
  .office-design-hero { min-height: 760px; }
  .office-design-hero-media img { object-position: 61% center; }
  .office-design-hero-shade { background: linear-gradient(90deg, rgba(8, 8, 7, 0.88), rgba(8, 8, 7, 0.28)), linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 55%); }
  .office-design-hero-inner, .office-design-hero-proof, .office-design-shell { width: min(100% - 40px, 1360px); }
  .office-design-hero-inner { padding: 72px 0 52px; }
  .office-design-crumbs { margin-bottom: 56px; }
  .office-design-hero h1 { max-width: 620px; }
  .office-design-hero-proof p { min-height: 86px; padding-right: 14px; font-size: 10px; }
  .office-design-hero-proof p + p { padding-left: 14px; }
  .office-design-intro-grid, .office-design-section-heading, .office-design-section-head, .office-design-assurance-grid, .office-design-process-grid, .office-design-faq-grid, .office-design-close-grid { grid-template-columns: 1fr; gap: 22px; }
  .office-design-service-nav-head { grid-template-columns: 1fr; gap: 18px; }
  .office-design-section-heading { margin-bottom: 38px; }
  .office-design-assurance-copy { grid-column: auto; }
  .office-design-project-secondary { padding-top: 55px; }
  .office-design-project-note { grid-column: 9 / span 4; }
  .office-design-process-copy { margin-top: 10px; }
  .office-design-close-actions { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .office-design-hero { min-height: 720px; }
  .office-design-hero-inner, .office-design-hero-proof, .office-design-shell { width: min(100% - 32px, 1360px); }
  .office-design-hero-inner { padding-top: 46px; }
  .office-design-crumbs { margin-bottom: 38px; font-size: 9px; }
  .office-design-hero h1 { font-size: clamp(47px, 13vw, 65px); }
  .office-design-hero-lede { margin: 21px 0 29px; font-size: 16px; }
  .office-design-hero-actions, .office-design-close-actions { display: grid; gap: 18px; justify-content: stretch; }
  .office-design-button { width: 100%; }
  .office-design-hero-proof { grid-template-columns: 1fr; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.25); }
  .office-design-hero-proof p, .office-design-hero-proof p + p { min-height: 0; padding: 8px 0; border: 0; font-size: 9px; }
  .office-design-intro, .office-design-projects, .office-design-capabilities, .office-design-assurance, .office-design-process, .office-design-faq, .office-design-close { padding: 72px 0; }
  .office-design-service-nav { padding: 72px 0; }
  .office-design-service-nav-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .office-design-service-nav-card { min-height: 218px; padding: 22px 19px; }
  .office-design-service-nav-current { top: 24px; right: 19px; font-size: 8px; }
  .office-design-service-nav-card h3 { margin-top: 28px; font-size: 29px; }
  .office-design-intro h2, .office-design-section-heading h2, .office-design-assurance h2, .office-design-close h2 { font-size: clamp(38px, 11vw, 54px); }
  .office-design-project-grid { gap: 24px; }
  .office-design-project-primary, .office-design-project-secondary { grid-column: 1 / -1; padding-top: 0; }
  .office-design-project-note { grid-column: 1 / -1; padding-top: 24px; }
  .office-design-project-secondary img { aspect-ratio: 1.28; }
  .office-design-capability-grid { grid-template-columns: 1fr; }
  .office-design-capability-grid article { min-height: 0; padding: 22px; }
  .office-design-capability-grid span { margin-bottom: 34px; }
  .office-design-process-list li { grid-template-columns: 45px 1fr; gap: 8px; }
  .office-design-process-list p { grid-column: 2; }
}

/* Office interior design page refinements: align with the Our Services system. */
.office-design-page {
  --office-ink: var(--near-black);
  --office-paper: #f7f6f2;
  --office-stone: var(--warm-grey);
  --office-gold: var(--gold);
}

.office-design-hero-inner,
.office-design-hero-proof,
.office-design-shell {
  width: min(100% - 36px, 1180px);
}

.office-design-hero { min-height: min(780px, 100svh); }
.office-design-hero-inner { padding: 92px 0 70px; }
.office-design-hero h1 { max-width: 690px; font-size: clamp(52px, 5.4vw, 82px); line-height: 0.97; }
.office-design-hero-lede { max-width: 560px; }
.office-design-hero-proof { grid-template-columns: repeat(2, 1fr); }
.office-design-hero-proof p { color: rgba(255, 255, 255, 0.9); }

.office-design-page .office-design-kicker,
.office-design-page .office-design-section-kicker {
  color: #7c5b3e;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.office-design-hero .office-design-kicker { color: #d5b17f; }
.office-design-intro { padding-top: clamp(76px, 8vw, 116px); padding-bottom: clamp(66px, 7vw, 104px); }
.office-design-intro-grid { grid-template-columns: minmax(160px, 0.28fr) minmax(0, 0.84fr) minmax(240px, 0.38fr); gap: 42px; }
.office-design-intro h2 { max-width: 680px; font-size: clamp(42px, 4.2vw, 65px); }
.office-design-intro-copy { padding-top: 4px; font-size: 16px; }
.office-design-intro .office-design-project-grid { margin-top: 58px; }

.office-design-projects { padding: 0 0 clamp(78px, 9vw, 128px); background: #f7f6f2; }
.office-design-section-heading { grid-template-columns: minmax(160px, 0.28fr) minmax(0, 0.84fr) minmax(240px, 0.38fr); gap: 42px; margin-bottom: 46px; }
.office-design-section-heading h2 { max-width: 690px; font-size: clamp(42px, 4.2vw, 65px); }
.office-design-section-heading p:last-child { border-top: 1px solid var(--black); padding-top: 18px; color: #333; }
.office-design-project-grid { grid-auto-rows: 205px; gap: 10px; }
.office-design-project-primary { grid-column: 1 / 8; grid-row: 1 / 3; }
.office-design-project-secondary { grid-column: 8 / 13; grid-row: 1; padding-top: 0; }
.office-design-project-tertiary { grid-column: 8 / 10; grid-row: 2; }
.office-design-project-quaternary { grid-column: 10 / 13; grid-row: 2; }
.office-design-project-grid figure { overflow: hidden; background: var(--warm-grey); }
.office-design-project-grid img,
.office-design-project-secondary img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; transition: transform 700ms var(--ease); }
.office-design-project-grid figure:hover img { transform: scale(1.025); }
.office-design-project-note { grid-column: 1 / 8; grid-row: 3; display: grid; grid-template-columns: 1fr 2fr auto; gap: 22px; align-items: end; padding: 20px 0 0; }
.office-design-project-note > span { margin: 0; color: #7c5b3e; }
.office-design-project-note p { margin: 0; }
.office-design-project-note .office-design-arrow-link { margin-bottom: 2px; white-space: nowrap; }

.office-design-capabilities { background: var(--warm-grey); }
.office-design-section-head { grid-template-columns: minmax(160px, 0.28fr) minmax(0, 0.84fr); gap: 42px; }
.office-design-section-head h2 { max-width: 690px; font-size: clamp(42px, 4.2vw, 65px); }
.office-design-capability-grid article { min-height: 205px; padding: 24px 26px; }
.office-design-capability-grid span { margin-bottom: 45px; color: #7c5b3e; }

.office-design-assurance-grid { grid-template-columns: minmax(160px, 0.28fr) minmax(0, 0.84fr) minmax(240px, 0.38fr); gap: 42px; }
.office-design-assurance h2 { max-width: 650px; font-size: clamp(42px, 4.2vw, 65px); }
.office-design-assurance-copy { grid-column: auto; }
.office-design-assurance-image,
.office-design-process-image { margin: 62px auto 0; overflow: hidden; }
.office-design-assurance-image img,
.office-design-process-image img { display: block; width: 100%; aspect-ratio: 2.35 / 1; object-fit: cover; }
.office-design-assurance-image img { object-position: center 60%; }
.office-design-process-image img { object-position: center; }
.office-design-process { background: #f7f6f2; }
.office-design-process-grid { grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr); gap: 12%; }
.office-design-process-list li { padding: 22px 0; }
.office-design-faq { background: var(--warm-grey); }
.office-design-faq-grid { grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr); gap: 12%; }

@media (max-width: 800px) {
  .office-design-hero-inner,
  .office-design-hero-proof,
  .office-design-shell { width: min(100% - 36px, 1180px); }
  .office-design-intro-grid,
  .office-design-section-heading,
  .office-design-section-head,
  .office-design-assurance-grid,
  .office-design-process-grid,
  .office-design-faq-grid { grid-template-columns: 1fr; gap: 20px; }
  .office-design-section-heading p:last-child { max-width: 400px; }
  .office-design-project-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 170px; }
  .office-design-project-primary { grid-column: 1 / 5; grid-row: 1 / 3; }
  .office-design-project-secondary { grid-column: 5 / 7; grid-row: 1; }
  .office-design-project-tertiary { grid-column: 5 / 7; grid-row: 2; }
  .office-design-project-quaternary { grid-column: 1 / 4; grid-row: 3; }
  .office-design-project-note { grid-column: 4 / 7; grid-row: 3; grid-template-columns: 1fr; gap: 10px; padding-top: 8px; }
  .office-design-assurance-image,
  .office-design-process-image { margin-top: 42px; }
  .office-design-assurance-image img,
  .office-design-process-image img { aspect-ratio: 1.7 / 1; }
}

@media (max-width: 560px) {
  .office-design-hero { min-height: 720px; }
  .office-design-hero-inner,
  .office-design-hero-proof,
  .office-design-shell { width: min(100% - 32px, 1180px); }
  .office-design-hero h1 { font-size: clamp(46px, 12.5vw, 62px); }
  .office-design-project-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .office-design-project-primary { grid-column: 1 / -1; grid-row: span 2; }
  .office-design-project-secondary,
  .office-design-project-tertiary,
  .office-design-project-quaternary { grid-column: auto; grid-row: auto; }
  .office-design-project-note { grid-column: 1 / -1; grid-row: auto; display: block; padding-top: 16px; }
  .office-design-project-note p { margin: 12px 0 18px; }
  .office-design-assurance-image img,
  .office-design-process-image img { aspect-ratio: 1.15 / 1; }
}

/* Integrate the service visuals into their editorial columns instead of treating them as separate banners. */
.office-design-assurance-grid { align-items: start; }
.office-design-assurance-lead { min-width: 0; }
.office-design-assurance-lead h2 { margin: 0; }
.office-design-assurance-image {
  width: min(100%, 610px);
  margin: clamp(30px, 3vw, 42px) 0 0;
  background: transparent;
}
.office-design-assurance-image img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.office-design-process-heading {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 500px;
}
.office-design-process-heading h2 { margin: 0; }
.office-design-process-image {
  width: 100%;
  margin: clamp(32px, 3.5vw, 46px) 0 0;
  background: transparent;
}
.office-design-process-image img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 800px) {
  .office-design-assurance-image,
  .office-design-process-image { margin-top: 30px; }
  .office-design-assurance-image img,
  .office-design-process-image img { aspect-ratio: auto; }
}

@media (max-width: 560px) {
  .office-design-assurance-image img,
  .office-design-process-image img { aspect-ratio: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .svc-index-title,
  .svc-index-portrait,
  .svc-index-portrait img,
  .svc-project-mosaic img {
    animation: none;
    transition: none;
    transform: none;
  }
}

/* Premium service-page system: shared structure, unique service content and imagery. */
.premium-service-page {
  --premium-ink: var(--near-black);
  --premium-paper: #f7f6f2;
  --premium-stone: var(--warm-grey);
  --premium-gold: var(--gold);
  --premium-rule: rgba(19, 18, 17, 0.18);
  color: var(--premium-ink);
  background: var(--premium-paper);
}
.premium-service-hero { position: relative; display: grid; align-items: end; min-height: min(780px, 100svh); overflow: hidden; color: var(--white); background: var(--near-black); }
.premium-service-hero-media, .premium-service-hero-shade { position: absolute; inset: 0; margin: 0; }
.premium-service-hero-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.premium-service-hero-shade { background: linear-gradient(90deg, rgba(13, 12, 11, 0.82), rgba(13, 12, 11, 0.42) 54%, rgba(13, 12, 11, 0.18)); }
.premium-service-hero-inner { position: relative; z-index: 1; width: min(100% - 36px, 1180px); padding: 92px 0 82px; }
.premium-service-crumbs { display: flex; gap: 10px; margin-bottom: 52px; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.premium-service-crumbs a { color: inherit; }
.premium-service-kicker, .premium-service-eyebrow { margin: 0; color: #7c5b3e; font-family: var(--body); font-size: 12px; font-weight: 700; letter-spacing: .13em; line-height: 1.3; text-transform: uppercase; }
.premium-service-hero .premium-service-kicker { color: #d5b17f; }
.premium-service-hero h1 { max-width: 750px; margin: 24px 0 0; font-size: clamp(52px, 5.4vw, 82px); font-weight: 400; letter-spacing: -.04em; line-height: .97; }
.premium-service-hero-copy { max-width: 590px; margin: 24px 0 0; color: rgba(255,255,255,.92); font-size: 17px; line-height: 1.62; }
.premium-service-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 32px; }
.premium-service-button { display: inline-flex; align-items: center; gap: 13px; border: 1px solid var(--white); padding: 14px 18px; color: var(--white); font-size: 14px; font-weight: 600; transition: color .24s var(--ease), background-color .24s var(--ease), border-color .24s var(--ease); }
.premium-service-button:hover, .premium-service-button:focus-visible { border-color: var(--premium-gold); background: var(--premium-gold); color: var(--white); opacity: 1; }
.premium-service-link { display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid currentColor; padding-bottom: 4px; color: var(--white); font-size: 14px; font-weight: 600; }
.premium-service-link span, .premium-service-button span { transition: transform .24s var(--ease); }
.premium-service-link:hover span, .premium-service-button:hover span { transform: translateX(4px); }

.premium-service-intro, .premium-service-capabilities, .premium-service-process, .premium-service-faq { padding: clamp(82px, 10vw, 142px) 0; }
/* Mirrors the established Office Interior Design composition: a compact label,
   a decisive headline and a readable supporting column. */
.premium-service-intro { padding-top: clamp(76px, 8vw, 116px); padding-bottom: clamp(66px, 7vw, 104px); }
.premium-service-intro-grid { display: grid; grid-template-columns: minmax(160px,.28fr) minmax(0,.84fr) minmax(240px,.38fr); gap: 42px; align-items: start; }
.premium-service-intro h2, .premium-service-section-head h2, .premium-service-assurance h2, .premium-service-process h2, .premium-service-faq h2, .premium-service-close h2 { margin: 0; font-size: clamp(42px, 4.2vw, 65px); font-weight: 400; letter-spacing: -.04em; line-height: .99; }
.premium-service-intro-copy { padding-top: 4px; font-size: 16px; line-height: 1.68; }
.premium-service-intro-copy p { margin: 0 0 20px; }
.premium-service-gallery { display: block; margin-top: clamp(45px, 6vw, 76px); }
.premium-service-gallery figure { margin: 0; overflow: hidden; background: var(--premium-stone); }
.premium-service-gallery img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.premium-service-gallery figure:hover img { transform: scale(1.025); }
.premium-service-gallery-item-1 { width: min(78%, 860px); aspect-ratio: 1.52 / 1; }
.premium-service-intro-image-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-template-rows: repeat(2, 205px); grid-template-areas: "primary primary primary primary primary primary primary secondary secondary secondary secondary secondary" "primary primary primary primary primary primary primary tertiary tertiary quaternary quaternary quaternary"; gap: 10px; margin-top: 58px; }
.premium-service-intro-image-grid figure { margin: 0; overflow: hidden; background: var(--premium-stone); }
.premium-service-intro-image-grid img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.premium-service-intro-image-grid figure:hover img { transform: scale(1.025); }
.premium-service-intro-image-1 { grid-area: primary; }
.premium-service-intro-image-2 { grid-area: secondary; }
.premium-service-intro-image-3 { grid-area: tertiary; }
.premium-service-intro-image-4 { grid-area: quaternary; }
.premium-service-partner { display: grid; grid-template-columns: minmax(260px, .36fr) minmax(0, 1fr); gap: clamp(42px, 6vw, 86px); margin-top: clamp(48px, 6vw, 76px); padding-top: clamp(28px, 3vw, 42px); border-top: 1px solid var(--premium-rule); align-items: start; }
.premium-service-partner-copy { max-width: 360px; font-size: 17px; line-height: 1.68; }
.premium-service-partner-copy > p:not(.premium-service-kicker) { margin: 0; }
.premium-service-partner-link { display: inline-flex; margin-top: 26px; color: var(--premium-ink); border-bottom-color: var(--premium-ink); }
.premium-service-partner-images { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; align-items: start; }
.premium-service-partner-images figure { margin: 0; overflow: hidden; background: var(--premium-stone); }
.premium-service-partner-images figure { aspect-ratio: 1.34 / 1; }
.premium-service-partner-images img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.premium-service-partner-images figure:hover img { transform: scale(1.025); }
.premium-service-technology-media { display: grid; grid-template-columns: minmax(245px, .42fr) minmax(0, 1fr); gap: clamp(34px, 6vw, 86px); margin-top: clamp(56px, 7vw, 94px); padding-top: clamp(30px, 4vw, 52px); border-top: 1px solid var(--premium-rule); align-items: start; }
.premium-service-technology-copy { max-width: 370px; font-size: 17px; line-height: 1.68; }
.premium-service-technology-copy > p:not(.premium-service-kicker) { margin: 0; }
.premium-service-technology-images { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(170px, .72fr); gap: 16px; align-items: start; }
.premium-service-technology-images figure { margin: 0; background: #121719; }
.premium-service-technology-images img { display: block; width: 100%; height: auto; }

.premium-service-capabilities { background: var(--premium-stone); }
.premium-service-section-head { display: grid; grid-template-columns: minmax(150px,.28fr) minmax(0,.9fr); gap: 42px; margin-bottom: 48px; }
.premium-service-section-head h2 { max-width: 700px; }
.premium-service-capability-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--premium-rule); border-left: 1px solid var(--premium-rule); }
.premium-service-capability-grid article { min-height: 205px; padding: 24px 26px; border-right: 1px solid var(--premium-rule); border-bottom: 1px solid var(--premium-rule); }
.premium-service-capability-grid span { display: block; margin-bottom: 44px; color: #7c5b3e; font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.premium-service-capability-grid h3 { margin: 0 0 10px; font-size: 21px; font-weight: 600; }
.premium-service-capability-grid p { max-width: 290px; margin: 0; color: #55504a; font-size: 14px; line-height: 1.55; }

.premium-service-assurance { padding: clamp(82px, 10vw, 142px) 0; color: #f6f2e9; background: var(--premium-ink); }
.premium-service-assurance .premium-service-kicker { color: #d5b17f; }
.premium-service-assurance-grid { display: grid; grid-template-columns: minmax(150px,.28fr) minmax(0,.9fr) minmax(245px,.42fr); gap: 42px; align-items: start; }
.premium-service-assurance-lead { min-width: 0; }
.premium-service-assurance-lead h2 { max-width: 690px; }
.premium-service-feature-image { width: min(100%,610px); margin: clamp(30px,3vw,42px) 0 0; }
.premium-service-feature-image img { display: block; width: 100%; height: auto; }
.premium-service-assurance-copy { padding-top: 5px; color: rgba(246,242,233,.8); font-size: 16px; line-height: 1.65; }
.premium-service-assurance-copy p { margin: 0 0 32px; }
.premium-service-assurance-copy ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(246,242,233,.28); }
.premium-service-assurance-copy li { padding: 19px 0; border-bottom: 1px solid rgba(246,242,233,.28); font-size: 15px; line-height: 1.45; }

.premium-service-process { background: var(--premium-paper); }
.premium-service-process-grid { display: grid; grid-template-columns: minmax(310px,.74fr) minmax(0,1fr); gap: 12%; }
.premium-service-process-heading { display: flex; flex-direction: column; max-width: 500px; }
.premium-service-process-image { width: 100%; margin: clamp(32px,3.5vw,46px) 0 0; }
.premium-service-process-image img { display: block; width: 100%; height: auto; }
.premium-service-process-grid.is-text-led { grid-template-columns: minmax(310px, .74fr) minmax(0, 1fr); }
.premium-service-process-grid.is-text-led .premium-service-process-heading { justify-content: flex-start; }
.premium-service-process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--premium-rule); }
.premium-service-process-list li { display: grid; grid-template-columns: 66px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--premium-rule); }
.premium-service-process-list span { color: #7c5b3e; font-size: 12px; font-weight: 700; letter-spacing: .1em; }
.premium-service-process-list h3 { margin: 0 0 8px; font-size: 19px; font-weight: 600; }
.premium-service-process-list p { margin: 0; color: #55504a; font-size: 14px; line-height: 1.52; }

.premium-service-faq { background: var(--premium-stone); }
.premium-service-faq-grid { display: grid; grid-template-columns: minmax(300px,.74fr) minmax(0,1fr); gap: 12%; }
.premium-service-faq-list { border-top: 1px solid var(--premium-rule); }
.premium-service-faq-list details { padding: 22px 0; border-bottom: 1px solid var(--premium-rule); }
.premium-service-faq-list summary { display: flex; justify-content: space-between; gap: 25px; cursor: pointer; font-size: 18px; font-weight: 600; list-style: none; }
.premium-service-faq-list summary::-webkit-details-marker { display: none; }
.premium-service-faq-list summary span { color: #7c5b3e; font-size: 24px; font-weight: 400; line-height: .7; }
.premium-service-faq-list details[open] summary { margin-bottom: 13px; }
.premium-service-faq-list p { max-width: 700px; margin: 0; color: #55504a; font-size: 15px; line-height: 1.64; }

.premium-service-close { position: relative; min-height: 520px; overflow: hidden; color: var(--white); background: var(--premium-ink); }
.premium-service-close-image, .premium-service-close-image::after { position: absolute; inset: 0; margin: 0; }
.premium-service-close-image::after { content: ""; background: rgba(0, 0, 0, .53); }
.premium-service-close-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.premium-service-close-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1fr) minmax(260px,.38fr); gap: 15%; width: min(100% - 36px,1180px); min-height: 520px; align-items: end; padding: 78px 0; }
.premium-service-eyebrow { color: #d5b17f; }
.premium-service-close h2 { max-width: 650px; margin-top: 16px; }
.premium-service-close-inner > div:first-child > p:not(.premium-service-eyebrow) { max-width: 550px; margin: 22px 0 28px; color: rgba(255,255,255,.88); font-size: 17px; line-height: 1.6; }
.premium-service-button-dark { background: rgba(16,15,14,.86); }
.premium-service-close-contacts { display: grid; gap: 20px; }
.premium-service-close-contacts a { display: grid; gap: 5px; color: var(--white); font-size: 17px; font-weight: 600; }
.premium-service-close-contacts span { color: #d5b17f; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 800px) {
  .premium-service-hero { min-height: 720px; }
  .premium-service-hero-inner { padding: 78px 0 58px; }
  .premium-service-crumbs { margin-bottom: 40px; }
  .premium-service-intro-grid, .premium-service-assurance-grid, .premium-service-process-grid, .premium-service-faq-grid { grid-template-columns: 1fr; gap: 20px; }
  .premium-service-section-head { grid-template-columns: 1fr; gap: 18px; }
  .premium-service-assurance-copy { max-width: 600px; }
  .premium-service-feature-image { max-width: 680px; }
  .premium-service-gallery-item-1 { width: min(86%, 860px); }
  .premium-service-intro-image-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); grid-template-rows: repeat(2, 190px); grid-template-areas: "primary primary primary primary secondary secondary" "primary primary primary primary tertiary quaternary"; }
  .premium-service-partner { grid-template-columns: 1fr; gap: 30px; }
  .premium-service-partner-copy { max-width: 640px; }
  .premium-service-technology-media { grid-template-columns: 1fr; gap: 30px; }
  .premium-service-technology-copy { max-width: 640px; }
  .premium-service-close-inner { grid-template-columns: 1fr; gap: 42px; min-height: 0; padding: 72px 0; }
}

@media (max-width: 560px) {
  .premium-service-hero { min-height: 700px; }
  .premium-service-hero-inner { width: min(100% - 32px,1180px); padding: 58px 0 46px; }
  .premium-service-hero h1 { font-size: clamp(45px,12.5vw,62px); }
  .premium-service-hero-copy { font-size: 16px; }
  .premium-service-hero-actions { display: grid; gap: 16px; }
  .premium-service-button { justify-content: center; }
  .premium-service-intro, .premium-service-capabilities, .premium-service-process, .premium-service-faq, .premium-service-assurance { padding: 72px 0; }
  .premium-service-intro h2, .premium-service-section-head h2, .premium-service-assurance h2, .premium-service-process h2, .premium-service-faq h2, .premium-service-close h2 { font-size: clamp(38px,10.7vw,54px); }
  .premium-service-gallery-item-1 { width: 100%; aspect-ratio: 1.35 / 1; }
  .premium-service-intro-image-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 150px 150px; grid-template-areas: "primary primary" "secondary tertiary" "quaternary quaternary"; gap: 10px; }
  .premium-service-partner-images { grid-template-columns: 1fr; gap: 14px; }
  .premium-service-partner-images figure:first-child, .premium-service-partner-images figure:last-child { aspect-ratio: 1.35 / 1; }
  .premium-service-technology-images { grid-template-columns: minmax(0, 1.25fr) minmax(115px, .75fr); gap: 10px; }
  .premium-service-capability-grid { grid-template-columns: 1fr; }
  .premium-service-capability-grid article { min-height: 0; }
  .premium-service-capability-grid span { margin-bottom: 34px; }
  .premium-service-process-list li { grid-template-columns: 46px 1fr; gap: 8px; }
  .premium-service-close { min-height: 0; }
}

@media (max-width: 430px) {
  .site-nav {
    font-size: 22px;
  }
}

/* Our service: editorial redesign */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  transition: background-color 320ms ease, box-shadow 320ms ease, padding 320ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.045);
}

.site-nav a[aria-current="page"],
.nav-group.is-current > summary {
  color: var(--gold);
}

.nav-group summary,
.site-nav > div > a {
  position: relative;
}

.nav-group summary::after,
.site-nav > div > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms var(--ease);
}

.nav-group:hover > summary::after,
.nav-group.is-current > summary::after,
.site-nav > div > a:hover::after,
.site-nav > div > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.service-redesign {
  overflow: clip;
}

.service-hero {
  position: relative;
  display: grid;
  min-height: min(780px, 94vh);
  padding-top: 65px;
  color: var(--black);
  background: var(--warm-grey);
}

.service-hero-image,
.service-hero-image::after {
  position: absolute;
  inset: 0;
}

.service-hero-image {
  z-index: 0;
  margin: 0;
  overflow: hidden;
  background: var(--near-black);
}

.service-hero-image::after {
  content: "";
  background: linear-gradient(90deg, rgba(21, 19, 17, 0.44), rgba(21, 19, 17, 0.1) 58%, rgba(21, 19, 17, 0.18));
  pointer-events: none;
}

.service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: serviceHeroImage 2.2s var(--ease) both;
}

.service-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100% - 72px, 1320px);
  align-items: center;
  padding: 72px 0;
}

.service-hero-copy {
  width: min(100%, 655px);
  padding: clamp(34px, 4.5vw, 68px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.11);
}

.service-eyebrow {
  margin-bottom: 20px;
  color: var(--gold);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-hero-copy h1 {
  max-width: 585px;
  font-size: clamp(54px, 5.45vw, 84px);
  line-height: 0.95;
}

.service-hero-copy > p:not(.service-eyebrow) {
  max-width: 515px;
  margin-top: 28px;
  color: #292725;
  font-size: 16px;
  line-height: 1.65;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.service-btn-solid {
  border-radius: 0;
  background: var(--near-black);
  color: var(--white);
}

.service-btn-solid:hover,
.service-btn-solid:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.service-text-cta,
.service-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
}

.service-text-cta span,
.service-arrow-link span {
  transition: transform 260ms var(--ease);
}

.service-text-cta:hover span,
.service-arrow-link:hover span {
  transform: translateX(4px);
}

.service-index {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  background: var(--white);
}

.service-index-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.service-index-list a {
  display: grid;
  min-height: 164px;
  align-content: start;
  gap: 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  padding: 27px 20px 22px;
  transition: background-color 280ms ease, color 280ms ease;
}

.service-index-list a:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.service-index-list a:hover,
.service-index-list a:focus-visible {
  background: var(--warm-grey);
  color: var(--black);
  opacity: 1;
}

.service-index-list span {
  color: var(--gold);
  font-family: var(--title);
  font-size: 22px;
}

.service-index-list strong {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-index-list small {
  color: var(--dark-grey);
  font-size: 12px;
  line-height: 1.4;
}

.service-introduction {
  border-bottom: 1px solid var(--light-grey);
  background: #fbfbf9;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 0.93fr) minmax(280px, 0.54fr);
  gap: clamp(30px, 5vw, 92px);
  align-items: start;
}

.service-intro-grid .service-eyebrow {
  margin-top: 11px;
}

.service-intro-grid h2 {
  max-width: 720px;
  font-size: clamp(42px, 4.3vw, 66px);
  line-height: 1.02;
}

.service-intro-grid > div {
  border-top: 1px solid var(--black);
  padding-top: 24px;
  color: #383634;
  font-size: 16px;
  line-height: 1.65;
}

.service-story {
  position: relative;
  border-bottom: 1px solid var(--light-grey);
  scroll-margin-top: 78px;
}

.service-story:nth-child(odd) {
  background: var(--white);
}

.service-story:nth-child(even) {
  background: #f8f8f6;
}

.service-story-grid {
  display: grid;
  grid-template-columns: 120px minmax(0, 0.75fr) minmax(380px, 0.76fr);
  gap: clamp(30px, 5vw, 88px);
  align-items: center;
  min-height: 670px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.service-story-meta {
  align-self: start;
  border-top: 1px solid var(--black);
  padding-top: 14px;
}

.service-story-meta span {
  display: block;
  color: var(--gold);
  font-family: var(--title);
  font-size: 38px;
  line-height: 1;
}

.service-story-meta p {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.service-story-outcome {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--title);
  font-size: 28px;
  line-height: 1.1;
}

.service-story-copy h2 {
  max-width: 600px;
  font-size: clamp(46px, 4vw, 65px);
  line-height: 0.97;
}

.service-story-copy h3 {
  max-width: 560px;
  margin-top: 20px;
  font-size: 28px;
  line-height: 1.16;
}

.service-story-copy > p:not(.service-story-outcome) {
  max-width: 550px;
  margin-top: 26px;
  color: #3a3836;
  line-height: 1.65;
}

.service-story-copy ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  max-width: 560px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.service-story-copy li {
  border-top: 1px solid rgba(0, 0, 0, 0.22);
  padding-top: 10px;
  font-size: 13px;
  line-height: 1.4;
}

.service-story-image {
  min-height: 490px;
  margin: 0;
  overflow: hidden;
  background: var(--soft-grey);
}

.service-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.service-story:hover .service-story-image img {
  filter: saturate(0.94) contrast(1.03);
  transform: scale(1.035);
}

.service-story:nth-child(even) .service-story-copy {
  grid-column: 3;
  grid-row: 1;
}

.service-story:nth-child(even) .service-story-image {
  grid-column: 2;
  grid-row: 1;
}

.service-process {
  background: var(--warm-grey);
}

.service-process-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 0.86fr) minmax(250px, 0.44fr);
  gap: clamp(30px, 5vw, 88px);
  align-items: start;
}

.service-process-heading .service-eyebrow {
  margin-top: 12px;
}

.service-process-heading h2 {
  max-width: 730px;
  font-size: clamp(43px, 4.3vw, 66px);
  line-height: 1.02;
}

.service-process-heading > p:not(.service-eyebrow) {
  border-top: 1px solid var(--black);
  padding-top: 22px;
  color: #3e3b36;
  line-height: 1.65;
}

.service-process-line {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
}

.service-process-line li {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 120px;
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  padding: 0 22px;
  font-family: var(--title);
  font-size: 29px;
  line-height: 1;
}

.service-process-line li:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}

.service-process-line li::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.service-process-line li:last-child::after {
  display: none;
}

.service-process-line span {
  color: var(--gold);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.service-proof {
  background: var(--near-black);
  color: var(--white);
}

.service-proof-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(420px, 0.92fr);
  gap: clamp(48px, 9vw, 150px);
}

.service-proof h2 {
  max-width: 640px;
  color: var(--white);
  font-size: clamp(45px, 4.6vw, 70px);
  line-height: 1;
}

.service-proof-points {
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.service-proof-points article {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  padding: 28px 0;
}

.service-proof-points span {
  grid-row: span 2;
  color: var(--gold);
  font-family: var(--title);
  font-size: 28px;
}

.service-proof-points h3 {
  color: var(--white);
  font-size: 26px;
}

.service-proof-points p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.service-close {
  position: relative;
  min-height: 650px;
  padding: 110px 0;
  color: var(--white);
  background: var(--charcoal);
}

.service-close-image,
.service-close-image::after {
  position: absolute;
  inset: 0;
}

.service-close-image {
  z-index: 0;
  margin: 0;
}

.service-close-image::after {
  content: "";
  background: rgba(0, 0, 0, 0.53);
}

.service-close-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-close-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(270px, 0.34fr);
  gap: clamp(50px, 12vw, 220px);
  align-items: end;
}

.service-close h2 {
  max-width: 650px;
  color: var(--white);
  font-size: clamp(56px, 6vw, 92px);
  line-height: 0.95;
}

.service-close p:not(.service-eyebrow) {
  max-width: 530px;
  margin: 28px 0 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.65;
}

.service-close-contacts {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.service-close-contacts a {
  display: grid;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.33);
  padding: 16px 0;
  color: var(--white);
  font-size: 17px;
}

.service-close-contacts span {
  color: var(--gold);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes serviceHeroImage {
  from { opacity: 0; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1100px) {
  .service-hero-copy h1 { font-size: clamp(52px, 6vw, 70px); }
  .service-index-list { overflow-x: auto; width: 100%; }
  .service-index-list a { min-width: 190px; }
  .service-intro-grid,
  .service-process-heading { grid-template-columns: 180px minmax(0, 1fr); }
  .service-intro-grid > div,
  .service-process-heading > p:not(.service-eyebrow) { grid-column: 2; }
  .service-story-grid { grid-template-columns: 92px minmax(0, 0.86fr) minmax(320px, 0.74fr); gap: 32px; }
  .service-story:nth-child(even) .service-story-copy { grid-column: 2; }
  .service-story:nth-child(even) .service-story-image { grid-column: 3; }
  .service-proof-grid { gap: 60px; }
}

@media (max-width: 820px) {
  .site-header { background: var(--white); }
  .service-hero { min-height: auto; padding-top: 64px; }
  .service-hero-image { position: relative; min-height: 500px; }
  .service-hero-image::after { background: rgba(0, 0, 0, 0.24); }
  .service-hero-inner { width: min(100% - 48px, 680px); margin-top: -118px; padding: 0 0 48px; }
  .service-hero-copy { width: 100%; padding: 38px; }
  .service-index-list { width: 100%; padding: 0 24px; }
  .service-index-list a:first-child { border-left: 1px solid rgba(0, 0, 0, 0.15); }
  .service-intro-grid,
  .service-process-heading,
  .service-proof-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-intro-grid > div,
  .service-process-heading > p:not(.service-eyebrow) { grid-column: auto; }
  .service-story-grid { grid-template-columns: 86px minmax(0, 1fr); min-height: 0; padding-top: 64px; padding-bottom: 64px; }
  .service-story-copy { grid-column: 2; }
  .service-story-image,
  .service-story:nth-child(even) .service-story-image { grid-column: 2; grid-row: auto; min-height: 390px; }
  .service-story:nth-child(even) .service-story-copy { grid-column: 2; grid-row: auto; }
  .service-process-line { grid-template-columns: repeat(3, 1fr); gap: 32px 0; }
  .service-process-line li:nth-child(3) { border-right: 1px solid rgba(0, 0, 0, 0.3); }
  .service-close { min-height: 0; padding: 80px 0; }
  .service-close-inner { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 540px) {
  .service-hero-image { min-height: 415px; }
  .service-hero-inner { width: min(100% - 36px, 480px); margin-top: -74px; padding-bottom: 36px; }
  .service-hero-copy { padding: 30px 24px; }
  .service-hero-copy h1 { font-size: 47px; line-height: 0.98; }
  .service-hero-copy > p:not(.service-eyebrow) { font-size: 15px; }
  .service-hero-actions { display: grid; gap: 18px; }
  .service-index-list { padding: 0 18px; }
  .service-index-list a { min-width: 175px; min-height: 146px; padding: 22px 16px; }
  .service-intro-grid h2,
  .service-process-heading h2,
  .service-proof h2 { font-size: 42px; }
  .service-story-grid { grid-template-columns: 1fr; gap: 26px; padding-top: 52px; padding-bottom: 52px; }
  .service-story-meta,
  .service-story-copy,
  .service-story-image,
  .service-story:nth-child(even) .service-story-copy,
  .service-story:nth-child(even) .service-story-image { grid-column: auto; }
  .service-story-meta { display: flex; align-items: center; gap: 12px; border-top: 0; padding-top: 0; }
  .service-story-meta p { margin-top: 0; }
  .service-story-outcome { font-size: 25px; }
  .service-story-copy h2 { font-size: 48px; }
  .service-story-copy h3 { font-size: 26px; }
  .service-story-copy ul { grid-template-columns: 1fr; }
  .service-story-image { min-height: 315px; }
  .service-process-line { grid-template-columns: 1fr 1fr; margin-top: 52px; }
  .service-process-line li { min-height: 92px; padding: 0 16px; font-size: 26px; }
  .service-process-line li:nth-child(3) { border-right: 0; }
  .service-process-line li:nth-child(even) { border-right: 1px solid rgba(0, 0, 0, 0.3); }
  .service-process-line li:last-child { border-right: 1px solid rgba(0, 0, 0, 0.3); }
  .service-close h2 { font-size: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  .service-hero-image img,
  .service-story-image img,
  .service-text-cta span,
  .service-arrow-link span {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* Text-led service chapters: all essential content remains visible. */
.service-story {
  --story-ink: var(--black);
  --story-muted: #514a43;
  --story-accent: var(--gold);
  background: #f8f5ef;
  color: var(--story-ink);
  transition: background-color 360ms var(--ease), color 360ms var(--ease);
}

.service-story.service-story-01 { --story-accent: #9a7652; --story-muted: #554b40; background: #f4f0e8; }
.service-story.service-story-02 { --story-ink: #ffffff; --story-muted: #f3e9de; --story-accent: #d7a873; background: #3a302a; }
.service-story.service-story-03 { --story-accent: #806954; --story-muted: #474039; background: #ded6ca; }
.service-story.service-story-04 { --story-ink: #ffffff; --story-muted: #f2ebe4; --story-accent: #d2b585; background: #514843; }
.service-story.service-story-05 { --story-accent: #9f815f; --story-muted: #4d4a43; background: #e7e0d5; }
.service-story.service-story-06 { --story-ink: #ffffff; --story-muted: #f1eee7; --story-accent: #c7ae7e; background: #282725; }

.service-story-grid {
  grid-template-columns: minmax(112px, 0.17fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 142px);
  min-height: 530px;
  max-width: 1080px;
}

.service-story-meta {
  border-top-color: currentColor;
}

.service-story-meta span,
.service-story-outcome {
  color: var(--story-accent);
}

.service-story-meta p {
  color: var(--story-muted);
}

.service-story-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(230px, 0.32fr);
  column-gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.service-story-copy h2,
.service-story-copy h3 {
  color: var(--story-ink);
}

.service-story-copy h2 {
  grid-column: 1 / -1;
  max-width: 780px;
  font-size: clamp(54px, 5vw, 82px);
}

.service-story-copy h3 {
  grid-column: 1;
  margin-top: 26px;
  color: var(--story-accent);
  font-size: 30px;
}

.service-story-copy > p:not(.service-story-outcome) {
  grid-column: 2;
  grid-row: 3 / span 2;
  margin-top: 28px;
  color: var(--story-muted);
}

.service-story-copy ul {
  grid-column: 1;
  grid-template-columns: 1fr;
  margin-top: 28px;
  margin-bottom: 30px;
}

.service-story-copy li {
  border-top-color: color-mix(in srgb, var(--story-ink) 30%, transparent);
  color: var(--story-muted);
}

.service-arrow-link {
  grid-column: 2;
  align-self: end;
  justify-self: start;
  margin-top: 30px;
  color: var(--story-ink);
}

.service-story:nth-child(even) .service-story-copy {
  grid-column: auto;
  grid-row: auto;
}

.service-story:hover {
  background-image: linear-gradient(90deg, color-mix(in srgb, var(--story-accent) 11%, transparent), transparent 62%);
}

.service-stories-featured .service-story-grid {
  grid-template-columns: minmax(112px, 0.17fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 142px);
  min-height: 0;
  max-width: 1080px;
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: clamp(56px, 6vw, 88px);
}

.service-stories-featured .service-story-copy {
  grid-column: 2;
}

.service-story-media,
.service-compact-card figure {
  margin: 0;
  overflow: hidden;
  background: var(--warm-grey);
}

.service-story-media {
  width: 100%;
  height: clamp(220px, 25vw, 390px);
  margin: 0;
}

.service-story-media img,
.service-compact-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.service-story-01 .service-story-media img {
  object-position: center 22%;
}

.service-story-media:hover img,
.service-compact-card:hover figure img {
  transform: scale(1.035);
}

.service-compact-services {
  padding: clamp(54px, 7vw, 110px) 0;
  background: #f7f4ee;
}

.service-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #f7f4ee;
}

.service-compact-card {
  display: grid;
  grid-template-rows: 1fr;
  min-height: 440px;
  background: #f7f4ee;
  color: #292724;
}

.service-compact-card-03 { background: #d8d0c4; }
.service-compact-card-04 { background: #514843; color: #fff; }
.service-compact-card-05 { background: #eee7dc; }
.service-compact-card-06 { background: #282725; color: #fff; }

.service-compact-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
}

.service-compact-card > div > span {
  color: #af8c68;
  font-family: var(--title);
  font-size: 29px;
}

.service-compact-card > div > p:first-of-type {
  margin-top: 8px;
  color: #60584f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-compact-card-04 > div > p:first-of-type,
.service-compact-card-06 > div > p:first-of-type {
  color: #e8ded2;
}

.service-compact-card h2 {
  margin-top: 30px;
  font-size: clamp(32px, 2.55vw, 43px);
  line-height: 0.98;
}

.service-compact-card > div > p:last-of-type {
  margin-top: 22px;
  color: #5b544c;
  line-height: 1.55;
}

.service-compact-card-04 > div > p:last-of-type,
.service-compact-card-06 > div > p:last-of-type {
  color: #f2ebe4;
}

.service-compact-card .service-arrow-link {
  grid-column: auto;
  margin-top: auto;
  color: #292724;
}

.service-compact-card-04 .service-arrow-link,
.service-compact-card-06 .service-arrow-link {
  color: #fff;
}

.service-image-wall {
  background: #f7f6f2;
}

.service-image-wall-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 0.84fr) minmax(240px, 0.38fr);
  gap: clamp(30px, 5vw, 90px);
  align-items: start;
  margin-bottom: 58px;
}

.service-image-wall-heading .service-eyebrow {
  margin-top: 10px;
}

.service-image-wall-heading h2 {
  max-width: 740px;
  font-size: clamp(42px, 4.2vw, 65px);
  line-height: 1.02;
}

.service-image-wall-heading > div {
  border-top: 1px solid var(--black);
  padding-top: 20px;
  color: #45413b;
  line-height: 1.6;
}

.service-image-wall-heading .service-arrow-link {
  margin-top: 22px;
  color: var(--black);
}

.service-image-wall-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 146px;
  gap: 12px;
}

.service-image-wall-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--warm-grey);
}

.service-image-wall-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.service-image-wall-grid figure:hover img {
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.035);
}

.service-image-wall-primary { grid-column: 1 / 8; grid-row: 1 / 4; }
.service-image-wall-pod { grid-column: 8 / 10; grid-row: 1 / 2; }
.service-image-wall-lounge { grid-column: 10 / 13; grid-row: 1 / 2; }
.service-image-wall-screen { grid-column: 8 / 11; grid-row: 2 / 3; }
.service-image-wall-workspace { grid-column: 8 / 11; grid-row: 3 / 4; }
.service-image-wall-detail { grid-column: 11 / 13; grid-row: 2 / 4; }

.service-intro-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 48px);
  row-gap: clamp(30px, 4vw, 54px);
  align-items: start;
}

.service-intro-grid .service-eyebrow {
  grid-column: 1 / 3;
  margin: 12px 0 0;
}

.service-intro-grid h2 {
  grid-column: 3 / 9;
  max-width: 760px;
}

.service-intro-grid > div {
  grid-column: 9 / 13;
  margin-top: 7px;
}

.service-intro-grid > .service-intro-photo-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(112px, 10vw, 156px);
  gap: 12px;
  width: 100%;
  margin: 0;
}

.service-intro-photo-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--soft-grey);
}

.service-intro-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.service-intro-photo-grid figure:hover img {
  transform: scale(1.025);
}

.service-intro-photo-primary { grid-column: 1 / 8; grid-row: 1 / 4; }
.service-intro-photo-meeting { grid-column: 8 / 13; grid-row: 1 / 2; }
.service-intro-photo-boardroom { grid-column: 8 / 10; grid-row: 2 / 4; }
.service-intro-photo-feature { grid-column: 10 / 13; grid-row: 2 / 3; }
.service-intro-photo-arrival { grid-column: 10 / 13; grid-row: 3 / 4; }

@media (max-width: 1100px) {
  .service-stories-featured .service-story-grid { grid-template-columns: 82px minmax(0, 1fr); }
  .service-stories-featured .service-story-copy { grid-column: 2; }
  .service-story-media { min-height: 0; }
  .service-compact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .service-compact-card { min-height: 400px; }
  .service-story-grid { grid-template-columns: 92px minmax(0, 1fr); }
  .service-intro-grid { grid-template-columns: 180px minmax(0, 1fr); }
  .service-intro-grid .service-eyebrow { grid-column: 1; }
  .service-intro-grid h2 { grid-column: 2; }
  .service-intro-grid > div { grid-column: 2; }
  .service-intro-grid > .service-intro-photo-grid { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .service-compact-grid { grid-template-columns: 1fr; gap: 12px; background: transparent; }
  .service-compact-card { grid-template-columns: 1fr; grid-template-rows: 1fr; min-height: 0; }
  .service-compact-card > div { padding: 28px; }
  .service-compact-card h2 { margin-top: 20px; }
  .service-story-grid { grid-template-columns: 86px minmax(0, 1fr); }
  .service-story-copy { grid-template-columns: 1fr; gap: 0; }
  .service-story-copy h3,
  .service-story-copy > p:not(.service-story-outcome),
  .service-story-copy ul,
  .service-arrow-link { grid-column: auto; grid-row: auto; }
  .service-story-copy > p:not(.service-story-outcome) { margin-top: 22px; }
  .service-arrow-link { margin-top: 6px; }
  .service-intro-grid > .service-intro-photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 180px; grid-column: auto; width: 100%; margin-top: 12px; }
  .service-intro-photo-grid figure,
  .service-intro-photo-primary,
  .service-intro-photo-meeting,
  .service-intro-photo-boardroom,
  .service-intro-photo-arrival,
  .service-intro-photo-feature { grid-column: auto; grid-row: auto; }
  .service-intro-photo-primary { grid-column: span 2; grid-row: span 2; }
  .service-intro-photo-arrival { grid-row: span 2; }
  .service-image-wall-heading { grid-template-columns: 1fr; gap: 20px; }
  .service-image-wall-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 180px; }
  .service-image-wall-grid figure,
  .service-image-wall-primary,
  .service-image-wall-pod,
  .service-image-wall-lounge,
  .service-image-wall-screen,
  .service-image-wall-workspace,
  .service-image-wall-detail { grid-column: auto; grid-row: auto; }
  .service-image-wall-primary { grid-column: span 2; grid-row: span 2; }
  .service-image-wall-detail { grid-row: span 2; }
}

@media (max-width: 540px) {
  .service-stories-featured .service-story-grid { grid-template-columns: 1fr; }
  .service-stories-featured .service-story-copy { grid-column: auto; }
  .service-story-media { min-height: 0; height: 240px; }
  .service-compact-card { grid-template-columns: 1fr; }
  .service-story-grid { grid-template-columns: 1fr; min-height: 0; }
  .service-story-copy h2 { font-size: 50px; }
  .service-story-copy h3 { font-size: 27px; }
}

/* Final mobile pass: the service page reads as a deliberate single-column story. */
@media (max-width: 700px) {
  .service-redesign .section-pad {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .service-hero-inner {
    width: min(100% - 36px, 540px);
  }

  .service-hero-copy h1 {
    font-size: clamp(42px, 12vw, 52px);
    line-height: 1;
  }

  .service-index-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 18px;
  }

  .service-index-list a {
    min-width: 172px;
    scroll-snap-align: start;
  }

  .service-intro-grid,
  .service-image-wall-heading,
  .service-process-heading,
  .service-proof-grid,
  .service-close-inner {
    display: block;
  }

  .service-intro-grid h2,
  .service-image-wall-heading h2,
  .service-process-heading h2,
  .service-proof h2 {
    max-width: 100%;
    margin-top: 16px;
    font-size: clamp(38px, 10.5vw, 46px);
    line-height: 1.05;
  }

  .service-intro-grid > div,
  .service-image-wall-heading > div,
  .service-process-heading > p:not(.service-eyebrow) {
    margin-top: 28px;
  }

  .service-intro-grid > .service-intro-photo-grid {
    display: block;
    width: 100%;
    margin: 28px 0 0;
  }

  .service-intro-photo-grid figure { margin-top: 8px; }
  .service-intro-photo-grid figure:first-child { margin-top: 0; }
  .service-intro-photo-grid img { aspect-ratio: 16 / 10; }

  .service-image-wall-heading { margin-bottom: 34px; }
  .service-image-wall-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; gap: 8px; }
  .service-image-wall-primary { grid-column: 1 / -1; grid-row: span 2; }
  .service-image-wall-detail { grid-row: auto; }

  .service-story-grid,
  .service-story-copy {
    display: block;
    min-height: 0;
  }

  .service-story-grid {
    padding-top: 50px;
    padding-bottom: 54px;
  }

  .service-story-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 0;
    padding-top: 0;
  }

  .service-story-meta p {
    margin: 0;
  }

  .service-story-copy {
    margin-top: 28px;
  }

  .service-story-outcome {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.18;
  }

  .service-story-copy h2 {
    font-size: clamp(42px, 11.5vw, 52px);
    line-height: 1;
  }

  .service-story-copy h3 {
    margin-top: 20px;
    font-size: 25px;
    line-height: 1.15;
  }

  .service-story-copy > p:not(.service-story-outcome) {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.65;
  }

  .service-story-copy ul {
    display: block;
    margin: 26px 0 22px;
  }

  .service-story-copy li {
    padding: 11px 0;
  }

  .service-arrow-link {
    display: inline-flex;
    margin-top: 0;
  }

  .service-process-heading > p:not(.service-eyebrow) {
    max-width: 100%;
  }

  .service-process-line {
    display: block;
    margin-top: 42px;
  }

  .service-process-line li,
  .service-process-line li:nth-child(3),
  .service-process-line li:nth-child(even),
  .service-process-line li:last-child {
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    min-height: 74px;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.25);
    padding: 15px 0;
    font-size: 28px;
  }

  .service-process-line li:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  }

  .service-process-line li::after {
    display: none;
  }

  .service-process-line span {
    font-size: 12px;
  }

  .service-proof-points {
    margin-top: 34px;
  }

  .service-proof-points article {
    grid-template-columns: 46px 1fr;
    column-gap: 14px;
  }

  .service-close {
    padding: 66px 0;
  }

  .service-close h2 {
    font-size: clamp(48px, 13vw, 62px);
  }

  .service-close-contacts {
    margin-top: 42px;
  }
}

/* Shared typographic scale for the six MJPM service pages. A quieter display
   scale gives the photography and content grids more room to breathe. */
.office-design-hero,
.premium-service-hero { min-height: min(740px, 100svh); }

.office-design-hero h1,
.premium-service-hero h1 {
  max-width: 680px;
  font-size: clamp(48px, 4.7vw, 72px);
  line-height: .99;
}

.office-design-intro h2,
.office-design-section-heading h2,
.office-design-section-head h2,
.office-design-assurance h2,
.office-design-process h2,
.office-design-faq h2,
.office-design-close h2,
.premium-service-intro h2,
.premium-service-section-head h2,
.premium-service-assurance h2,
.premium-service-process h2,
.premium-service-faq h2,
.premium-service-close h2 {
  font-size: clamp(38px, 3.65vw, 56px);
  line-height: 1.01;
}

.office-design-section-heading h2,
.office-design-section-head h2,
.premium-service-section-head h2 { max-width: 650px; }

.office-design-hero-inner,
.premium-service-hero-inner { padding-bottom: 72px; }

@media (max-width: 560px) {
  .office-design-hero h1,
  .premium-service-hero h1 { font-size: clamp(42px, 11.2vw, 56px); }

  .office-design-intro h2,
  .office-design-section-heading h2,
  .office-design-section-head h2,
  .office-design-assurance h2,
  .office-design-process h2,
  .office-design-faq h2,
  .office-design-close h2,
  .premium-service-intro h2,
  .premium-service-section-head h2,
  .premium-service-assurance h2,
  .premium-service-process h2,
  .premium-service-faq h2,
  .premium-service-close h2 { font-size: clamp(34px, 9.2vw, 44px); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
