:root {
  --pc-slate: #26313D;
  --pc-ink: #121A23;
  --pc-warm: #A47864;
  --pc-light: #E7E9E4;
  --pc-cloud: #F5F6F3;
  --pc-line: #DFE2DC;
  --pc-stone: #D6D8D3;
  --pc-white: #FFFFFF;
  --pc-muted: #5E6872;
  --font-display: "Prata", Georgia, serif;
  --font-body: "Montserrat", Arial, sans-serif;
  --container: 1280px;
  --gutter: 40px;
  --header: 84px;
  --section-y: clamp(54px, 5vw, 76px);
  --section-y-compact: clamp(38px, 3.6vw, 52px);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow: 0 24px 62px rgba(18, 26, 35, .10);
  --shadow-sm: 0 12px 30px rgba(18, 26, 35, .07);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 18px)
}

[id] {
  scroll-margin-top: calc(var(--header) + 18px)
}

body {
  margin: 0;
  background: var(--pc-white);
  color: var(--pc-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden
}

body.nav-open {
  overflow: hidden
}

figure {
  margin: 0
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px
}

button,
input,
select,
textarea {
  font: inherit
}

button {
  cursor: pointer
}

::selection {
  background: var(--pc-light);
  color: var(--pc-ink)
}

:focus-visible {
  outline: 3px solid var(--pc-warm);
  outline-offset: 3px
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  background: var(--pc-ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none
}

.skip-link:focus {
  top: 16px
}

.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto
}

.section {
  padding-block: var(--section-y);
  position: relative
}

.section.compact {
  padding-block: var(--section-y-compact)
}

.section.light {
  background: var(--pc-light)
}

.section.cloud {
  background: var(--pc-cloud)
}

.section.dark {
  background: var(--pc-slate);
  color: var(--pc-white)
}

.section.ink {
  background: var(--pc-ink);
  color: var(--pc-white)
}

.rule {
  height: 1px;
  background: var(--pc-line)
}

/* Typography */
.display,
h1,
h2.major,
.statement {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.02em;
  margin: 0;
  text-wrap: balance
}

h1 {
  font-size: clamp(3.35rem, 4.45vw, 4.4rem);
  line-height: .97;
  max-width: 760px
}

h2.major {
  font-size: clamp(2.55rem, 3.25vw, 3.2rem);
  line-height: 1.01;
  max-width: 760px
}

h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-body);
  color: inherit;
  margin: 0 0 .7rem;
  line-height: 1.15;
  letter-spacing: -.025em
}

h2:not(.major) {
  font-size: clamp(1.9rem, 2.65vw, 2.6rem);
  font-weight: 700
}

h3 {
  font-size: clamp(1.25rem, 1.55vw, 1.55rem);
  font-weight: 700
}

h4 {
  font-size: 1.05rem;
  font-weight: 700
}

p {
  margin: 0 0 1rem
}

.lead {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.65;
  color: var(--pc-slate);
  max-width: 700px
}

.dark .lead,
.ink .lead {
  color: #E4E7E3
}

.muted {
  color: var(--pc-muted)
}

.dark .muted,
.ink .muted {
  color: #C9D0D6
}

.small {
  font-size: .875rem
}

.tiny {
  font-size: .75rem
}

.kicker {
  font-weight: 700;
  color: var(--pc-slate);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem)
}

.statement {
  font-size: clamp(2.5rem, 3.8vw, 4rem);
  line-height: 1.01;
  max-width: 980px
}

.statement em {
  font-style: normal;
  color: var(--pc-warm)
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 13px;
  font-size: .71rem;
  line-height: 1.2;
  letter-spacing: .155em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--pc-slate)
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--pc-warm);
  flex: 0 0 auto
}

.dark .eyebrow,
.ink .eyebrow {
  color: #fff
}

.stack>*+* {
  margin-top: 18px
}

.stack-lg>*+* {
  margin-top: 30px
}

/* Layout utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px)
}

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

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

.split {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center
}

.split.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr)
}

.split.reverse>.media {
  order: -1
}

.section-head {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-bottom: clamp(30px, 3.8vw, 48px)
}

.section-head>div:last-child {
  min-width: 0
}

.section-head h2.major {
  max-width: 720px
}

.section-no {
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .14em;
  color: var(--pc-muted);
  padding-top: 7px
}

.dark .section-no,
.ink .section-no {
  color: #BAC1C7
}

/* Buttons & links */
.btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: .84rem;
  line-height: 1.15;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease)
}

.btn:hover {
  transform: translateY(-1px)
}

.btn.primary {
  background: var(--pc-slate);
  color: #fff
}

.btn.primary:hover {
  background: var(--pc-ink);
  box-shadow: var(--shadow-sm)
}

.btn.secondary {
  background: transparent;
  border-color: var(--pc-slate);
  color: var(--pc-slate)
}

.btn.secondary:hover {
  background: var(--pc-cloud)
}

.dark .btn.secondary,
.ink .btn.secondary,
.cta-card .btn.secondary {
  border-color: #fff;
  color: #fff
}

.btn.warm {
  background: var(--pc-warm);
  color: #fff
}

.btn.warm:hover {
  background: #956B59
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px
}

.text-link span {
  transition: transform .18s var(--ease)
}

.text-link:hover span {
  transform: translateX(3px)
}

.tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid var(--pc-line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .04em;
  background: #fff;
  color: var(--pc-slate)
}

.dark .tag,
.ink .tag {
  background: transparent;
  border-color: rgba(255, 255, 255, .25);
  color: #fff
}

/* Cards */
.card {
  border: 1px solid var(--pc-line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: clamp(22px, 2.15vw, 30px);
  position: relative;
  overflow: hidden
}

.card.soft {
  background: var(--pc-cloud)
}

.card.light {
  background: #EEF0EC
}

.card.dark-card {
  background: var(--pc-slate);
  color: #fff;
  border-color: var(--pc-slate)
}

.card.dark-card p {
  color: #D8DDE0
}

.card-num {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--pc-muted);
  margin-bottom: 20px
}

.card p:last-child {
  margin-bottom: 0
}

.card:has(.text-link) {
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease)
}

.card:has(.text-link):hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: #CDD1CC
}

.icon-box {
  width: 48px;
  height: 48px;
  border: 1px solid var(--pc-line);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--pc-slate)
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round
}

/* Header & desktop mega menu */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223, 226, 220, .9);
  transition: box-shadow .2s var(--ease)
}

.site-header.scrolled {
  box-shadow: 0 10px 28px rgba(18, 26, 35, .06)
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
  flex: 0 0 auto
}

.brand img {
  width: auto;
  height: 64px;
  max-width: 136px;
  object-fit: contain
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto
}

.desktop-nav>a,
.menu-trigger {
  font-size: .8rem;
  font-weight: 650;
  color: var(--pc-slate);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 12px 0;
  white-space: nowrap
}

.desktop-nav>a:hover,
.menu-trigger:hover {
  color: var(--pc-ink)
}

.header-cta {
  margin-left: 6px;
  white-space: nowrap
}

.menu-wrap {
  position: relative;
  display: flex;
  align-items: center
}

.menu-wrap::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -14px;
  right: -14px;
  height: 18px
}

.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px
}

.menu-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transform-origin: center;
  transition: transform .18s var(--ease)
}

.menu-wrap.open .menu-trigger::after,
.menu-wrap:hover .menu-trigger::after,
.menu-wrap:focus-within .menu-trigger::after {
  transform: rotate(225deg) translate(-1px, -1px)
}

.mega {
  position: absolute;
  top: calc(100% + 12px);
  left: -180px;
  transform: translateY(-7px);
  width: min(800px, calc(100vw - 80px));
  background: #fff;
  border: 1px solid var(--pc-line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s
}

.menu-wrap:hover .mega,
.menu-wrap.open .mega,
.menu-wrap:focus-within .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0)
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px
}

.mega a {
  display: block;
  padding: 12px 13px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .16s var(--ease), border-color .16s var(--ease), transform .16s var(--ease)
}

.mega a:hover {
  background: var(--pc-cloud);
  border-color: var(--pc-line);
  transform: translateX(2px)
}

