:root {
  --ink: #1f2523;
  --text: #303735;
  --muted: #66716d;
  --paper: #f7f3ea;
  --warm: #ece4d8;
  --cream: #fffdfa;
  --white: #ffffff;
  --copper: #bd7442;
  --copper-dark: #8f5537;
  --sage: #315d56;
  --sage-dark: #172d2a;
  --sage-soft: #dfe9e4;
  --deep: #141716;
  --line: rgba(32, 37, 35, .14);
  --line-soft: rgba(32, 37, 35, .08);
  --focus: rgba(189, 116, 66, .36);
  --shadow: 0 22px 60px rgba(24, 30, 28, .12);
  --shadow-soft: 0 12px 30px rgba(24, 30, 28, .07);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(247, 243, 234, 0) 430px),
    linear-gradient(135deg, rgba(49, 93, 86, .055), rgba(247, 243, 234, 0) 42%),
    linear-gradient(315deg, rgba(189, 116, 66, .055), rgba(247, 243, 234, 0) 46%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
main {
  overflow-x: hidden;
  overflow-x: clip;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
p, h1, h2, h3 { margin-top: 0; }
p:last-child { margin-bottom: 0; }
::selection {
  background: rgba(189, 116, 66, .24);
  color: var(--ink);
}

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

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  padding: .75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

.wrap,
.nav,
.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 243, 234, .92);
  border-bottom: 1px solid var(--line-soft);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(20, 23, 22, .06);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(189, 116, 66, .45), rgba(49, 93, 86, .36), transparent);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: .2rem 0;
  text-decoration: none;
}
.brand img {
  width: 158px;
  height: auto;
  mix-blend-mode: multiply;
}
.brand strong,
.brand span { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .35rem;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 750;
}
.nav-links a {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: .45rem .68rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}
.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: .68rem;
  right: .68rem;
  bottom: .24rem;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links .active {
  color: var(--ink);
  background: rgba(255, 255, 255, .68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links .active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: .88rem 1.15rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 12px 28px rgba(20, 23, 22, .15);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: #050706;
  border-color: #050706;
  box-shadow: 0 16px 34px rgba(20, 23, 22, .18);
}
.button:active {
  transform: translateY(0);
}
.button.secondary {
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  border-color: rgba(32, 37, 35, .14);
  box-shadow: 0 8px 22px rgba(20, 23, 22, .06);
}
.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--white);
  border-color: rgba(32, 37, 35, .24);
}
section:not(.hero):not(.cta):not(.dark) .button.secondary,
.band .button.secondary {
  background: transparent;
  border-color: rgba(32, 37, 35, .22);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12, 15, 14, .95) 0%, rgba(12, 15, 14, .78) 48%, rgba(12, 15, 14, .36) 100%),
    linear-gradient(180deg, rgba(12, 15, 14, .08), rgba(12, 15, 14, .42));
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 14px;
  background: linear-gradient(90deg, var(--copper), var(--sage), transparent);
  opacity: .75;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(280px, 350px);
  gap: clamp(2rem, 6vw, 5.75rem);
  align-items: center;
  padding: clamp(4.25rem, 7vw, 6.4rem) 0;
}
.hero-content {
  min-width: 0;
  max-width: 700px;
  padding-left: clamp(1rem, 2vw, 1.4rem);
  border-left: 3px solid rgba(189, 116, 66, .86);
}

.eyebrow,
.section-label {
  margin: 0 0 .8rem;
  color: var(--copper-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero .eyebrow,
.dark .section-label,
.cta .section-label {
  color: #e7a06b;
}
h1,
h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
  overflow-wrap: break-word;
}
.hero h1,
.dark h2,
.cta h2,
.page-hero h1 {
  color: var(--white);
}
h1 {
  max-width: 790px;
  margin-bottom: 1.15rem;
  font-size: 4.75rem;
}
h2 {
  max-width: 820px;
  margin-bottom: 1rem;
  font-size: 3.25rem;
}
h3 {
  margin-bottom: .45rem;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.28;
}
.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.68;
}
.hero .lead,
.dark .lead,
.cta p,
.page-hero .lead {
  color: rgba(255, 255, 255, .82);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}

