/* ============================================================
   REDLEAF — Red Leaf Advisory Inc. (Toronto)
   Dark maple theme: deep spruce + maple ember + warm birch
   ============================================================ */

:root {
  --spruce: #12251D;
  --panel: #1B332A;
  --hairline: #274034;
  --ember: #C8452F;
  --ember-deep: #A93A28;
  --birch: #F2EFE6;
  --cream: #FAF6EC;
  --moss: #9AA899;
  --birch-cream: #E4D6B8;
  --blush: #F7D9CF;
  --footer-grey: #B9C4B7;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-size: 16px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background-color: #12251D;
  color: #F2EFE6;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", "Noto Serif", serif;
  color: #FAF6EC;
  line-height: 1.15;
  font-weight: 700;
}

p { color: #F2EFE6; }

a { color: #E4D6B8; text-decoration: none; }
a:hover { color: #C8452F; }

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

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

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

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid #C8452F;
  outline-offset: 2px;
}

/* ---------------- Reveal animation (JS enhanced, safe without JS) ---------------- */

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ---------------- Centered wordmark navigation ---------------- */

.center-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background-color: #12251D;
  border-bottom: 1px solid #274034;
}

.nav-inner { text-align: center; }

.wordmark-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 22px;
}

.chev {
  width: 13px;
  height: 13px;
  border-top: 3px solid #C8452F;
  border-right: 3px solid #C8452F;
  display: inline-block;
  flex: none;
}
.chev-l { transform: rotate(45deg); }
.chev-r { transform: rotate(225deg); }