.mega strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: .84rem
}

.mega strong::after {
  content: "↗";
  font-weight: 500;
  color: var(--pc-warm)
}

.mega span {
  display: block;
  font-size: .72rem;
  line-height: 1.45;
  color: var(--pc-muted);
  margin-top: 3px
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--pc-line);
  border-radius: 11px;
  background: #fff;
  align-items: center;
  justify-content: center
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--pc-slate);
  position: relative;
  transition: .2s
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: "";
  position: absolute;
  left: 0
}

.mobile-toggle span::before {
  top: -6px
}

.mobile-toggle span::after {
  top: 6px
}

.mobile-toggle[aria-expanded="true"] span {
  background: transparent
}

.mobile-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg)
}

.mobile-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg)
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: var(--header) 0 0;
  background: #fff;
  z-index: 99;
  overflow: auto;
  padding: 16px 0 40px
}

.mobile-panel.open {
  display: block
}

.mobile-nav {
  display: grid;
  gap: 0
}

.mobile-nav a,
.mobile-nav button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--pc-line);
  background: #fff;
  color: var(--pc-slate);
  text-align: left;
  text-decoration: none;
  font-weight: 700
}

.mobile-nav button span {
  font-size: 1.15rem;
  font-weight: 400;
  transition: transform .18s var(--ease)
}

.mobile-nav button[aria-expanded="true"] span {
  transform: rotate(45deg)
}

.mobile-sub {
  display: grid;
  background: var(--pc-cloud);
  padding: 4px 18px 10px;
  margin-bottom: 8px
}

.mobile-sub a {
  font-weight: 600;
  font-size: .88rem;
  background: transparent;
  padding: 11px 0
}

.mobile-panel .btn {
  margin-top: 22px;
  width: 100%
}

/* Images */
.photo {
  position: relative;
  overflow: hidden;
  background: var(--pc-light);
  margin: 0
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease)
}

.photo:hover img {
  transform: scale(1.018)
}

.photo.round {
  border-radius: var(--radius-lg)
}

.photo.arch {
  border-radius: 3px 34px 3px 34px
}

.photo.tall {
  aspect-ratio: 4/5
}

.photo.wide {
  aspect-ratio: 16/9
}

.photo.square {
  aspect-ratio: 1
}

.photo .image-note {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(18, 26, 35, .78);
  color: #fff;
  padding: 7px 9px;
  border-radius: 7px;
  font-size: .62rem;
  line-height: 1.35;
  max-width: 240px
}

.image-note,
.hero-caption {
  display: none
}

.page-projects .image-note {
  display: block
}

.split .photo.tall {
  height: clamp(420px, 37vw, 540px);
  aspect-ratio: auto
}

/* Home hero */
.home-hero {
  min-height: calc(100svh - var(--header));
  display: flex;
  align-items: center;
  background: var(--pc-cloud);
  border-bottom: 1px solid var(--pc-line);
  overflow: hidden
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(38px, 4.5vw, 64px);
  align-items: center;
  padding-block: clamp(30px, 4vh, 46px)
}

.home-hero h1 {
  font-size: clamp(3.8rem, 5vw, 5.05rem);
  line-height: .94;
  max-width: 610px
}

.hero-copy {
  min-width: 0
}

.hero-copy .lead {
  max-width: 590px;
  margin-top: 20px
}

.hero-copy .btns {
  margin-top: 22px
}

.hero-note {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-top: 25px;
  padding-top: 16px;
  border-top: 1px solid var(--pc-line);
  max-width: 555px
}

.hero-note img {
  flex: 0 0 auto
}

.hero-note strong {
  font-size: .83rem
}

.hero-note p {
  font-size: .77rem;
  color: var(--pc-muted);
  margin: 2px 0 0
}

.hero-media {
  height: min(64vh, 570px);
  min-height: 430px;
  position: relative
}

.hero-media .photo {
  height: 100%;
  border-radius: 20px 3px 20px 3px
}

.hero-media::after {
  content: "";
  position: absolute;
  left: -16px;
  bottom: 24px;
  width: 82px;
  height: 82px;
  border-left: 1px solid var(--pc-warm);
  border-bottom: 1px solid var(--pc-warm);
  pointer-events: none
}

/* Inner page hero */
.page-hero {
  padding-block: clamp(34px, 4.2vw, 54px);
  background: var(--pc-cloud);
  border-bottom: 1px solid var(--pc-line);
  overflow: clip
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(40px, 5vw, 70px);
  align-items: center;
  min-height: 500px
}

.page-hero-grid>div:first-child {
  min-width: 0
}

.page-hero h1 {
  font-size: clamp(3.05rem, 3.95vw, 3.95rem);
  max-width: 650px;
  line-height: .98
}

.page-hero .lead {
  margin-top: 18px;
  max-width: 610px
}

.page-hero .btns {
  margin-top: 22px
}

.page-hero .media {
  height: 460px;
  min-width: 0;
  overflow: hidden;
  border-radius: 3px 34px 3px 34px
}

.page-hero .media .photo {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  margin: 0
}

.page-hero>.shell:not(.page-hero-grid) {
  min-height: 260px;
  display: flex;
  align-items: center
}

.page-hero>.shell:not(.page-hero-grid)>div {
  max-width: 760px !important
}

.page-hero>.shell:not(.page-hero-grid) h1 {
  max-width: 720px
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 11px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--pc-muted);
  margin-bottom: 21px
}

.breadcrumbs a {
  text-decoration: none
}

.breadcrumbs .sep {
  color: #9BA3A9
}

/* Homepage route cards */
.intent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--pc-line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff
}

.intent-card {
  padding: clamp(26px, 3vw, 40px);
  text-decoration: none;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .18s var(--ease)
}

.intent-card+.intent-card {
  border-left: 1px solid var(--pc-line)
}

.intent-card:hover {
  background: var(--pc-cloud)
}

.intent-card .arrow {
  font-size: 1.55rem;
  align-self: flex-end;
  color: var(--pc-warm)
}

.intent-card h3 {
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  max-width: 430px
}

/* Four service worlds */
.worlds {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px
}

.world {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease)
}

.world:first-child {
  min-height: 250px;
  background: var(--pc-slate);
  color: #fff
}

.world:nth-child(3) {
  background: var(--pc-light)
}

.world a {
  position: absolute;
  inset: 0;
  z-index: 2
}

.world .text-link {
  position: relative;
  z-index: 3;
  pointer-events: none
}

.world:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm)
}

.world h3 {
  max-width: 470px
}

.world.dark-card p {
  color: #D4D9DD
}

/* Coordination map */
.coord-map {
  display: grid;
  grid-template-columns: 1fr 1.16fr 1fr;
  align-items: center;
  gap: 30px;
  min-height: 390px
}

.coord-center {
  display: grid;
  place-items: center;
  position: relative
}

.coord-core {
  width: min(100%, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--pc-slate);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2
}

.coord-core::before,
.coord-core::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid var(--pc-line);
  border-radius: 50%;
  z-index: -1
}

.coord-core::after {
  inset: -38px;
  border-color: #E7E9E4
}

.coord-side {
  display: grid;
  gap: 12px
}

.coord-chip {
  border-top: 1px solid var(--pc-line);
  padding: 12px 3px;
  font-weight: 650;
  font-size: .82rem
}

.coord-side.right {
  text-align: right
}

/* Showroom image strip */
.material-strip {
  display: grid;
  grid-template-columns: 1.25fr .85fr .85fr 1.05fr;
  gap: 10px;
  height: 370px
}

.material-strip .photo {
  height: 100%;
  border-radius: 12px
}

.material-strip .photo:first-child {
  border-radius: 3px 24px 3px 24px
}

.material-strip .photo:last-child {
  border-radius: 24px 3px 24px 3px
}

.showroom-copy {
  max-width: 650px;
  margin-top: 28px
}

.showroom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 24px
}

.showroom-actions span {
  font-weight: 800;
  font-size: .82rem
}

/* Process / location */
.process-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--pc-line)
}

.process-step {
  padding: 24px 18px 0 0;
  position: relative
}

.process-step::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pc-warm)
}