.trust-strip {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 68px rgba(0, 0, 0, .2);
}
.trust-strip div {
  padding: 1.08rem 1.12rem;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.trust-strip div:last-child { border-bottom: 0; }
.trust-strip strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.05;
}
.trust-strip span {
  display: block;
  margin-top: .4rem;
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  line-height: 1.4;
}

section {
  padding: clamp(4rem, 6.5vw, 6.6rem) 0;
}
@supports (content-visibility: auto) {
  main > section:not(.hero):not(.page-hero),
  main > article > section:not(:first-child),
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 640px;
  }
}
.band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 253, 250, .98)),
    var(--cream);
  border-block: 1px solid var(--line-soft);
}
.soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(236, 228, 216, .94)),
    linear-gradient(135deg, rgba(223, 233, 228, .45), rgba(236, 228, 216, 0) 56%),
    var(--warm);
}
.dark {
  background: var(--sage-dark);
  color: var(--white);
}
.dark.statement {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(20, 32, 30, .96), rgba(23, 45, 42, .84)),
    url("city-consultancy.jpg") center / cover no-repeat;
}
.dark.statement .wrap {
  position: relative;
  z-index: 1;
}
.dark p,
.dark li {
  color: rgba(255, 255, 255, .76);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(300px, 1fr);
  gap: clamp(2.25rem, 6vw, 6rem);
  align-items: center;
}
.split > * {
  min-width: 0;
}
.split.reverse {
  grid-template-columns: minmax(300px, 1fr) minmax(0, 500px);
}
.section-copy {
  max-width: 560px;
}
.section-copy > :last-child {
  margin-bottom: 0;
}
.section-copy h2 {
  max-width: 560px;
}

.visual-band {
  padding: 0 0 clamp(4.25rem, 7vw, 7rem);
  background: var(--paper);
}
.visual-band .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, .72fr) minmax(220px, .72fr);
  gap: 1rem;
}
.visual-band .wrap > * {
  min-width: 0;
}
.visual-card {
  contain: layout paint;
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 18px 44px rgba(24, 30, 28, .11);
}
.visual-card-large {
  min-height: 480px;
}
.visual-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.95) contrast(1);
}
.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 15, 14, .04), rgba(12, 15, 14, .74));
}
.visual-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: rgba(255, 255, 255, .9);
  font-size: .93rem;
  font-weight: 850;
  line-height: 1.35;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .34);
}

.image-panel {
  contain: layout paint;
  position: relative;
  align-self: stretch;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, var(--white), var(--cream)),
    var(--white);
  box-shadow: var(--shadow-soft);
}
.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .34);
}
.image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}
.image-panel:not(.captioned):not(.image-panel-natural) img {
  position: absolute;
  inset: 0;
  max-width: none;
  min-height: 100%;
}
.image-panel.image-panel-natural,
.image-panel.captioned {
  align-self: start;
  min-height: 0;
}
.image-panel.image-panel-natural img,
.image-panel.captioned img {
  position: static;
  height: auto;
  min-height: 0;
  max-width: 100%;
}
.image-panel.captioned {
  display: grid;
}
.image-panel.captioned p {
  margin: 0;
  padding: 1rem;
  color: var(--muted);
  font-size: .95rem;
}

.grid {
  display: grid;
  gap: 1.1rem;
}
.grid > * {
  min-width: 0;
}
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split.reverse .grid.two { max-width: 640px; }

