:root {
  --pine-950: #0d2b1b;
  --pine-900: #123520;
  --pine-800: #173f2a;
  --pine-700: #225d36;
  --green-600: #2f8b3e;
  --green-500: #43a949;
  --lime-500: #91bf3e;
  --lime-300: #c3dc8b;
  --lime-100: #ecf5d9;
  --cream: #f7f8f1;
  --paper: #ffffff;
  --ink: #142319;
  --muted: #5c6b60;
  --line: rgba(20, 35, 25, .14);
  --yellow: #f5d05e;
  --shadow-lg: 0 30px 80px rgba(13, 43, 27, .18);
  --shadow-md: 0 18px 46px rgba(13, 43, 27, .12);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --container-wide: 1380px;
  --header-height: 94px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--pine-950);
  background: var(--lime-300);
}

.sr-only,
.svg-sprite {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--pine-900);
  border-radius: 8px;
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container,
.container-wide {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(calc(100% - 48px), var(--container-wide));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-600);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--pine-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .98;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.45rem, 7vw, 7.45rem);
}

h1 em {
  color: var(--green-600);
  font-weight: 500;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

h3 {
  color: var(--pine-900);
  font-size: 1.22rem;
  line-height: 1.25;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s ease, border-color .25s ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.text-link:focus-visible,
.contact-details a:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.button-primary {
  color: white;
  background: var(--pine-800);
  box-shadow: 0 13px 28px rgba(13, 43, 27, .18);
}

.button-primary:hover {
  background: var(--green-600);
  box-shadow: 0 18px 34px rgba(13, 43, 27, .23);
}

.button-quiet {
  color: var(--pine-900);
  background: rgba(255, 255, 255, .62);
  border-color: rgba(20, 35, 25, .12);
  backdrop-filter: blur(12px);
}

.button-quiet:hover {
  background: white;
  border-color: rgba(20, 35, 25, .22);
}

.section {
  position: relative;
  padding: 130px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 60px;
}

.section-heading > p {
  max-width: 470px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  background: rgba(247, 248, 241, .85);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(1.35);
  transition: min-height .3s var(--ease), background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  min-height: 76px;
  background: rgba(255, 255, 255, .94);
  border-color: var(--line);
  box-shadow: 0 8px 35px rgba(13, 43, 27, .06);
}

.header-inner {
  display: flex;
  min-height: inherit;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  width: 136px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-header.is-scrolled .brand {
  width: 112px;
}

.brand,
.brand img {
  transition: width .3s var(--ease);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.site-nav > a:not(.nav-call) {
  position: relative;
  color: var(--pine-900);
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-call)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--lime-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .25s var(--ease);
}

.site-nav > a:not(.nav-call):hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav-call {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 19px;
  color: white;
  background: var(--pine-800);
  border-radius: 999px;
}

.nav-call span {
  color: var(--lime-300);
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav-call strong {
  font-size: .9rem;
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 940px;
  padding: calc(var(--header-height) + 92px) 0 94px;
  overflow: hidden;
  background:
    radial-gradient(circle at 81% 19%, rgba(145, 191, 62, .22), transparent 27%),
    radial-gradient(circle at 9% 82%, rgba(47, 139, 62, .11), transparent 26%),
    var(--cream);
}

.hero::before {
  position: absolute;
  top: -130px;
  right: -110px;
  width: 530px;
  height: 530px;
  background: rgba(255, 255, 255, .42);
  border: 1px solid rgba(47, 139, 62, .08);
  border-radius: 50%;
  content: "";
}

.hero-topography,
.contact-topography,
.logo-panel-topo {
  position: absolute;
  inset: 0;
  background: url("topography-logo.png") center / cover no-repeat;
  color: var(--green-600);
  pointer-events: none;
}

.hero-topography {
  right: -12%;
  left: 48%;
  opacity: .54;
  transform: rotate(-4deg) scale(1.14);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, .82fr);
  align-items: center;
  gap: clamp(45px, 6vw, 100px);
}

.hero-copy {
  padding-top: 12px;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 32px;
  color: #3f5145;
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.credential-list {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.credential-list li {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, .54);
  border: 1px solid rgba(20, 35, 25, .08);
  border-radius: 16px;
}

.credential-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: white;
  background: var(--green-600);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.credential-list li span:last-child {
  color: var(--muted);
  font-size: .79rem;
  line-height: 1.35;
}

.credential-list strong {
  display: block;
  color: var(--pine-900);
  font-size: .84rem;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: 9%;
  right: -13%;
  width: 53%;
  aspect-ratio: 1;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
  opacity: .92;
}

.hero-card {
  position: relative;
  max-width: 590px;
  padding: 16px;
  margin-left: auto;
  overflow: hidden;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 44px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.4deg);
}

.hero-card > img {
  width: 100%;
  border-radius: 31px;
}

.hero-card-brand {
  position: absolute;
  z-index: 3;
  top: 92px;
  left: 34px;
  display: grid;
  width: 126px;
  aspect-ratio: 640 / 566;
  place-items: center;
  padding: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(20, 35, 25, .09);
  border-radius: 17px;
  box-shadow: 0 13px 32px rgba(13, 43, 27, .16);
  transform: rotate(-2.5deg);
  backdrop-filter: blur(10px);
}

.hero-card-brand img {
  width: 100%;
  height: auto;
}

.hero-card-label {
  position: absolute;
  z-index: 2;
  top: 32px;
  left: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  color: var(--pine-900);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(20, 35, 25, .08);
  border-radius: 999px;
  box-shadow: 0 7px 20px rgba(13, 43, 27, .08);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-card-label span {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(67, 169, 73, .14);
}

.hero-card-note {
  position: absolute;
  right: 29px;
  bottom: 28px;
  left: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  color: white;
  background: rgba(13, 43, 27, .88);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 20px;
  backdrop-filter: blur(14px);
}

.hero-card-note strong {
  white-space: nowrap;
  font-size: .88rem;
}

.hero-card-note span {
  max-width: 235px;
  color: rgba(255, 255, 255, .68);
  font-size: .73rem;
  line-height: 1.45;
  text-align: right;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--pine-700);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll i {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(34, 93, 54, .34);
  border-radius: 50%;
}

.hero-scroll i::before {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 1px;
  height: 12px;
  background: var(--green-600);
  content: "";
  transform: translateX(-50%);
  animation: scroll-mark 1.6s ease-in-out infinite;
}

@keyframes scroll-mark {
  0%, 100% { transform: translate(-50%, 0); opacity: .45; }
  50% { transform: translate(-50%, 5px); opacity: 1; }
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 4;
  color: white;
  background: var(--pine-900);
}

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

.trust-grid > div {
  display: grid;
  min-height: 142px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 18px;
  padding: 30px clamp(25px, 3vw, 48px);
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.trust-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.trust-grid > div > span {
  color: var(--lime-500);
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .61);
  font-size: .83rem;
  line-height: 1.55;
}

.trust-grid strong {
  display: block;
  margin-bottom: 3px;
  color: white;
  font-size: .92rem;
}

/* Services */
.services {
  background: white;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 40px 34px 34px;
  overflow: hidden;
  background: white;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color .3s ease, transform .3s var(--ease), box-shadow .3s var(--ease);
}

.service-card::before {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  background: var(--lime-100);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: scale(.7);
  transition: opacity .3s ease, transform .45s var(--ease);
}

.service-card:hover {
  z-index: 2;
  background: #fbfdf8;
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.service-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.service-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 58px;
  fill: none;
  stroke: var(--green-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.service-number {
  position: absolute;
  top: 42px;
  right: 34px;
  color: #9aa79d;
  font-family: Georgia, serif;
  font-size: .9rem;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-size: 1.33rem;
}

.service-card p {
  position: relative;
  z-index: 1;
  max-width: 295px;
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
}

.service-card-accent {
  color: white;
  background: var(--green-600);
}

.service-card-accent:hover {
  background: var(--pine-800);
}

.service-card-accent h3,
.service-card-accent .service-number {
  color: white;
}

.service-card-accent p {
  color: rgba(255, 255, 255, .73);
}

.service-card-accent svg {
  stroke: var(--yellow);
}

.service-card-accent::before {
  background: rgba(255, 255, 255, .07);
}

/* About */
.about {
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 15%, rgba(145, 191, 62, .14), transparent 23%),
    var(--cream);
}

.about::after {
  position: absolute;
  top: 0;
  right: -8%;
  width: 41%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .42));
  content: "";
  pointer-events: none;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, .87fr) minmax(0, 1.13fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.about-visual {
  position: relative;
  padding: 28px 34px 48px 0;
}

.logo-panel {
  position: relative;
  min-height: 605px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 58px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(20, 35, 25, .09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.logo-panel-topo {
  opacity: .22;
  transform: scale(1.3) rotate(8deg);
}

.logo-panel::before {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 62px;
  height: 62px;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
}

.logo-panel img {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  height: auto;
  box-shadow: 0 18px 44px rgba(13, 43, 27, .13);
}

.logo-panel p {
  position: absolute;
  z-index: 3;
  right: 36px;
  bottom: 28px;
  left: 36px;
  margin: 0;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}

.about-stat {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  min-width: 255px;
  align-items: center;
  gap: 18px;
  padding: 21px 24px;
  color: white;
  background: var(--pine-900);
  border: 7px solid var(--cream);
  border-radius: 24px;
  box-shadow: 0 15px 38px rgba(13, 43, 27, .17);
}

.about-stat strong {
  color: var(--lime-500);
  font-family: Georgia, serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

.about-stat span {
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-copy h2 {
  margin-bottom: 28px;
}

.about-intro {
  max-width: 650px;
  margin-bottom: 42px;
  color: #435349;
  font-size: 1.12rem;
  line-height: 1.78;
}

.team-list {
  margin-bottom: 36px;
  border-top: 1px solid var(--line);
}

.team-member {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.team-initials {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--pine-900);
  background: var(--lime-300);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.08rem;
}

.team-member:nth-child(2) .team-initials {
  color: white;
  background: var(--green-600);
}

.team-role {
  margin: 0 0 5px;
  color: var(--green-600);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.team-member h3 {
  margin-bottom: 9px;
  font-family: Georgia, serif;
  font-size: 1.48rem;
  font-weight: 500;
}

.team-member div:last-child > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.68;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  color: var(--pine-900);
  border-bottom: 2px solid var(--lime-500);
  font-size: .9rem;
  font-weight: 800;
}

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

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

/* Project support */
.projects {
  color: white;
  background: var(--pine-900);
}

.projects::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background: url("topography-logo.png") center / cover no-repeat;
  color: var(--lime-500);
  content: "";
  opacity: .18;
}

.section-heading-light {
  position: relative;
  z-index: 1;
}

.section-heading-light h2 {
  color: white;
}

.section-heading-light .eyebrow {
  color: var(--lime-500);
}

.section-heading-light > p {
  color: rgba(255, 255, 255, .63);
}

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

.project-card {
  position: relative;
  min-height: 420px;
  padding: 34px 34px 38px;
  overflow: hidden;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  transition: background-color .3s ease, transform .3s var(--ease), border-color .3s ease;
}

.project-card:hover {
  background: rgba(255, 255, 255, .095);
  border-color: rgba(145, 191, 62, .55);
  transform: translateY(-7px);
}

.project-index {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--pine-900);
  background: var(--yellow);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.project-line {
  position: absolute;
  border: 1px solid rgba(145, 191, 62, .36);
  pointer-events: none;
}

.project-line::before,
.project-line::after {
  position: absolute;
  border: 1px solid rgba(145, 191, 62, .24);
  border-radius: inherit;
  content: "";
}

.project-line-a {
  top: 30px;
  right: -42px;
  width: 185px;
  height: 185px;
  border-radius: 47% 53% 67% 33% / 41% 44% 56% 59%;
  transform: rotate(22deg);
}

.project-line-a::before { inset: 17px; }
.project-line-a::after { inset: 35px; }

.project-line-b {
  top: 42px;
  right: -58px;
  width: 232px;
  height: 142px;
  border-radius: 64% 36% 53% 47% / 58% 64% 36% 42%;
  transform: rotate(-13deg);
}

.project-line-b::before {
  inset: 15px 24px 19px 18px;
  transform: rotate(7deg);
}

.project-line-b::after {
  inset: 33px 49px 39px 43px;
  transform: rotate(-6deg);
}

.project-line-c {
  top: 18px;
  right: -18px;
  width: 168px;
  height: 224px;
  border-radius: 39% 61% 42% 58% / 62% 35% 65% 38%;
  transform: rotate(34deg);
}

.project-line-c::before {
  inset: 18px 13px 23px 22px;
  transform: rotate(-9deg);
}

.project-line-c::after {
  inset: 42px 34px 54px 41px;
  transform: rotate(11deg);
}

.project-kicker {
  margin: 116px 0 14px;
  color: var(--lime-500);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-card h3 {
  max-width: 330px;
  margin-bottom: 17px;
  color: white;
  font-family: Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.project-card > p:last-child {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: .9rem;
  line-height: 1.7;
}

/* Contact */
.contact {
  overflow: hidden;
  background: var(--lime-100);
}

.contact-topography {
  right: 53%;
  left: -18%;
  color: var(--green-600);
  opacity: .25;
  transform: rotate(5deg) scale(1.25);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(480px, 1.18fr);
  align-items: start;
  gap: clamp(60px, 8vw, 110px);
}

.contact-copy {
  padding-top: 22px;
}

.contact-copy h2 {
  max-width: 520px;
  margin-bottom: 28px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 42px;
  color: #435349;
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-details {
  margin: 0 0 38px;
  border-top: 1px solid rgba(20, 35, 25, .17);
}

.contact-details > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(20, 35, 25, .17);
}

.contact-details dt {
  color: var(--green-600);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  color: var(--pine-900);
  font-size: .96rem;
  font-weight: 700;
  line-height: 1.55;
}

.contact-details a:hover {
  color: var(--green-600);
}

.bridge-status {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 17px;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(20, 35, 25, .09);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.bridge-status > span {
  position: relative;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(67, 169, 73, .14);
}

.bridge-status > span::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--green-500);
  border-radius: 50%;
  content: "";
  animation: bridge-pulse 2.1s ease-out infinite;
}

@keyframes bridge-pulse {
  0% { transform: scale(.65); opacity: .85; }
  80%, 100% { transform: scale(1.55); opacity: 0; }
}

.bridge-status p {
  margin: 0;
  line-height: 1.35;
}

.bridge-status strong {
  display: block;
  color: var(--pine-900);
  font-size: .78rem;
}

.bridge-status small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .68rem;
}

.contact-form {
  padding: clamp(32px, 4vw, 54px);
  background: white;
  border: 1px solid rgba(20, 35, 25, .09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 23px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.form-heading p {
  margin: 0;
  color: var(--pine-900);
  font-family: Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
}

.form-heading span {
  color: var(--muted);
  font-size: .68rem;
}

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

.form-grid label {
  display: block;
}

.form-grid label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--pine-900);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.field-wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #fbfcf8;
  border: 1px solid rgba(20, 35, 25, .16);
  border-radius: 12px;
  outline: none;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

input,
select {
  height: 52px;
  padding: 0 15px;
}

textarea {
  min-height: 135px;
  padding: 14px 15px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: white;
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(47, 139, 62, .11);
}

[aria-invalid="true"] {
  border-color: #b83a3a;
  box-shadow: 0 0 0 4px rgba(184, 58, 58, .09);
}

.button-submit {
  width: 100%;
  margin-top: 26px;
}

.form-note {
  margin: 13px 0 0;
  color: #89948c;
  font-size: .68rem;
  text-align: center;
}

.form-message {
  padding: 14px 16px;
  margin-top: 16px;
  color: var(--pine-900);
  background: var(--lime-100);
  border: 1px solid rgba(47, 139, 62, .2);
  border-radius: 12px;
  font-size: .82rem;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  color: white;
  background: var(--pine-950);
}

.footer-grid {
  display: grid;
  min-height: 250px;
  grid-template-columns: 170px minmax(220px, 1fr) auto;
  align-items: center;
  gap: 45px;
  padding-top: 38px;
  padding-bottom: 58px;
}

.footer-brand {
  width: 145px;
  padding: 8px;
  background: white;
  border-radius: 14px;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: .86rem;
  line-height: 1.65;
}

.footer-copy strong {
  color: white;
}

.footer-legal {
  margin-top: 15px !important;
  color: rgba(255, 255, 255, .38) !important;
  font-size: .69rem !important;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, .73);
}

.footer-links a:hover {
  color: var(--lime-500);
}

.footer-powered {
  grid-column: 1 / -1;
  padding-top: 24px;
  margin: -16px 0 0;
  color: rgba(255, 255, 255, .35);
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: .67rem;
  letter-spacing: .04em;
  text-align: right;
}

.footer-powered strong {
  color: var(--lime-500);
}

/* Scroll reveals */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.js .reveal-delay-1 {
  transition-delay: .12s;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1180px) {
  :root {
    --header-height: 86px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 110px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
    gap: 45px;
  }

  h1 {
    font-size: clamp(3.6rem, 7vw, 6rem);
  }

  .credential-list {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .credential-list li {
    min-height: 58px;
  }

  .hero-card-note {
    display: block;
  }

  .hero-card-note span {
    display: block;
    margin-top: 3px;
    text-align: left;
  }

  .about-grid {
    grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
    gap: 60px;
  }

  .logo-panel {
    min-height: 520px;
    padding: 42px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 78px;
  }

  .container,
  .container-wide {
    width: min(calc(100% - 38px), var(--container));
  }

  .site-header {
    background: rgba(255, 255, 255, .95);
    border-bottom-color: var(--line);
  }

  .brand,
  .site-header.is-scrolled .brand {
    width: 102px;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    padding: 0;
    color: white;
    background: var(--pine-900);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
  }

  .menu-toggle-lines {
    display: flex;
    width: 20px;
    flex-direction: column;
    gap: 4px;
  }

  .menu-toggle-lines i {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 110px 30px 40px;
    color: white;
    background: var(--pine-950);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .3s var(--ease);
  }

  .site-nav::before {
    position: absolute;
    inset: 0;
    background: url("topography-logo.png") center / cover no-repeat;
    color: var(--lime-500);
    content: "";
    opacity: .12;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.nav-call) {
    position: relative;
    z-index: 1;
    padding: 17px 0;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
    font-family: Georgia, serif;
    font-size: clamp(1.75rem, 6vw, 2.6rem);
    font-weight: 500;
    letter-spacing: -.02em;
    text-transform: none;
  }

  .site-nav > a:not(.nav-call)::after {
    display: none;
  }

  .nav-call {
    position: relative;
    z-index: 1;
    justify-content: center;
    margin-top: 28px;
    background: var(--green-600);
  }

  .hero {
    padding-top: 132px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 650px);
    margin: 10px auto 0;
  }

  .hero-topography {
    right: -25%;
    left: 35%;
  }

  .credential-list {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }

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

  .trust-grid > div {
    min-height: 105px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 650px;
  }

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

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

  .about-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .about-copy {
    max-width: 760px;
  }

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

  .project-card {
    min-height: 340px;
  }

  .project-kicker {
    margin-top: 80px;
  }

  .contact-copy {
    max-width: 720px;
  }

  .contact-form {
    width: min(100%, 760px);
  }

  .footer-grid {
    grid-template-columns: 145px 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  html {
    scroll-padding-top: 84px;
  }

  .container,
  .container-wide {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .brand,
  .site-header.is-scrolled .brand {
    width: 91px;
  }

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

  .hero {
    padding: 116px 0 92px;
  }

  .hero::before {
    width: 340px;
    height: 340px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .credential-list {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 9px;
    border-radius: 29px;
    transform: none;
  }

  .hero-card > img {
    border-radius: 21px;
  }

  .hero-card-label {
    top: 21px;
    left: 20px;
    max-width: calc(100% - 40px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-card-brand {
    top: 76px;
    left: 20px;
    width: 94px;
    padding: 6px;
    border-radius: 13px;
  }

  .hero-card-note {
    right: 17px;
    bottom: 17px;
    left: 17px;
    padding: 13px 15px;
    border-radius: 15px;
  }

  .hero-card-note span {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .trust-grid > div {
    grid-template-columns: 35px 1fr;
    padding: 24px 19px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

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

  .service-card {
    min-height: 286px;
    padding: 32px 27px;
  }

  .service-card svg {
    margin-bottom: 46px;
  }

  .service-number {
    top: 34px;
    right: 27px;
  }

  .about-visual {
    padding: 0 8px 47px 0;
  }

  .logo-panel {
    min-height: 420px;
    padding: 36px 27px 63px;
    border-radius: 28px;
  }

  .about-stat {
    min-width: 230px;
    padding: 16px 19px;
    border-width: 5px;
  }

  .about-stat strong {
    font-size: 2.4rem;
  }

  .about-intro {
    font-size: 1rem;
  }

  .team-member {
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }

  .team-initials {
    width: 50px;
    height: 50px;
    font-size: .9rem;
  }

  .project-card {
    min-height: 365px;
    padding: 27px 26px 32px;
  }

  .project-kicker {
    margin-top: 96px;
  }

  .contact-topography {
    right: 20%;
  }

  .contact-details > div {
    grid-template-columns: 82px 1fr;
  }

  .contact-form {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .footer-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 58px;
  }

  .footer-brand {
    width: 120px;
  }

  .footer-links {
    grid-column: auto;
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .footer-powered {
    grid-column: auto;
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

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

/* v0.1.2 — logo-derived topography and About-card collision cleanup */
.hero-topography,
.contact-topography,
.logo-panel-topo {
  background-image: url("topography-logo.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.projects::before,
.site-nav::before {
  background-image: url("topography-logo.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.logo-panel-topo {
  opacity: .16;
  transform: scale(1.2) rotate(-3deg);
}

.logo-panel p {
  right: 292px;
  bottom: 42px;
  left: 42px;
  max-width: 310px;
  line-height: 1.45;
  text-align: left;
}

.project-line {
  display: none;
}

.project-card::before {
  position: absolute;
  z-index: 0;
  top: 16px;
  right: -18px;
  width: 230px;
  height: 150px;
  background-image: url("topography-logo.png");
  background-repeat: no-repeat;
  background-size: 430px auto;
  content: "";
  opacity: .27;
  pointer-events: none;
}

.project-card:nth-child(1)::before {
  background-position: 18% 28%;
  transform: rotate(-7deg) scale(1.02);
}

.project-card:nth-child(2)::before {
  top: 26px;
  right: -34px;
  width: 252px;
  height: 166px;
  background-position: 57% 42%;
  transform: rotate(8deg) scale(1.12);
}

.project-card:nth-child(3)::before {
  top: 6px;
  right: -8px;
  width: 218px;
  height: 184px;
  background-position: 88% 20%;
  transform: rotate(-15deg) scale(1.08);
}

.project-card > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .logo-panel p {
    right: 28px;
    bottom: 82px;
    left: 28px;
    max-width: none;
    text-align: center;
  }

  .about-stat {
    right: 4px;
  }
}


/* v0.1.3 — thin, varied, logo-family contour system */
.hero-topography {
  background-image: url("contour-hero.svg");
  background-size: cover;
  background-position: center;
  opacity: .48;
  transform: none;
}
.projects::before {
  width: 100%;
  background-image: url("contour-section.svg");
  background-size: cover;
  background-position: center;
  opacity: .42;
}
.contact-topography {
  background-image: url("contour-contact.svg");
  background-size: cover;
  background-position: center;
  opacity: .56;
  transform: none;
}
.logo-panel-topo {
  background-image: url("contour-hero.svg");
  background-size: cover;
  background-position: 56% 48%;
  opacity: .23;
  transform: none;
}
.site-nav::before {
  background-image: url("contour-section.svg");
  background-size: 780px auto;
  background-position: 68% 43%;
}
.project-card::before {
  top: 0; right: 0; bottom: 0; left: 0;
  width: auto; height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: .72;
  transform: none !important;
}
.project-card:nth-child(1)::before { background-image: url("contour-card-a.svg"); background-position: 55% 20%; }
.project-card:nth-child(2)::before { background-image: url("contour-card-b.svg"); background-position: 45% 22%; }
.project-card:nth-child(3)::before { background-image: url("contour-card-c.svg"); background-position: 50% 16%; }


/* v0.2.0 — launch hardening + authentic Square 1 logo contour field */
.hero-topography,
.contact-topography,
.logo-panel-topo,
.projects::before,
.site-nav::before,
.project-card::before {
  background-repeat: no-repeat;
}

/* These assets are centerlines extracted directly from the supplied vector logo. */
.hero-topography {
  right: -6%;
  left: 42%;
  background-image: url("contour-logo-light.png");
  background-size: 118% auto;
  background-position: 52% 42%;
  opacity: .34;
}

.logo-panel-topo {
  background-image: url("contour-logo-light.png");
  background-size: 176% auto;
  background-position: 48% 43%;
  opacity: .17;
}

.projects::before {
  right: -4%;
  width: 72%;
  background-image: url("contour-logo-dark.png");
  background-size: 124% auto;
  background-position: 54% 48%;
  opacity: .16;
}

.contact-topography {
  right: 48%;
  left: -12%;
  background-image: url("contour-logo-light.png");
  background-size: 146% auto;
  background-position: 64% 48%;
  opacity: .24;
}

.site-nav::before {
  background-image: url("contour-logo-dark.png");
  background-size: 152% auto;
  background-position: 78% 38%;
}

.project-card::before {
  background-image: url("contour-logo-dark.png") !important;
  background-repeat: no-repeat;
  opacity: .23;
}

.project-card:nth-child(1)::before {
  background-size: 245% auto;
  background-position: 4% 26%;
}

.project-card:nth-child(2)::before {
  background-size: 278% auto;
  background-position: 51% 48%;
}

.project-card:nth-child(3)::before {
  background-size: 238% auto;
  background-position: 97% 20%;
}

.contact-socials {
  padding-top: 2px;
}

.contact-socials > p {
  margin: 0 0 10px;
  color: var(--green-600);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.social-links,
[data-social-links] {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a,
[data-social-links] a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--pine-900);
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(20,35,25,.12);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.social-links a:hover,
[data-social-links] a:hover {
  background: white;
  border-color: rgba(47,139,62,.42);
  transform: translateY(-1px);
}

.footer-links [data-social-links] {
  display: contents;
}

.footer-links [data-social-links] a {
  min-height: 0;
  padding: 0;
  color: rgba(255,255,255,.68);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: inherit;
  font-weight: inherit;
}

.footer-links [data-social-links] a:hover {
  color: white;
  background: transparent;
  transform: none;
}

.contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.button-submit[disabled] {
  cursor: wait;
  opacity: .7;
}

.form-message[data-state="success"] {
  color: var(--pine-900);
  background: #eff7dd;
  border-color: rgba(47,139,62,.28);
}

.form-message[data-state="error"] {
  color: #6e2323;
  background: #fff2f2;
  border-color: rgba(184,58,58,.22);
}

@media (max-width: 960px) {
  .hero-topography {
    left: 20%;
    background-size: 160% auto;
    background-position: 48% 32%;
    opacity: .25;
  }
  .projects::before {
    right: -18%;
    width: 118%;
    background-size: 155% auto;
  }
  .contact-topography {
    right: 16%;
    left: -30%;
    background-size: 170% auto;
  }
}

@media (max-width: 720px) {
  .project-card:nth-child(1)::before { background-size: 190% auto; background-position: 3% 26%; }
  .project-card:nth-child(2)::before { background-size: 210% auto; background-position: 52% 47%; }
  .project-card:nth-child(3)::before { background-size: 185% auto; background-position: 98% 20%; }
}