.process-step .n {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--pc-muted);
  margin-bottom: 13px
}

.process-step h3 {
  font-size: 1.08rem
}

.process-step p {
  font-size: .82rem;
  color: var(--pc-muted)
}

.area-band {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 44px;
  align-items: end
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.area-list span {
  padding: 7px 10px;
  border: 1px solid var(--pc-line);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 650;
  background: #fff;
  color: var(--pc-slate)
}

.dark .area-list span,
.ink .area-list span {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .24);
  color: #fff
}

/* Service-page facts */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible
}

.fact {
  position: relative;
  background: #fff;
  border: 1px solid var(--pc-line);
  border-radius: 14px;
  padding: 26px 25px;
  min-height: 190px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease)
}

.fact::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  width: 42px;
  height: 2px;
  background: var(--pc-warm)
}

.fact:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: #CDD1CC
}

.fact h3 {
  font-size: 1.12rem;
  margin-top: 10px
}

.fact p {
  font-size: .88rem;
  line-height: 1.62;
  color: var(--pc-muted)
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--pc-line)
}

.scope-item {
  padding: 19px 20px 19px 0;
  border-bottom: 1px solid var(--pc-line);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px
}

.scope-item:nth-child(odd) {
  padding-right: 28px
}

.scope-item:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--pc-line)
}

.scope-item .num {
  font-size: .69rem;
  font-weight: 800;
  color: var(--pc-muted);
  letter-spacing: .12em
}

.scope-item h3 {
  font-size: 1.08rem
}

.scope-item p {
  margin: 4px 0 0;
  color: var(--pc-muted);
  font-size: .84rem
}

.sticky-story {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start
}

.sticky-copy {
  position: sticky;
  top: calc(var(--header) + 28px)
}

.story-steps {
  display: grid;
  gap: 12px
}

.story-step {
  padding: 22px 23px;
  border: 1px solid var(--pc-line);
  border-radius: 14px;
  background: #fff
}

.story-step .num {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--pc-muted);
  margin-bottom: 11px
}

.story-step p {
  color: var(--pc-muted);
  margin: 0;
  font-size: .86rem
}

.overseas-path {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center
}

.scenario {
  border-left: 1px solid rgba(255, 255, 255, .25);
  padding-left: 28px;
  display: grid;
  gap: 18px
}

.scenario-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px
}

.scenario-row .dot {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .68rem
}

.scenario-row p {
  color: #D5DBDE;
  margin: 4px 0 0;
  font-size: .86rem
}

.trade-note {
  border-left: 2px solid var(--pc-warm);
  padding: 14px 17px;
  background: var(--pc-light);
  font-size: .8rem;
  color: var(--pc-slate);
  border-radius: 0 8px 8px 0
}

/* Bushey service cards */
.page-areas-bushey .section.light {
  background: var(--pc-cloud)
}

.page-areas-bushey .section.light .grid-3 {
  gap: 16px
}

.page-areas-bushey .section.light .grid-3>.card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px 28px 25px;
  box-shadow: 0 1px 0 rgba(18, 26, 35, .02);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease)
}

.page-areas-bushey .section.light .grid-3>.card::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--pc-warm);
  margin-bottom: 22px
}

.page-areas-bushey .section.light .grid-3>.card h3 {
  font-size: 1.28rem;
  max-width: 320px
}

.page-areas-bushey .section.light .grid-3>.card p {
  font-size: .88rem;
  line-height: 1.62
}

.page-areas-bushey .section.light .grid-3>.card .text-link {
  margin-top: auto;
  padding-top: 14px
}

.page-areas-bushey .section.light .grid-3>.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: #CBD0CA
}

.page-areas-bushey .section.light .grid-3>.card.dark-card::before {
  background: #fff
}

/* Projects */
.project-feature {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items: center
}

.project-meta {
  border-top: 1px solid var(--pc-line);
  padding-top: 20px
}

.project-meta dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 0
}

.project-meta dt {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pc-muted)
}

.project-meta dd {
  margin: 3px 0 0;
  font-weight: 600
}

.placeholder-box {
  border: 1px solid var(--pc-line);
  border-radius: 14px;
  padding: 24px;
  background: #fff
}

.placeholder-box strong {
  display: block;
  margin-bottom: 8px
}

.project-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.project-slot {
  min-height: 220px;
  border: 1px solid var(--pc-line);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--pc-cloud)
}

.project-slot .slot-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  color: var(--pc-muted)
}

/* FAQ */
.faq {
  border-top: 1px solid var(--pc-line)
}

.faq details {
  border-bottom: 1px solid var(--pc-line);
  padding: 0
}

.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  font-weight: 700;
  cursor: pointer
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq summary::after {
  content: "+";
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1;
  color: var(--pc-warm)
}

.faq details[open] summary::after {
  content: "–"
}

.faq .answer {
  padding: 0 42px 21px 0;
  color: var(--pc-muted);
  max-width: 850px
}

.dark .faq,
.dark .faq details,
.ink .faq,
.ink .faq details {
  border-color: rgba(255, 255, 255, .18)
}

.dark .faq .answer,
.ink .faq .answer {
  color: #D5DBDE
}

/* CTA */
.cta-card {
  border-radius: 20px;
  padding: clamp(30px, 4vw, 48px);
  background: var(--pc-slate);
  color: #fff;
  position: relative;
  overflow: hidden
}

.cta-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  right: -70px;
  top: -90px
}

.cta-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center
}

.cta-editorial .statement {
  font-size: clamp(2.3rem, 3.35vw, 3.45rem);
  max-width: 800px
}

.cta-card .btn {
  position: relative;
  z-index: 1
}

.cta-actions {
  justify-content: flex-end;
  align-self: end
}

/* Forms */
.form-shell {
  display: grid;
  grid-template-columns: minmax(290px, .72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 5vw, 66px);
  align-items: start
}

.form-panel {
  border: 1px solid var(--pc-line);
  border-radius: 18px;
  padding: clamp(26px, 3vw, 38px);
  background: #fff;
  box-shadow: 0 14px 42px rgba(18, 26, 35, .035)
}

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

.field {
  display: grid;
  gap: 7px
}

.field.full {
  grid-column: 1/-1
}

.field label,
.field legend {
  font-size: .72rem;
  font-weight: 750;
  color: var(--pc-slate)
}

.field input,
.field select,
.field textarea {
  /* width: 100%;
  min-height: 48px; */
  border: 1px solid #C9CECA;
  border-radius: 9px;
  padding: 11px 12px;
  background: #fff;
  color: var(--pc-ink);
  outline: 0;
  font-size: .9rem
}

.field textarea {
  min-height: 132px;
  resize: vertical
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--pc-slate);
  box-shadow: 0 0 0 3px var(--pc-light)
}

.field .help {
  font-size: .69rem;
  color: var(--pc-muted)
}

.field input[type="file"] {
  padding: 8px
}

.field input[type="file"]::file-selector-button {
  border: 0;
  border-radius: 7px;
  background: var(--pc-light);
  color: var(--pc-slate);
  font: 700 .78rem var(--font-body);
  padding: 8px 11px;
  margin-right: 10px;
  cursor: pointer
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.choice {
  position: relative
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.choice label {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--pc-line);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer
}

.choice input:checked+label {
  background: var(--pc-slate);
  color: #fff;
  border-color: var(--pc-slate)
}

.form-status {
  display: none;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: .86rem
}

.form-status.show {
  display: block
}

.form-status.success {
  background: #E8F2EB;
  color: #184B2C
}

.form-status.error {
  background: #F6E9E5;
  color: #7A3328
}

.form-status.info {
  background: var(--pc-light);
  color: var(--pc-slate)
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start
}

.consent input {
  margin-top: 5px
}

.consent label {
  font-size: .76rem;
  color: var(--pc-muted)
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important
}

/* Footer */
.site-footer {
  background: var(--pc-ink);
  color: #fff;
  padding: 48px 0 22px
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 30px;
  padding-bottom: 34px
}

.footer-brand img {
  width: auto;
  height: 76px;
  max-width: 150px;
  margin-bottom: 16px
}

.footer-brand p {
  max-width: 350px;
  color: #C8CED3;
  font-size: .82rem
}

.footer-col h4 {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #D7DCDD;
  margin-bottom: 14px
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #C8CED3;
  font-size: .78rem;
  padding: 5px 0
}

.footer-col a:hover {
  color: #fff
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .72rem;
  color: #AEB7BE
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.footer-bottom a {
  text-decoration: none
}

/* Legal / 404 */
.legal {
  max-width: 850px
}

.legal h2 {
  margin-top: 36px;
  font-size: 1.4rem
}

.legal ul {
  padding-left: 22px
}

.legal-note {
  border-left: 2px solid var(--pc-warm);
  background: var(--pc-light);
  padding: 18px;
  margin: 22px 0;
  color: var(--pc-slate)
}

.not-found {
  min-height: calc(100svh - var(--header));
  display: grid;
  place-items: center;
  background: var(--pc-cloud);
  padding: 50px 0
}

.not-found .box {
  max-width: 900px
}

.not-found .code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 13rem);
  line-height: .8;
  color: var(--pc-warm)
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .48s var(--ease), transform .48s var(--ease)
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }

  .photo img,
  .btn,
  .text-link span,
  .card,
  .world {
    transition: none
  }
}