.card,
.panel {
  contain: layout paint;
  min-width: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, var(--white), #fbfaf5),
    var(--white);
  box-shadow: var(--shadow-soft);
}
.card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 1.65rem;
  display: grid;
  align-content: start;
  gap: .72rem;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.card::after {
  content: "";
  position: absolute;
  left: 1.65rem;
  right: 1.65rem;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--copper), rgba(49, 93, 86, .56));
  opacity: .72;
}
.grid.three .card:not(.feature-card):nth-child(1),
.grid.three .card:not(.feature-card):nth-child(4),
.grid.two .card:not(.feature-card):nth-child(1) {
  background:
    linear-gradient(180deg, rgba(189, 116, 66, .08), rgba(255, 255, 255, 0) 62%),
    #fbfaf5;
}
.card h3 {
  max-width: none;
}
.card p,
.panel p,
li {
  color: var(--muted);
  overflow-wrap: break-word;
}
.card a:not(.button) {
  align-self: end;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 900;
  text-decoration-color: rgba(189, 116, 66, .7);
  text-underline-offset: .25em;
  overflow-wrap: anywhere;
}
.card.service-card-link {
  color: inherit;
  text-decoration: none;
}
.card.service-card-link:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}
.card.service-card-link .card-link-label {
  align-self: end;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(189, 116, 66, .7);
  text-underline-offset: .25em;
}
.feature-card.service-card-link .card-link-label {
  color: var(--white);
  text-decoration-color: rgba(231, 160, 107, .78);
}
.card:hover,
.card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(189, 116, 66, .36);
  box-shadow: var(--shadow);
}
.grid .card.feature-card {
  grid-column: span 2;
  min-height: 245px;
  background:
    linear-gradient(135deg, rgba(23, 45, 42, .98), rgba(31, 37, 35, .94) 58%, rgba(189, 116, 66, .34)),
    var(--sage-dark);
  border-color: rgba(23, 45, 42, .5);
}
.feature-card::after {
  background: linear-gradient(90deg, #e7a06b, rgba(255, 255, 255, .42));
  opacity: .95;
}
.feature-card h3 {
  max-width: 620px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.08;
}
.feature-card p {
  max-width: 620px;
  color: rgba(255, 255, 255, .76);
}
.feature-card a:not(.button) {
  color: var(--white);
  text-decoration-color: rgba(231, 160, 107, .78);
}
article .content-block {
  font-size: 1.05rem;
}
.icon {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(189, 116, 66, .12);
  color: var(--copper-dark);
  font-size: .74rem;
  font-weight: 900;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.65rem;
}
.service-row {
  contain: layout paint;
  position: relative;
  min-width: 0;
  overflow: hidden;
  min-height: 215px;
  display: grid;
  align-content: start;
  gap: .8rem;
  padding: 1.55rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, var(--cream), #f8f5ed),
    #fbfaf5;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.service-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--copper), var(--sage));
  opacity: .78;
}
.service-row span {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(189, 116, 66, .13);
  color: var(--copper-dark);
  font-size: .74rem;
  font-weight: 900;
}
.service-row h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1.08;
}
.service-row p {
  margin: 0;
  color: var(--muted);
}
.service-row b {
  align-self: end;
  color: var(--copper-dark);
  font-size: 1.25rem;
  line-height: 1;
}
.service-row:hover,
.service-row:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(189, 116, 66, .36);
  box-shadow: var(--shadow);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .9rem;
}
.check-list li {
  position: relative;
  padding: .35rem 0 .35rem 1.55rem;
  border-bottom: 1px solid var(--line-soft);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62rem;
  width: .48rem;
  height: .48rem;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 4px rgba(189, 116, 66, .12);
}
.mini-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.process { counter-reset: step; }
.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  color: var(--copper-dark);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: 0;
}