.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #FAF6EC;
  margin-right: -0.22em;
}
.wordmark:hover { color: #C8452F; }

.site-nav { padding: 14px 0 0; }

.site-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.site-nav li { display: flex; align-items: stretch; }

.site-nav li + li { border-left: 1px solid #274034; }

.site-nav a {
  display: block;
  padding: 10px 22px 16px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F2EFE6;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}
.site-nav a:hover {
  color: #C8452F;
  border-bottom-color: #C8452F;
}

.nav-toggle {
  display: none;
  background: #1B332A;
  border: 1px solid #274034;
  width: 46px;
  height: 40px;
  cursor: pointer;
  margin: 14px auto 0;
  padding: 9px 10px;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background-color: #E4D6B8;
  margin: 0 0 5px;
}
.nav-toggle span:last-child { margin-bottom: 0; }
.nav-toggle:hover span { background-color: #C8452F; }

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-block;
  padding: 15px 30px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  border: 2px solid #C8452F;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background-color: #C8452F;
  color: #FAF6EC;
}
.btn-primary:hover {
  background-color: #A93A28;
  border-color: #A93A28;
  color: #FAF6EC;
}
.btn-outline {
  background-color: #12251D;
  color: #E4D6B8;
  border-color: #E4D6B8;
}
.btn-outline:hover {
  background-color: #E4D6B8;
  color: #12251D;
}

/* ---------------- Giant background word hero ---------------- */

.word-hero {
  position: relative;
  background-color: #12251D;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bg-word {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(64px, 18.5vw, 220px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #1B332A;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 130px;
  padding-bottom: 40px;
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C8452F;
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 9px;
  height: 9px;
  background-color: #E4D6B8;
  border-radius: 50%;
  flex: none;
}

.word-hero h1 {
  font-size: clamp(38px, 5.4vw, 60px);
  max-width: 760px;
  margin-bottom: 26px;
}
.word-hero h1 .accent { color: #C8452F; }

.hero-copy {
  max-width: 660px;
  font-size: 18px;
  line-height: 1.75;
  color: #9AA899;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.hero-note {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #9AA899;
}
.hero-note strong { color: #E4D6B8; font-weight: 700; }

/* Tree-line silhouette strip */

.tree-line {
  position: relative;
  height: 62px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  flex: none;
  z-index: 1;
}
.tree-line i {
  display: block;
  width: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-bottom: 30px solid #1B332A;
  flex: none;
}
.tree-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background-color: #1B332A;
}

/* ---------------- Alternating blocks ---------------- */

.alternating-blocks {
  background-color: #12251D;
  padding: 40px 0 70px;
}

.alt-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 54px 0;
  border-bottom: 1px solid #274034;
}
.alt-block:last-child { border-bottom: 0; }

.alt-block.flip .alt-visual { order: 2; }
.alt-block.flip .alt-text { order: 1; }

.alt-visual {
  background-color: #1B332A;
  border: 1px solid #274034;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.alt-text h3 {
  font-size: 28px;
  margin-bottom: 16px;
}
.alt-text p {
  color: #F2EFE6;
  line-height: 1.75;
}

.tick-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9AA899;
}
.tick {
  width: 10px;
  height: 10px;
  background-color: #C8452F;
  transform: rotate(45deg);
  flex: none;
}

/* Composition 1: maple leaf */

.v-leaf { position: relative; width: 240px; height: 250px; }
.v-leaf .lf-diamond {
  position: absolute;
  left: 50%;
  top: 84px;
  width: 100px;
  height: 100px;
  margin-left: -50px;
  background-color: #C8452F;
  transform: rotate(45deg);
}
.v-leaf .lf-vein {
  position: absolute;
  left: 50%;
  width: 26px;
  height: 26px;
  margin-left: -13px;
  border-top: 4px solid #E4D6B8;
  border-right: 4px solid #E4D6B8;
  transform: rotate(-45deg);
}
.v-leaf .lf-vein-1 { top: 106px; }
.v-leaf .lf-vein-2 { top: 136px; }
.v-leaf .lf-wing {
  position: absolute;
  top: 122px;
  width: 20px;
  height: 20px;
  border-top: 4px solid #C8452F;
  border-right: 4px solid #C8452F;
}
.v-leaf .lf-wing-l { left: 14px; transform: rotate(225deg); }
.v-leaf .lf-wing-r { right: 14px; transform: rotate(45deg); }
.v-leaf .lf-stem {
  position: absolute;
  left: 50%;
  top: 192px;
  width: 8px;
  height: 44px;
  margin-left: -4px;
  background-color: #C8452F;
}

/* Composition 2: compass diamond with stem */

.v-compass { position: relative; width: 240px; height: 250px; }
.v-compass .cp-n {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  background-color: #E4D6B8;
}
.v-compass .cp-diamond {
  position: absolute;
  left: 50%;
  top: 52px;
  width: 118px;
  height: 118px;
  margin-left: -59px;
  border: 4px solid #E4D6B8;
  transform: rotate(45deg);
}
.v-compass .cp-core {
  position: absolute;
  left: 50%;
  top: 94px;
  width: 34px;
  height: 34px;
  margin-left: -17px;
  background-color: #C8452F;
  transform: rotate(45deg);
}
.v-compass .cp-stem {
  position: absolute;
  left: 50%;
  top: 190px;
  width: 8px;
  height: 46px;
  margin-left: -4px;
  background-color: #C8452F;
}

/* Composition 3: rising chevron stairs */

.v-stairs {
  display: flex;
  align-items: flex-end;
  gap: 34px;
  height: 220px;
}
.v-stairs .st-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.v-stairs .st-step:nth-child(1) { margin-bottom: 14px; }
.v-stairs .st-step:nth-child(2) { margin-bottom: 72px; }
.v-stairs .st-step:nth-child(3) { margin-bottom: 130px; }
.v-stairs .st-chev {
  width: 32px;
  height: 32px;
  border-top: 6px solid #E4D6B8;
  border-right: 6px solid #E4D6B8;
  transform: rotate(-45deg);
}
.v-stairs .st-step:nth-child(3) .st-chev {
  border-top-color: #C8452F;
  border-right-color: #C8452F;
}
.v-stairs .st-bar {
  width: 52px;
  height: 6px;
  margin-top: 12px;
  background-color: #E4D6B8;
}
.v-stairs .st-step:nth-child(3) .st-bar { background-color: #C8452F; }

/* Composition 4: network of three leaf nodes */

.v-network { position: relative; width: 240px; height: 220px; }
.v-network .nw-line {
  position: absolute;
  height: 3px;
  background-color: #E4D6B8;
  transform-origin: left center;
}
.v-network .nw-l1 { left: 44px; top: 132px; width: 128px; transform: rotate(-50deg); }
.v-network .nw-l2 { left: 126px; top: 34px; width: 112px; transform: rotate(56deg); }
.v-network .nw-l3 { left: 44px; top: 136px; width: 148px; transform: rotate(-4deg); }
.v-network .nw-node {
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: #C8452F;
  border: 3px solid #E4D6B8;
  transform: rotate(45deg);
}
.v-network .nw-n1 { left: 32px; top: 122px; }
.v-network .nw-n2 { left: 112px; top: 22px; }
.v-network .nw-n3 { left: 172px; top: 124px; }

/* ---------------- Canopy strip ---------------- */

.canopy-strip {
  background-color: #1B332A;
  border-top: 1px solid #274034;
  border-bottom: 1px solid #274034;
  padding: 70px 0 78px;
  text-align: center;
}

.canopy-title {
  font-size: 32px;
  margin-bottom: 12px;
}
.canopy-sub {
  color: #9AA899;
  max-width: 640px;
  margin: 0 auto;
}

.canopy-row {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 76px;
  margin-top: 58px;
}
.canopy-row::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 4%;
  right: 4%;
  height: 2px;
  background-color: #274034;
}

.canopy-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leaf-glyph { position: relative; width: 22px; }
.leaf-glyph .lg-diamond {
  display: block;
  width: 22px;
  height: 22px;
  transform: rotate(45deg);
}
.leaf-glyph .lg-stem {
  display: block;
  width: 3px;
  height: 13px;
  margin: 7px auto 0;
}
.leaf-glyph.birch .lg-diamond, .leaf-glyph.birch .lg-stem { background-color: #E4D6B8; }
.leaf-glyph.ember .lg-diamond, .leaf-glyph.ember .lg-stem { background-color: #C8452F; }

.canopy-label {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F2EFE6;
}

/* ---------------- Metric band ---------------- */

.metric-band {
  background-color: #C8452F;
  padding: 66px 0;
}

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

.metric { text-align: center; padding: 6px 18px; }
.metric + .metric { border-left: 1px solid #F7D9CF; }

.metric-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  color: #FAF6EC;
  margin-bottom: 12px;
}

.metric-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F7D9CF;
}

/* ---------------- Statement band ---------------- */

.statement-band {
  background-color: #12251D;
  padding: 96px 0;
}

.statement {
  border-left: 10px solid #C8452F;
  padding: 8px 0 8px 36px;
  max-width: 900px;
}
.statement p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.55;
  color: #FAF6EC;
}
.statement::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: #E4D6B8;
  margin-top: 26px;
}