@media(max-width:1180px) {
  :root {
    --gutter: 28px;
    --header: 80px
  }

  .brand img {
    height: 60px;
    max-width: 124px
  }

  .desktop-nav {
    gap: 18px
  }

  .desktop-nav>a,
  .menu-trigger {
    font-size: .76rem
  }

  .site-header .btn {
    padding-inline: 14px;
    font-size: .78rem
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr);
    gap: 34px
  }

  .page-hero .media {
    height: 430px
  }
}

@media(max-width:1050px) {
  :root {
    --header: 74px;
    --gutter: 24px
  }

  .desktop-nav,
  .header-cta {
    display: none
  }

  .mobile-toggle {
    display: inline-flex
  }

  .brand img {
    height: 56px;
    max-width: 116px
  }

  .home-hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px
  }

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

  .hero-media {
    min-height: 390px
  }

  .page-hero .media {
    height: 400px
  }

  .coord-map {
    grid-template-columns: 1fr 1fr
  }

  .coord-center {
    grid-row: 1/3
  }

  .coord-side.right {
    text-align: left
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr
  }

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

  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr
  }

  .footer-col:last-child {
    grid-column: 2/4
  }
}

@media(max-width:820px) {
  :root {
    --header: 72px;
    --gutter: 20px;
    --section-y: 52px;
    --section-y-compact: 36px
  }

  body {
    font-size: 15px
  }

  .brand img {
    height: 52px;
    max-width: 108px
  }

  h1 {
    font-size: clamp(2.8rem, 10vw, 3.75rem)
  }

  h2.major {
    font-size: clamp(2.25rem, 8vw, 3rem)
  }

  .statement {
    font-size: clamp(2.25rem, 8.6vw, 3.35rem)
  }

  .lead {
    font-size: 1rem
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-bottom: 30px
  }

  .section-no {
    padding: 0;
    margin-bottom: 3px
  }

  .grid-3 {
    grid-template-columns: 1fr
  }

  .grid-2 {
    grid-template-columns: 1fr
  }

  .split,
  .split.reverse,
  .sticky-story,
  .overseas-path,
  .project-feature,
  .form-shell,
  .area-band {
    grid-template-columns: 1fr
  }

  .split.reverse>.media {
    order: 0
  }

  .sticky-copy {
    position: static
  }

  .home-hero {
    min-height: auto
  }

  .home-hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 34px
  }

  .home-hero h1 {
    font-size: clamp(3.05rem, 12vw, 4.15rem);
    max-width: 560px
  }

  .hero-media {
    height: min(54svh, 460px);
    min-height: 340px
  }

  .page-hero {
    padding-block: 34px
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 9vw, 3.65rem)
  }

  .page-hero .media {
    height: min(50svh, 410px);
    min-height: 320px;
    border-radius: 3px 24px 3px 24px
  }

  .page-hero>.shell:not(.page-hero-grid) {
    min-height: 230px
  }

  .intent-grid {
    grid-template-columns: 1fr
  }

  .intent-card+.intent-card {
    border-left: 0;
    border-top: 1px solid var(--pc-line)
  }

  .worlds {
    grid-template-columns: 1fr
  }

  .world,
  .world:first-child {
    min-height: 230px
  }

  .coord-map {
    grid-template-columns: 1fr;
    min-height: 0
  }

  .coord-center {
    grid-row: auto;
    margin-block: 18px
  }

  .coord-side.right {
    text-align: left
  }

  .material-strip {
    grid-template-columns: 1fr 1fr;
    height: 500px
  }

  .process-rail {
    grid-template-columns: 1fr 1fr
  }

  .fact-grid {
    grid-template-columns: 1fr
  }

  .fact {
    min-height: 0
  }

  .scope-list {
    grid-template-columns: 1fr
  }

  .scope-item:nth-child(even) {
    padding-left: 0;
    border-left: 0
  }

  .scope-item:nth-child(odd) {
    padding-right: 0
  }

  .scope-item {
    padding-right: 0
  }

  .project-slots {
    grid-template-columns: 1fr
  }

  .form-shell {
    gap: 28px
  }

  .form-shell aside {
    max-width: 650px
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .field.full {
    grid-column: auto
  }

  .cta-editorial {
    grid-template-columns: 1fr;
    align-items: start
  }

  .cta-editorial .btn {
    justify-self: start
  }

  .cta-actions {
    justify-content: flex-start
  }

  .footer-top {
    grid-template-columns: 1fr 1fr
  }

  .footer-brand {
    grid-column: 1/-1
  }

  .footer-col:last-child {
    grid-column: auto
  }

  .footer-bottom {
    flex-direction: column
  }

  .page-areas-bushey .section.light .grid-3>.card {
    min-height: 0
  }
}

@media(max-width:520px) {
  :root {
    --header: 68px;
    --gutter: 20px;
    --section-y: 46px
  }

  .brand img {
    height: 48px;
    max-width: 100px
  }

  .mobile-toggle {
    width: 44px;
    height: 44px
  }

  h1 {
    font-size: clamp(2.6rem, 12.5vw, 3.45rem)
  }

  h2.major {
    font-size: clamp(2.05rem, 10vw, 2.75rem)
  }

  .statement {
    font-size: clamp(2.1rem, 10.2vw, 2.9rem)
  }

  .home-hero-grid {
    padding-block: 28px
  }

  .home-hero h1 {
    font-size: clamp(2.95rem, 13.5vw, 3.7rem)
  }

  .hero-media {
    height: 43svh;
    min-height: 290px
  }

  .hero-media::after {
    display: none
  }

  .page-hero {
    padding-block: 28px
  }

  .page-hero .media {
    height: 40svh;
    min-height: 275px
  }

  .page-hero>.shell:not(.page-hero-grid) {
    min-height: 205px
  }

  .breadcrumbs {
    margin-bottom: 17px
  }

  .btns {
    align-items: stretch
  }

  .btns .btn {
    width: 100%
  }

  .grid-4 {
    grid-template-columns: 1fr
  }

  .material-strip {
    height: 390px;
    gap: 7px
  }

  .process-rail {
    grid-template-columns: 1fr
  }

  .process-step {
    padding-bottom: 10px
  }

  .coord-core {
    width: 250px;
    padding: 32px
  }

  .coord-core::after {
    inset: -32px
  }

  .split .photo.tall {
    height: 390px
  }

  .form-panel {
    padding: 20px
  }

  .choice-row {
    display: grid;
    grid-template-columns: 1fr
  }

  .choice label {
    width: 100%;
    border-radius: 10px
  }

  .faq .answer {
    padding-right: 0
  }

  .cta-card {
    padding: 26px 22px;
    border-radius: 18px
  }

  .cta-editorial .statement {
    font-size: clamp(2.05rem, 10vw, 2.75rem)
  }

  .footer-top {
    grid-template-columns: 1fr
  }

  .footer-brand {
    grid-column: auto
  }

  .footer-col:last-child {
    grid-column: auto
  }

  .footer-brand img {
    height: 70px
  }
}