.statement {
  padding-block: clamp(5rem, 8vw, 8rem);
}
.statement h2 {
  max-width: 850px;
}
.metric-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .14);
}
.metric-line div {
  padding: 1.25rem;
  background: rgba(255, 255, 255, .065);
}
.metric-line strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  line-height: 1;
}
.metric-line span {
  color: rgba(255, 255, 255, .74);
  font-size: .95rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: grid;
  align-items: center;
  padding: 5.35rem 0 4.35rem;
  color: var(--white);
  background: var(--sage-dark);
  isolation: isolate;
}
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
}
.page-hero-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 22, 21, .98), rgba(23, 45, 42, .86)),
    linear-gradient(180deg, rgba(16, 22, 21, .18), rgba(16, 22, 21, .52)),
    linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, 0) 34%),
    linear-gradient(0deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, 0) 58%);
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 8px;
  background: linear-gradient(90deg, var(--copper), var(--sage), transparent);
  opacity: .72;
}
.page-hero .wrap {
  position: relative;
  z-index: 2;
  min-width: 0;
}
.page-hero h1 {
  max-width: 940px;
  font-size: 3.85rem;
}
.breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .35rem;
  max-width: 100%;
  margin: 0 0 1.05rem;
  padding: 0 0 .55rem;
  border-bottom: 1px solid rgba(255, 255, 255, .26);
  color: rgba(255, 255, 255, .76);
  font-size: .9rem;
  overflow-wrap: anywhere;
}
.breadcrumbs a { text-decoration: none; }
.content-block {
  min-width: 0;
  max-width: 880px;
  padding: 0;
  border: 0;
  border-left: 4px solid rgba(189, 116, 66, .72);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding-left: clamp(1.15rem, 3vw, 2rem);
}
.content-block > :last-child { margin-bottom: 0; }
.content-block h2 {
  max-width: 760px;
  margin-top: 2rem;
  font-size: 2.35rem;
}
.content-block h2:first-child,
.content-block .section-label + h2 {
  margin-top: 0;
}
.content-block p {
  color: var(--muted);
}
.content-block a {
  color: var(--ink);
  font-weight: 800;
  text-decoration-color: rgba(189, 116, 66, .7);
  text-underline-offset: .22em;
}
.content-block a.button,
.site-footer a.button {
  color: var(--white);
  text-decoration: none;
}
.content-block a.button.secondary {
  color: var(--ink);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1rem;
  margin: -0.2rem 0 1.4rem;
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
  font-weight: 750;
}
.article-meta span {
  display: inline-flex;
  align-items: center;
}
.article-summary,
.article-cta {
  contain: layout paint;
  min-width: 0;
  margin: 1.6rem 0;
  padding: 1.45rem;
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--copper);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, var(--cream), #fbfaf5),
    var(--cream);
  box-shadow: var(--shadow-soft);
}
.article-summary h2,
.article-cta h2 {
  margin: 0 0 .7rem;
  font-size: 1.75rem;
}
.article-summary ul {
  margin: 0;
  padding-left: 1.15rem;
}
.article-summary li + li {
  margin-top: .35rem;
}
.article-cta {
  background:
    linear-gradient(135deg, rgba(23, 45, 42, .98), rgba(31, 37, 35, .94) 60%, rgba(189, 116, 66, .32)),
    var(--sage-dark);
}
.article-cta h2,
.article-cta p {
  color: var(--white);
}
.article-cta p {
  color: rgba(255, 255, 255, .76);
}

.hero a.button:not(.secondary),
.dark a.button:not(.secondary),
.cta a.button:not(.secondary),
.article-cta a.button:not(.secondary),
.feature-card a.button:not(.secondary) {
  background: #fffdfa;
  color: var(--ink);
  border-color: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
}

.hero a.button:not(.secondary):hover,
.hero a.button:not(.secondary):focus-visible,
.dark a.button:not(.secondary):hover,
.dark a.button:not(.secondary):focus-visible,
.cta a.button:not(.secondary):hover,
.cta a.button:not(.secondary):focus-visible,
.article-cta a.button:not(.secondary):hover,
.article-cta a.button:not(.secondary):focus-visible,
.feature-card a.button:not(.secondary):hover,
.feature-card a.button:not(.secondary):focus-visible {
  background: var(--warm);
  border-color: var(--warm);
}