/* ---------------- CTA band ---------------- */

.cta-band {
  background-color: #1B332A;
  border-top: 1px solid #274034;
  padding: 84px 0;
  text-align: center;
}
.cta-band h2 { font-size: 36px; margin-bottom: 16px; }
.cta-band p {
  color: #9AA899;
  max-width: 640px;
  margin: 0 auto 32px;
}

/* ---------------- Bus footer ---------------- */

.bus-footer {
  background-color: #12251D;
  border-top: 4px solid #C8452F;
  padding-top: 60px;
}

.bus-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
  padding-bottom: 46px;
}

.bus-col { padding: 0 30px; }
.bus-col:first-child { padding-left: 0; }
.bus-col + .bus-col { border-left: 1px solid #274034; }

.bus-col::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #C8452F;
  margin-bottom: 18px;
}

.bus-col h3 {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FAF6EC;
  margin-bottom: 18px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.brand-word {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #FAF6EC;
}

.bus-blurb {
  color: #B9C4B7;
  font-size: 15px;
  line-height: 1.75;
}

.bus-col ul { list-style: none; }
.bus-col li { margin-bottom: 11px; color: #B9C4B7; font-size: 15px; }
.bus-col li a {
  color: #F2EFE6;
  text-decoration: none;
}
.bus-col li a:hover {
  color: #C8452F;
  text-decoration: underline;
}

.bus-col .contact-list li { line-height: 1.6; }

.legal-line {
  border-top: 1px solid #274034;
  padding-top: 22px;
  padding-bottom: 26px;
}
.legal-line p {
  color: #B9C4B7;
  font-size: 13.5px;
}
.legal-line a { color: #B9C4B7; text-decoration: underline; }
.legal-line a:hover { color: #C8452F; }

/* ---------------- Secondary page hero ---------------- */

.page-hero {
  background-color: #1B332A;
  border-bottom: 1px solid #274034;
  padding: 78px 0 70px;
}
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 {
  font-size: clamp(34px, 4.6vw, 52px);
  max-width: 820px;
  margin-bottom: 20px;
}
.page-hero .hero-copy { margin-bottom: 0; }

/* ---------------- Services page ---------------- */

.service-section {
  background-color: #12251D;
  padding: 30px 0 40px;
}

.service-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 34px;
  padding: 48px 0;
  border-bottom: 1px solid #274034;
}
.service-row:last-child { border-bottom: 0; }

.service-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 700;
  color: #C8452F;
  line-height: 1;
  padding-top: 4px;
}

.service-row h2 {
  font-size: 30px;
  margin-bottom: 16px;
}
.service-row p {
  color: #F2EFE6;
  margin-bottom: 14px;
  line-height: 1.75;
}
.service-row p:last-child { margin-bottom: 0; }
.service-row p strong { color: #E4D6B8; }

.process-band {
  background-color: #1B332A;
  border-top: 1px solid #274034;
  padding: 76px 0 82px;
}
.process-band h2 {
  font-size: 34px;
  text-align: center;
  margin-bottom: 12px;
}
.process-band .canopy-sub { text-align: center; margin-bottom: 46px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.process-step { border-top: 4px solid #C8452F; padding-top: 20px; }
.process-step .p-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #E4D6B8;
  margin-bottom: 10px;
}
.process-step h3 { font-size: 22px; margin-bottom: 10px; }
.process-step p { color: #9AA899; font-size: 15px; }

/* ---------------- Contact page ---------------- */

.contact-section {
  background-color: #12251D;
  padding: 70px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 52px;
  align-items: start;
}

.contact-form {
  background-color: #1B332A;
  border: 1px solid #274034;
  padding: 38px 36px;
}
.contact-form h2 { font-size: 28px; margin-bottom: 8px; }
.contact-form .form-lead { color: #9AA899; margin-bottom: 26px; }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E4D6B8;
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  background-color: #12251D;
  border: 1px solid #274034;
  color: #F2EFE6;
  font-family: inherit;
  font-size: 16px;
  padding: 13px 14px;
}
.field input:focus,
.field textarea:focus {
  border-color: #C8452F;
  outline: none;
}
.field textarea { min-height: 150px; resize: vertical; }

.form-note { color: #9AA899; font-size: 13px; margin-top: 16px; }

.form-status {
  display: none;
  margin-top: 18px;
  padding: 13px 16px;
  background-color: #12251D;
  border-left: 4px solid #C8452F;
  color: #F2EFE6;
  font-size: 15px;
}
.form-status.on { display: block; }

.contact-aside { display: flex; flex-direction: column; gap: 22px; }

.aside-panel {
  background-color: #1B332A;
  border: 1px solid #274034;
  padding: 26px 28px;
}
.aside-panel h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.aside-panel p { color: #F2EFE6; font-size: 15px; line-height: 1.7; }
.aside-panel p + p { margin-top: 8px; }
.aside-panel a { color: #E4D6B8; text-decoration: underline; }
.aside-panel a:hover { color: #C8452F; }
.aside-panel .muted { color: #9AA899; }

/* FAQ */

.faq-band {
  background-color: #12251D;
  padding: 10px 0 84px;
}
.faq-band h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
.faq-band .canopy-sub { margin-bottom: 36px; }

.faq-list { border-top: 1px solid #274034; }

.faq-item { border-bottom: 1px solid #274034; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  color: #FAF6EC;
}
.faq-q:hover { color: #C8452F; }
.faq-q .faq-mark {
  width: 13px;
  height: 13px;
  border-top: 3px solid #C8452F;
  border-right: 3px solid #C8452F;
  transform: rotate(135deg);
  transition: transform 0.25s ease;
  flex: none;
}
.faq-item.open .faq-mark { transform: rotate(315deg); }

.faq-a { padding: 0 4px 24px; color: #F2EFE6; max-width: 780px; line-height: 1.75; }

.faq-ready .faq-item:not(.open) .faq-a { display: none; }

/* ---------------- Responsive ---------------- */

@media (max-width: 1020px) {
  .bus-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .bus-col { padding: 0 26px; }
  .bus-col:first-child { padding-left: 0; }
  .bus-col:nth-child(3) { border-left: 0; padding-left: 0; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .alt-block,
  .alt-block.flip { grid-template-columns: 1fr; gap: 30px; padding: 44px 0; }
  .alt-block .alt-visual,
  .alt-block.flip .alt-visual { order: -1; min-height: 260px; }
  .alt-block.flip .alt-text { order: 0; }

  .contact-grid { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .metric + .metric { border-left: 0; }
  .metric:nth-child(even) { border-left: 1px solid #F7D9CF; }
  .metric:nth-child(3),
  .metric:nth-child(4) { border-top: 1px solid #F7D9CF; padding-top: 28px; }

  .service-row { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; padding-top: 6px; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; }
  .site-nav li + li { border-left: 0; border-top: 1px solid #274034; }
  .site-nav a { padding: 14px 6px; border-bottom-color: transparent; }

  .wordmark-row { padding-top: 18px; }
  .wordmark { font-size: 24px; }

  .canopy-row { flex-wrap: wrap; gap: 38px 44px; }
  .canopy-row::before { display: none; }

  .statement p { font-size: 22px; }
  .statement-band { padding: 70px 0; }

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

  .bus-grid { grid-template-columns: 1fr; }
  .bus-col { padding: 0; }
  .bus-col + .bus-col {
    border-left: 0;
    border-top: 1px solid #274034;
    padding-top: 26px;
    margin-top: 4px;
  }

  .process-grid { grid-template-columns: 1fr; }
  .cta-band h2 { font-size: 29px; }
  .contact-form { padding: 28px 22px; }
}