/* ========================================================================== 
   Properties Concierge editorial redesign · September 2026
   ========================================================================== */
:root {
  --font-display: "Prata", Georgia, serif;
  --service-nav-h: 48px;
  --chrome: calc(var(--header) + var(--service-nav-h));
  --container: 1360px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

html {
  scroll-padding-top: calc(var(--chrome) + 18px)
}

[id] {
  scroll-margin-top: calc(var(--chrome) + 18px)
}

.display,
h1,
h2.major,
.statement {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.035em;
  text-wrap: pretty
}

h1 {
  font-size: clamp(3.15rem, 4.15vw, 4.8rem);
  line-height: 1.01;
  max-width: 980px
}

h2.major {
  font-size: clamp(2.35rem, 3vw, 3.25rem);
  line-height: 1.08;
  max-width: 1000px
}

h2:not(.major) {
  font-size: clamp(1.75rem, 2.25vw, 2.3rem)
}

h3 {
  font-size: clamp(1.14rem, 1.35vw, 1.42rem);
  letter-spacing: -.02em
}

h4 {
  font-size: 1rem
}

.eyebrow {
  letter-spacing: .19em;
  font-size: .66rem
}

.section {
  padding-block: clamp(48px, 4.6vw, 70px)
}

.section-head {
  grid-template-columns: 62px minmax(0, 1fr);
  margin-bottom: clamp(28px, 3vw, 42px)
}

.section-head h2.major {
  max-width: 980px
}

/* Primary navigation */
.site-header {
  z-index: 120;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(18px)
}

.desktop-nav {
  gap: 22px
}

.desktop-nav>a {
  position: relative;
  padding: 30px 0 26px;
  font-size: .75rem;
  letter-spacing: .005em
}

.desktop-nav>a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 1px;
  background: var(--pc-warm);
  transition: right .2s var(--ease)
}

.desktop-nav>a:hover::after,
.desktop-nav>a.active::after {
  right: 0
}

.desktop-nav>a.active {
  color: var(--pc-ink)
}

.header-cta {
  border-radius: 999px;
  padding-inline: 18px
}

/* Always visible secondary services navigation */
.service-nav {
  position: sticky;
  top: var(--header);
  z-index: 110;
  height: var(--service-nav-h);
  background: var(--pc-slate);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.service-nav-track {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  overscroll-behavior-inline: contain
}

.service-nav-track::-webkit-scrollbar {
  display: none
}

.service-nav a {
  height: 100%;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  padding: 0 clamp(10px, 1vw, 16px);
  font-size: .66rem;
  font-weight: 650;
  letter-spacing: .025em;
  color: #DDE1E3;
  border-left: 1px solid rgba(255, 255, 255, .08);
  transition: background .18s var(--ease), color .18s var(--ease)
}

.service-nav a:first-child {
  border-left: 0
}

.service-nav a:hover,
.service-nav a.active {
  background: var(--pc-warm);
  color: #fff
}

.mobile-panel {
  inset: var(--chrome) 0 0;
  z-index: 109
}

.sticky-copy {
  top: calc(var(--chrome) + 28px)
}

/* Buttons */
.btn {
  border-radius: 999px;
  min-height: 48px;
  padding: 12px 19px;
  font-size: .79rem
}

.btn.ghost-light {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .72);
  color: #fff;
  backdrop-filter: blur(9px)
}

.btn.ghost-light:hover {
  background: #fff;
  color: var(--pc-slate)
}

/* Full viewport editorial homepage hero */
.home-hero {
  height: calc(100svh - var(--chrome));
  min-height: 610px;
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--pc-ink);
  border-bottom: 0
}

.home-hero-image {
  position: absolute;
  inset: 0 0 0 10%;
  overflow: hidden
}

.home-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  transform: scale(1.002)
}

.home-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(18, 26, 35, .96) 0%, rgba(18, 26, 35, .83) 27%, rgba(18, 26, 35, .43) 50%, rgba(18, 26, 35, .08) 73%, rgba(18, 26, 35, .02) 100%), linear-gradient(0deg, rgba(18, 26, 35, .42) 0%, rgba(18, 26, 35, 0) 46%)
}

.home-hero-stage {
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center
}

.hero-copy-overlay {
  color: #fff;
  width: min(920px, 76%);
  padding-bottom: clamp(38px, 6vh, 68px)
}

.home-hero .eyebrow {
  color: #fff;
  margin-bottom: 17px
}

.home-hero .eyebrow::before {
  background: #D4AA96
}

.home-hero h1 {
  font-size: clamp(3.9rem, 5.6vw, 6.25rem);
  line-height: .96;
  max-width: 1100px;
  color: #fff;
  margin: 0
}

.home-hero .lead {
  color: #F0F2F1;
  max-width: 700px;
  margin-top: 19px;
  font-size: clamp(.98rem, 1.08vw, 1.12rem);
  line-height: 1.6
}

.home-hero .btns {
  margin-top: 22px
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  max-width: 930px
}

.hero-proof span {
  padding: 12px 22px 0 0;
  margin-right: 22px;
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .035em;
  color: #E3E6E7;
  white-space: nowrap
}

.hero-proof span+span {
  position: relative
}

.hero-proof span+span::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 14px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--pc-warm)
}

@media(min-width:1250px) {
  .home-hero h1 {
    white-space: nowrap
  }
}

/* Image-led first screen for all pages that already have a hero photograph */
.page-hero:has(.page-hero-grid) {
  height: calc(100svh - var(--chrome));
  min-height: 590px;
  padding: 0;
  background: var(--pc-ink);
  position: relative;
  border-bottom: 0;
  overflow: hidden
}

.page-hero:has(.page-hero-grid)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(18, 26, 35, .96) 0%, rgba(18, 26, 35, .84) 28%, rgba(18, 26, 35, .48) 52%, rgba(18, 26, 35, .10) 78%, rgba(18, 26, 35, .02) 100%)
}

.page-hero .page-hero-grid {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  min-height: 0
}

.page-hero .page-hero-grid>div:first-child {
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(790px, 62%);
  padding: 0 0 clamp(42px, 6.5vh, 76px) max(var(--gutter), calc((100vw - var(--container))/2 + var(--gutter)));
  color: #fff
}

.page-hero .page-hero-grid>.media {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 16%;
  width: auto;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 0;
  margin: 0
}

.page-hero .page-hero-grid>.media .photo {
  height: 100%;
  border-radius: 0
}

.page-hero .page-hero-grid>.media img {
  height: 100%;
  width: 100%;
  object-fit: cover
}

.page-hero:has(.page-hero-grid) h1 {
  font-size: clamp(2.95rem, 3.8vw, 4.3rem);
  line-height: 1.01;
  max-width: 900px;
  color: #fff
}

.page-hero:has(.page-hero-grid) .lead {
  color: #E7EAEB;
  max-width: 690px
}

.page-hero:has(.page-hero-grid) .breadcrumbs {
  color: #D5DADC;
  margin-bottom: 18px
}

.page-hero:has(.page-hero-grid) .breadcrumbs a {
  color: #fff
}

.page-hero:has(.page-hero-grid) .eyebrow {
  color: #fff
}

.page-hero:has(.page-hero-grid) .btn.primary {
  background: var(--pc-warm)
}

.page-hero:has(.page-hero-grid) .btn.primary:hover {
  background: #956B59
}

/* Brand specific speciality blocks */
.specialty-section {
  background: #fff
}

.specialty-head {
  margin-bottom: 26px
}

.specialty-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--pc-line);
  border-bottom: 1px solid var(--pc-line)
}

.specialty-band article {
  padding: 26px 24px 27px 0;
  min-height: 205px;
  position: relative
}

.specialty-band article+article {
  border-left: 1px solid var(--pc-line);
  padding-left: 24px
}

.specialty-band article>span {
  display: block;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--pc-warm);
  margin-bottom: 30px
}

.specialty-band h3 {
  font-size: 1.12rem;
  margin-bottom: 10px
}

.specialty-band p {
  font-size: .81rem;
  line-height: 1.62;
  color: var(--pc-muted);
  margin: 0;
  max-width: 280px
}