.hero a.button.secondary,
.dark a.button.secondary,
.cta a.button.secondary,
.article-cta a.button.secondary,
section:not(.hero):not(.cta):not(.dark) .article-cta a.button.secondary,
.feature-card a.button.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .46);
  box-shadow: none;
}

.hero a.button.secondary:hover,
.hero a.button.secondary:focus-visible,
.dark a.button.secondary:hover,
.dark a.button.secondary:focus-visible,
.cta a.button.secondary:hover,
.cta a.button.secondary:focus-visible,
.article-cta a.button.secondary:hover,
.article-cta a.button.secondary:focus-visible,
section:not(.hero):not(.cta):not(.dark) .article-cta a.button.secondary:hover,
section:not(.hero):not(.cta):not(.dark) .article-cta a.button.secondary:focus-visible,
.feature-card a.button.secondary:hover,
.feature-card a.button.secondary:focus-visible {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  border-color: rgba(255, 255, 255, .78);
}

.faq details {
  min-width: 0;
  margin: .75rem 0;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 8px 22px rgba(24, 30, 28, .04);
}
.faq details[open] {
  background: var(--cream);
  border-color: rgba(189, 116, 66, .26);
  box-shadow: var(--shadow-soft);
}
.faq details:last-child {
  margin-bottom: 0;
}
.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.4;
}
.faq details p {
  margin-top: .75rem;
}
.faq summary::marker {
  color: var(--copper-dark);
}

.cta {
  background:
    linear-gradient(90deg, rgba(20, 23, 22, .98), rgba(23, 45, 42, .93)),
    url("city-consultancy.jpg") 70% center / cover no-repeat;
  color: var(--white);
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.cta .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}
.cta h2 {
  max-width: 760px;
}
.cta p {
  max-width: 760px;
  margin-bottom: 0;
}

.contact-box { padding: 1.5rem; }
.contact-box.panel,
form.contact-box {
  box-shadow: var(--shadow-soft);
}
.contact-box > p {
  margin-top: 1.2rem;
}
.contact-box dl {
  margin: 0;
  display: grid;
  gap: 1rem;
}
.contact-box div {
  padding-bottom: 1.05rem;
  border-bottom: 1px solid var(--line);
}
.contact-box div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.contact-box dt {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.contact-box dd {
  margin: .12rem 0 0;
  color: var(--ink);
  font-weight: 900;
  overflow-wrap: anywhere;
}
.form-grid {
  display: grid;
  gap: .9rem;
}
label {
  display: grid;
  gap: .35rem;
  color: var(--ink);
  font-weight: 900;
}
input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: .78rem .85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(189, 116, 66, .28);
  outline-offset: 2px;
  border-color: rgba(189, 116, 66, .74);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(189, 116, 66, .08);
}
textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  background:
    linear-gradient(180deg, #1a1d1c, #111413),
    #151716;
  color: rgba(255, 255, 255, .72);
  padding: 3.4rem 0 2rem;
  border-top: 5px solid var(--copper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 2.2rem;
}
.site-footer h3 {
  color: var(--white);
  font-size: .92rem;
  letter-spacing: 0;
  text-transform: uppercase;
}
.site-footer p {
  color: rgba(255, 255, 255, .68);
}
.site-footer a {
  color: rgba(255, 255, 255, .86);
  text-decoration-color: rgba(255, 255, 255, .3);
  text-underline-offset: .22em;
  overflow-wrap: anywhere;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
  text-decoration-color: rgba(231, 160, 107, .9);
}
.footer-links {
  display: grid;
  gap: .55rem;
}
.copyright {
  grid-column: 1 / -1;
  padding-top: 1.45rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .9rem;
}

@media (max-width: 1020px) {
  .nav {
    min-height: 74px;
    gap: 1rem;
  }
  .brand img { width: 136px; }
  .nav-links {
    gap: .18rem;
    font-size: .86rem;
  }
  .nav-links a {
    padding-inline: .48rem;
  }
  h1 { font-size: 4.2rem; }
  h2 { font-size: 2.9rem; }
  .page-hero h1 { font-size: 3.35rem; }
  .hero {
    min-height: auto;
  }
  .hero .wrap {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-strip div:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }
  .trust-strip div:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .14);
  }
  .split,
  .split.reverse,
  .cta .wrap {
    grid-template-columns: 1fr;
  }
  .image-panel:not(.captioned):not(.image-panel-natural) {
    min-height: 280px;
  }
  .split.reverse .grid.two {
    max-width: none;
  }
  .service-list,
  .grid.three,
  .grid.four,
  .visual-band .wrap,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .visual-card-large {
    grid-column: 1 / -1;
    min-height: 380px;
  }
}