/* Homepage image service preview */
.home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px
}

.home-service-tile {
  height: clamp(360px, 36vw, 510px);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  background: var(--pc-slate);
  border-radius: 2px
}

.home-service-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease), filter .45s var(--ease)
}

.home-service-tile>span {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 26, 35, .90) 0%, rgba(18, 26, 35, .36) 43%, rgba(18, 26, 35, .02) 75%);
  transition: background .3s var(--ease)
}

.home-service-tile>div {
  position: absolute;
  z-index: 2;
  inset: auto 24px 24px;
  color: #fff
}

.home-service-tile small {
  display: block;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 700;
  font-size: .6rem;
  color: #E4E8E9;
  margin-bottom: 9px
}

.home-service-tile h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.7vw, 1.85rem);
  letter-spacing: -.025em;
  margin: 0 0 15px
}

.home-service-tile i {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .42);
  padding-top: 12px;
  font-style: normal;
  font-size: .72rem;
  font-weight: 650;
  opacity: .86
}

.home-service-tile i b {
  font-size: 1rem;
  font-weight: 500;
  transition: transform .2s var(--ease)
}

.home-service-tile:hover img {
  transform: scale(1.055);
  filter: saturate(.88)
}

.home-service-tile:hover>span {
  background: linear-gradient(0deg, rgba(18, 26, 35, .94) 0%, rgba(18, 26, 35, .46) 52%, rgba(18, 26, 35, .06) 80%)
}

.home-service-tile:hover i b {
  transform: translate(3px, -3px)
}

.service-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px
}

/* Dedicated services page */
.services-hero {
  height: calc(86svh - var(--chrome));
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background: var(--pc-ink);
  color: #fff
}

.services-hero-image {
  position: absolute;
  inset: 0 0 0 13%;
  overflow: hidden
}

.services-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(18, 26, 35, .97) 0%, rgba(18, 26, 35, .85) 28%, rgba(18, 26, 35, .46) 54%, rgba(18, 26, 35, .08) 83%)
}

.services-hero-content {
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(40px, 6vh, 66px)
}

.services-hero h1 {
  font-size: clamp(3.2rem, 4.7vw, 5.3rem);
  max-width: 1000px;
  color: #fff;
  line-height: .98
}

.services-hero .lead {
  color: #E6EAEB;
  max-width: 720px;
  margin-top: 18px
}

.services-hero .eyebrow {
  color: #fff
}

.services-hero .eyebrow::before {
  background: #D6AD9B
}

.light-breadcrumbs {
  color: #D5DADC
}

.light-breadcrumbs a {
  color: #fff
}

.services-hero .btns {
  margin-top: 22px
}

.services-intro {
  padding-block: clamp(42px, 4vw, 60px)
}

.specialty-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .7fr);
  gap: clamp(46px, 8vw, 110px);
  align-items: end
}

.specialty-editorial .lead {
  margin: 0
}

.services-head {
  margin-bottom: 26px
}

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

.service-image-card {
  position: relative;
  height: clamp(370px, 39vw, 520px);
  overflow: hidden;
  text-decoration: none;
  background: var(--pc-slate);
  color: #fff;
  border-radius: 2px;
  isolation: isolate
}

.service-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .65s var(--ease), filter .4s var(--ease)
}

.service-card-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(18, 26, 35, .28) 0%, rgba(18, 26, 35, .02) 34%, rgba(18, 26, 35, .87) 100%);
  transition: background .3s var(--ease)
}

.service-card-top {
  position: absolute;
  inset: 22px 24px auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-style: normal
}

.service-card-top b {
  font-size: .68rem;
  letter-spacing: .14em
}

.service-card-top em {
  font-style: normal;
  font-size: .64rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  text-align: right
}

.service-card-copy {
  position: absolute;
  inset: auto 25px 24px;
  display: block
}

.service-card-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.5vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.05
}

.service-card-copy small {
  display: block;
  max-width: 560px;
  margin-top: 10px;
  font-size: .8rem;
  line-height: 1.55;
  color: #E4E7E8;
  opacity: 0;
  transform: translateY(8px);
  max-height: 0;
  transition: opacity .25s var(--ease), transform .25s var(--ease), max-height .28s var(--ease)
}

.service-card-copy i {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .38);
  padding-top: 12px;
  margin-top: 15px;
  font-style: normal;
  font-size: .72rem;
  font-weight: 650
}

.service-card-copy i span {
  font-size: 1rem;
  transition: transform .2s var(--ease)
}

.service-image-card:hover img {
  transform: scale(1.045);
  filter: saturate(.88)
}

.service-image-card:hover .service-card-shade {
  background: linear-gradient(180deg, rgba(18, 26, 35, .35) 0%, rgba(18, 26, 35, .08) 30%, rgba(18, 26, 35, .94) 100%)
}

.service-image-card:hover .service-card-copy small {
  opacity: 1;
  transform: none;
  max-height: 100px
}

.service-image-card:hover .service-card-copy i span {
  transform: translate(3px, -3px)
}

.brand-mark-css {
  display: block;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  position: relative
}

.brand-mark-css::before,
.brand-mark-css::after {
  content: "";
  position: absolute;
  background: var(--pc-warm)
}

.brand-mark-css::before {
  width: 24px;
  height: 1px;
  left: 17px;
  top: 28px
}

.brand-mark-css::after {
  height: 24px;
  width: 1px;
  left: 28px;
  top: 17px
}

/* Sharper cards and headings sitewide */
.card {
  border-radius: 10px
}

.photo.arch,
.page-hero .media {
  border-radius: 0
}

.statement {
  font-size: clamp(2.35rem, 3.25vw, 3.6rem);
  line-height: 1.07
}

@media(max-width:1180px) {
  :root {
    --service-nav-h: 46px
  }

  .desktop-nav {
    gap: 16px
  }

  .desktop-nav>a {
    font-size: .72rem
  }

  .home-hero-image {
    left: 7%
  }

  .hero-copy-overlay {
    width: 82%
  }

  .specialty-band {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .specialty-band article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--pc-line);
    padding-left: 0
  }

  .specialty-band article:nth-child(4) {
    border-top: 1px solid var(--pc-line)
  }

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

  .home-service-tile {
    height: 430px
  }
}

@media(max-width:1050px) {
  .service-nav a {
    font-size: .64rem;
    padding-inline: 13px
  }

  .page-hero .page-hero-grid>div:first-child {
    width: min(780px, 72%)
  }
}