@media (max-width: 760px) {
  .site-header {
    background: rgba(247, 243, 234, .98);
  }
  .nav {
    min-height: auto;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: .55rem;
    padding: .68rem 0 .78rem;
  }
  .brand {
    width: 100%;
    justify-content: center;
    padding: 0;
  }
  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: .35rem;
    overflow: visible;
    padding: 0;
  }
  .nav-links a {
    flex: 0 1 auto;
    min-height: 34px;
    padding: .45rem .58rem;
    background: rgba(255, 255, 255, .58);
    font-size: .82rem;
    line-height: 1.1;
    white-space: nowrap;
  }
  .nav-links .active,
  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(255, 255, 255, .9);
  }
  .nav-links a:not(.button)::after {
    display: none;
  }
  .nav-links .button {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    color: var(--white);
    box-shadow: none;
  }
}

@media (max-width: 640px) {
  .wrap,
  .nav,
  .footer-inner {
    width: min(100% - 24px, 1160px);
  }
  .brand img { width: 124px; }
  .button { width: 100%; }
  .nav .button {
    width: auto;
    min-height: 34px;
    padding: .45rem .62rem;
    font-size: .76rem;
  }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(12, 15, 14, .94) 0%, rgba(12, 15, 14, .82) 100%);
  }
  .hero-media img {
    object-position: 58% center;
  }
  .hero .wrap,
  .page-hero {
    padding-top: 4rem;
    padding-bottom: 3.6rem;
  }
  .page-hero {
    min-height: 300px;
  }
  h1 {
    max-width: 100%;
    font-size: 2.64rem;
  }
  h2 {
    font-size: 2.12rem;
  }
  .page-hero h1 {
    font-size: 2.42rem;
  }
  .lead {
    font-size: 1.04rem;
  }
  .actions {
    gap: .65rem;
  }
  section {
    padding: 3.6rem 0;
  }
  .visual-band {
    padding-bottom: 3.6rem;
  }
  .trust-strip,
  .service-list,
  .grid.two,
  .grid.three,
  .grid.four,
  .visual-band .wrap,
  .metric-line,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .grid .card.feature-card {
    grid-column: auto;
  }
  .feature-card h3 {
    font-size: 1.65rem;
  }
  .visual-card,
  .visual-card-large {
    min-height: 280px;
  }
  .trust-strip div,
  .trust-strip div:nth-child(odd),
  .trust-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }
  .trust-strip div:last-child {
    border-bottom: 0;
  }
  .service-row,
  .card {
    min-height: auto;
  }
  .service-row h3 {
    font-size: 1.55rem;
  }
  .content-block {
    padding-left: 1rem;
  }
  .content-block h2 {
    font-size: 2rem;
  }
  .image-panel:not(.captioned):not(.image-panel-natural) {
    min-height: 220px;
  }
  .copyright {
    grid-column: auto;
  }
}

@media (hover: none) {
  .card:hover,
  .service-row:hover,
  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}

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