@media(max-width:820px) {
  :root {
    --service-nav-h: 44px
  }

  .service-nav-track {
    width: 100%;
    padding-inline: 10px
  }

  .service-nav a {
    padding-inline: 12px;
    font-size: .62rem
  }

  .mobile-panel {
    padding-top: 10px
  }

  h1 {
    font-size: clamp(2.65rem, 10vw, 3.6rem)
  }

  h2.major {
    font-size: clamp(2.05rem, 7.8vw, 2.7rem)
  }

  .home-hero {
    height: calc(100svh - var(--chrome));
    min-height: 540px
  }

  .home-hero-image {
    inset: 0
  }

  .home-hero-vignette {
    background: linear-gradient(0deg, rgba(18, 26, 35, .95) 0%, rgba(18, 26, 35, .72) 48%, rgba(18, 26, 35, .18) 100%)
  }

  .home-hero-stage {
    align-items: flex-end
  }

  .hero-copy-overlay {
    width: 100%;
    padding-bottom: 28px
  }

  .home-hero h1 {
    font-size: clamp(2.95rem, 12vw, 4.15rem);
    white-space: normal;
    max-width: 680px
  }

  .home-hero .lead {
    max-width: 620px;
    font-size: .94rem;
    line-height: 1.5;
    margin-top: 14px
  }

  .home-hero .btns {
    margin-top: 17px;
    flex-direction: row;
    align-items: center
  }

  .home-hero .btns .btn {
    width: auto;
    min-height: 44px;
    padding: 10px 15px
  }

  .hero-proof {
    margin-top: 18px
  }

  .hero-proof span {
    font-size: .61rem;
    padding-top: 10px;
    margin-right: 16px;
    padding-right: 16px
  }

  .hero-proof span:nth-child(n+3) {
    display: none
  }

  .page-hero:has(.page-hero-grid) {
    height: calc(100svh - var(--chrome));
    min-height: 540px
  }

  .page-hero .page-hero-grid>.media {
    inset: 0
  }

  .page-hero:has(.page-hero-grid)::after {
    background: linear-gradient(0deg, rgba(18, 26, 35, .96) 0%, rgba(18, 26, 35, .74) 52%, rgba(18, 26, 35, .20) 100%)
  }

  .page-hero .page-hero-grid>div:first-child {
    width: 100%;
    padding: 0 var(--gutter) 30px;
    justify-content: flex-end
  }

  .page-hero:has(.page-hero-grid) h1 {
    font-size: clamp(2.55rem, 9vw, 3.45rem)
  }

  .page-hero:has(.page-hero-grid) .lead {
    font-size: .94rem;
    line-height: 1.5;
    margin-top: 13px
  }

  .page-hero:has(.page-hero-grid) .breadcrumbs {
    margin-bottom: 11px
  }

  .page-hero:has(.page-hero-grid) .btns {
    margin-top: 16px
  }

  .specialty-band {
    grid-template-columns: 1fr 1fr
  }

  .specialty-band article {
    min-height: 190px;
    padding: 22px 18px 22px 0
  }

  .specialty-band article+article {
    padding-left: 18px
  }

  .specialty-band article>span {
    margin-bottom: 22px
  }

  .home-service-grid {
    grid-template-columns: 1fr 1fr
  }

  .home-service-tile {
    height: 380px
  }

  .services-hero {
    height: calc(100svh - var(--chrome));
    min-height: 540px
  }

  .services-hero-image {
    inset: 0
  }

  .services-hero::after {
    background: linear-gradient(0deg, rgba(18, 26, 35, .96) 0%, rgba(18, 26, 35, .74) 52%, rgba(18, 26, 35, .18) 100%)
  }

  .services-hero-content {
    padding-bottom: 30px
  }

  .services-hero h1 {
    font-size: clamp(2.7rem, 10vw, 3.8rem)
  }

  .specialty-editorial {
    grid-template-columns: 1fr;
    gap: 22px
  }

  .service-image-grid {
    grid-template-columns: 1fr
  }

  .service-image-card {
    height: 430px
  }

  .service-card-copy small {
    opacity: 1;
    transform: none;
    max-height: 100px
  }
}

@media(max-width:520px) {
  .service-nav {
    box-shadow: 0 1px 0 rgba(255, 255, 255, .05)
  }

  .service-nav-track {
    padding-inline: 6px
  }

  .service-nav a {
    padding-inline: 11px
  }

  .home-hero {
    min-height: 500px
  }

  .home-hero .eyebrow {
    font-size: .56rem;
    margin-bottom: 10px;
    letter-spacing: .13em
  }

  .home-hero h1 {
    font-size: clamp(2.65rem, 12.8vw, 3.55rem)
  }

  .home-hero .lead {
    font-size: .86rem;
    line-height: 1.47
  }

  .home-hero .btns {
    gap: 7px
  }

  .home-hero .btns .btn {
    font-size: .7rem;
    padding-inline: 13px
  }

  .hero-proof {
    display: none
  }

  .page-hero:has(.page-hero-grid) {
    min-height: 500px
  }

  .page-hero .page-hero-grid>div:first-child {
    padding-bottom: 24px
  }

  .page-hero:has(.page-hero-grid) .eyebrow {
    font-size: .57rem;
    margin-bottom: 10px
  }

  .page-hero:has(.page-hero-grid) h1 {
    font-size: clamp(2.3rem, 10.6vw, 3.05rem)
  }

  .page-hero:has(.page-hero-grid) .lead {
    font-size: .84rem;
    line-height: 1.45
  }

  .page-hero:has(.page-hero-grid) .btns .btn {
    width: auto
  }

  .specialty-band {
    grid-template-columns: 1fr
  }

  .specialty-band article,
  .specialty-band article+article {
    min-height: 0;
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid var(--pc-line)
  }

  .specialty-band article:first-child {
    border-top: 0
  }

  .specialty-band article>span {
    margin-bottom: 14px
  }

  .specialty-band p {
    max-width: none
  }

  .home-service-grid {
    grid-template-columns: 1fr
  }

  .home-service-tile {
    height: 360px
  }

  .service-more {
    justify-content: stretch
  }

  .service-more .btn {
    width: 100%
  }

  .services-hero {
    min-height: 510px
  }

  .services-hero .breadcrumbs {
    margin-bottom: 12px
  }

  .services-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.2rem)
  }

  .services-hero .lead {
    font-size: .86rem;
    line-height: 1.48
  }

  .services-hero .btns {
    flex-direction: row
  }

  .services-hero .btns .btn {
    width: auto;
    font-size: .7rem;
    padding-inline: 13px
  }

  .service-image-card {
    height: 380px
  }

  .service-card-top {
    inset: 18px 18px auto
  }

  .service-card-copy {
    inset: auto 18px 18px
  }

  .service-card-copy strong {
    font-size: 1.8rem
  }
}

/* Final responsive hero + typography system · September 11 2026
   One clean breakpoint system: desktop, tablet and phone. */
@media(min-width:821px) {
  .page-hero:has(.page-hero-grid) .page-hero-grid>div:first-child {
    justify-content: center;
    width: min(620px, 52%);
    padding-top: clamp(42px, 5.2vh, 64px);
    padding-bottom: 32px;
  }

  .page-hero:has(.page-hero-grid) h1 {
    font-size: clamp(2.7rem, 3.15vw, 3.55rem);
    line-height: 1.03;
    max-width: 610px;
    letter-spacing: -.032em;
  }

  .page-hero:has(.page-hero-grid) .lead {
    max-width: 555px;
    font-size: clamp(.9rem, 1.02vw, 1rem);
    line-height: 1.56;
    margin-top: 16px;
  }

  .page-hero:has(.page-hero-grid) .btns {
    margin-top: 20px
  }

  .services-hero-content {
    justify-content: center;
    padding-top: clamp(42px, 5.2vh, 64px);
    padding-bottom: 32px;
  }

  .services-hero h1 {
    font-size: clamp(2.85rem, 3.45vw, 3.8rem);
    line-height: 1.02;
    max-width: 760px;
    letter-spacing: -.032em;
  }

  .services-hero .lead {
    max-width: 600px;
    font-size: clamp(.9rem, 1.02vw, 1rem);
    line-height: 1.56;
    margin-top: 16px;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 4.05vw, 4.65rem);
    line-height: .99;
    max-width: 920px;
  }
}

@media(min-width:521px) and (max-width:820px) {

  .home-hero,
  .page-hero:has(.page-hero-grid),
  .services-hero {
    height: min(740px, calc(100svh - var(--chrome)));
    min-height: 0;
  }

  .home-hero-stage {
    align-items: center
  }

  .hero-copy-overlay {
    width: 100%;
    padding-top: 34px;
    padding-bottom: 24px
  }

  .page-hero .page-hero-grid>div:first-child {
    justify-content: flex-start;
    width: 100%;
    padding: 34px var(--gutter) 24px;
  }

  .services-hero-content {
    justify-content: flex-start;
    padding-top: 34px;
    padding-bottom: 24px;
  }

  .home-hero-vignette,
  .page-hero:has(.page-hero-grid)::after,
  .services-hero::after {
    background: linear-gradient(180deg, rgba(18, 26, 35, .82) 0%, rgba(18, 26, 35, .64) 30%, rgba(18, 26, 35, .38) 62%, rgba(18, 26, 35, .58) 100%);
  }

  .page-hero:has(.page-hero-grid) h1 {
    font-size: clamp(2rem, 4.8vw, 2.35rem);
    line-height: 1.03;
    max-width: 560px;
  }

  .services-hero h1 {
    font-size: clamp(2.05rem, 5vw, 2.45rem);
    line-height: 1.03;
    max-width: 590px;
  }

  .page-hero:has(.page-hero-grid) .lead,
  .services-hero .lead {
    font-size: .88rem;
    line-height: 1.48;
    max-width: 560px;
    margin-top: 11px;
  }

  .home-hero h1 {
    font-size: clamp(2.35rem, 6.4vw, 3.05rem);
    line-height: 1.01;
  }

  h2.major,
  .statement {
    font-size: clamp(1.95rem, 4.8vw, 2.3rem);
    line-height: 1.08;
  }
}

@media(max-width:520px) {

  .home-hero,
  .page-hero:has(.page-hero-grid),
  .services-hero {
    height: auto;
    min-height: 0;
  }

  .home-hero-stage,
  .page-hero .page-hero-grid,
  .page-hero .page-hero-grid>div:first-child,
  .services-hero-content {
    height: auto
  }

  .home-hero-stage {
    align-items: flex-start
  }

  .hero-copy-overlay {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px
  }

  .page-hero .page-hero-grid>div:first-child {
    justify-content: flex-start;
    width: 100%;
    padding: 18px var(--gutter) 34px;
  }

  .services-hero-content {
    justify-content: flex-start;
    padding-top: 18px;
    padding-bottom: 34px;
  }

  .home-hero-vignette,
  .page-hero:has(.page-hero-grid)::after,
  .services-hero::after {
    background: linear-gradient(180deg, rgba(18, 26, 35, .84) 0%, rgba(18, 26, 35, .67) 34%, rgba(18, 26, 35, .42) 66%, rgba(18, 26, 35, .60) 100%);
  }

  .page-hero:has(.page-hero-grid) h1 {
    font-size: clamp(1.72rem, 7.15vw, 1.9rem);
    line-height: 1.03;
    letter-spacing: -.03em;
    max-width: 345px;
  }

  .services-hero h1 {
    font-size: clamp(1.78rem, 7.35vw, 1.95rem);
    line-height: 1.03;
    letter-spacing: -.03em;
    max-width: 350px;
  }

  .page-hero:has(.page-hero-grid) .lead,
  .services-hero .lead {
    font-size: .76rem;
    line-height: 1.42;
    margin-top: 9px;
    max-width: 345px;
  }

  .page-hero:has(.page-hero-grid) .breadcrumbs,
  .services-hero .breadcrumbs {
    font-size: .64rem;
    margin-bottom: 8px;
  }

  .page-hero:has(.page-hero-grid) .eyebrow,
  .services-hero .eyebrow {
    font-size: .53rem;
    letter-spacing: .15em;
    margin-bottom: 7px;
  }

  .page-hero:has(.page-hero-grid) .btns,
  .services-hero .btns {
    margin-top: 12px
  }

  .page-hero:has(.page-hero-grid) .btn,
  .services-hero .btn {
    min-height: 40px;
    padding: 9px 13px;
    font-size: .66rem;
  }

  .home-hero h1 {
    font-size: clamp(2rem, 8.4vw, 2.45rem);
    line-height: 1.01;
  }

  .home-hero .lead {
    font-size: .79rem;
    line-height: 1.43
  }

  h2.major,
  .statement {
    font-size: clamp(1.72rem, 7.25vw, 2rem);
    line-height: 1.08;
    letter-spacing: -.03em;
  }

  h2:not(.major) {
    font-size: clamp(1.45rem, 6vw, 1.72rem);
    line-height: 1.1;
  }

  h3 {
    font-size: 1.03rem;
    line-height: 1.25
  }
}

/* Services overview keyboard interaction */
.service-image-card:focus-visible .service-card-copy small {
  opacity: 1;
  transform: none;
  max-height: 100px
}

.service-image-card:focus-visible .service-card-copy i span {
  transform: translate(3px, -3px)
}


/* Responsive services refinement · 12 Sep 2026 */
.service-marquee {
  width: 100%;
  overflow: hidden;
  background: var(--pc-warm);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(18, 26, 35, .08);
}

.service-marquee-track {
  display: flex;
  width: max-content;
  animation: pcServiceMarquee 32s linear infinite;
  will-change: transform
}

.service-marquee-group {
  display: flex;
  align-items: center;
  flex: none;
  min-height: 42px;
  white-space: nowrap
}

.service-marquee span {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .095em;
  text-transform: uppercase;
  padding: 0 20px
}

.service-marquee b {
  font-size: .65rem;
  font-weight: 500;
  opacity: .65
}

@keyframes pcServiceMarquee {
  to {
    transform: translateX(-50%)
  }
}

/* Four compact service cards on desktop, two on tablet, one on phone. */
.page-services .service-image-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px
}

.page-services .service-image-card {
  height: 340px
}

.page-services .service-card-top {
  inset: 16px 17px auto
}

.page-services .service-card-top b {
  font-size: .62rem
}

.page-services .service-card-top em {
  font-size: .56rem;
  letter-spacing: .09em
}

.page-services .service-card-copy {
  inset: auto 17px 17px
}

.page-services .service-card-copy strong {
  font-size: clamp(1.22rem, 1.45vw, 1.55rem);
  line-height: 1.08
}

.page-services .service-card-copy small {
  font-size: .69rem;
  line-height: 1.45;
  margin-top: 8px
}

.page-services .service-card-copy i {
  font-size: .66rem;
  margin-top: 11px;
  padding-top: 10px
}

/* Shorter, calmer first section on service detail pages. */
.service-detail-hero h1 {
  max-width: 650px
}

.service-detail-hero .lead {
  max-width: 575px
}

@media(max-width:1050px) {
  .page-services .service-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .page-services .service-image-card {
    height: 330px
  }
}

@media(max-width:680px) {
  .page-services .service-image-grid {
    grid-template-columns: 1fr;
    gap: 9px
  }

  .page-services .service-image-card {
    height: 260px
  }

  .page-services .service-card-top {
    inset: 14px 15px auto
  }

  .page-services .service-card-top em {
    display: none
  }

  .page-services .service-card-copy {
    inset: auto 15px 14px
  }

  .page-services .service-card-copy strong {
    font-size: 1.32rem
  }

  .page-services .service-card-copy small {
    display: none
  }

  .page-services .service-card-copy i {
    margin-top: 10px;
    padding-top: 9px
  }
}

@media(max-width:520px) {
  .service-marquee-group {
    min-height: 36px
  }

  .service-marquee span {
    font-size: .58rem;
    letter-spacing: .085em;
    padding: 0 14px
  }

  .service-detail-hero {
    height: 430px !important;
    min-height: 0 !important;
  }

  .service-detail-hero .services-hero-content {
    height: 100% !important;
    justify-content: center !important;
    padding-top: 18px !important;
    padding-bottom: 20px !important;
  }

  .service-detail-hero .breadcrumbs {
    display: none
  }

  .service-detail-hero .eyebrow {
    font-size: .5rem;
    margin-bottom: 7px
  }

  .service-detail-hero h1 {
    font-size: clamp(1.7rem, 7.4vw, 1.95rem);
    line-height: 1.04;
    max-width: 350px;
  }

  .service-detail-hero .lead {
    font-size: .73rem;
    line-height: 1.4;
    margin-top: 8px;
    max-width: 340px;
  }

  .service-detail-hero .btns {
    gap: 7px;
    margin-top: 11px
  }

  .service-detail-hero .btns .btn {
    width: auto;
    min-height: 36px;
    padding: 8px 10px;
    font-size: .61rem;
    border-radius: 8px;
  }

  .page-services>.service-nav+.mobile-panel+main .services-hero,
  .page-services main>.services-hero {
    height: 445px;
    min-height: 0;
  }

  .page-services .services-hero-content {
    height: 100%;
    justify-content: center;
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .page-services .services-hero .breadcrumbs {
    display: none
  }

  .page-services .services-hero h1 {
    font-size: 1.88rem;
    max-width: 340px
  }

  .page-services .services-hero .lead {
    font-size: .74rem;
    line-height: 1.4;
    max-width: 335px
  }

  .page-services .services-intro {
    padding-block: 30px
  }

  .page-services .specialty-editorial {
    gap: 14px
  }

  .page-services .services-head {
    margin-bottom: 20px
  }
}

@media(prefers-reduced-motion:reduce) {
  .service-marquee-track {
    animation: none
  }
}