:root {
  --ink: #13212c;
  --muted: #5e6b72;
  --brand-blue: #123d73;
  --deep-teal: #0e4b55;
  --teal-soft: #d9ece9;
  --brass: #b98942;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: #d8dedb;
  --shadow: 0 24px 70px rgba(16, 47, 65, 0.13);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(18, 61, 115, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 61, 115, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 72%);
}

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

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

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 4.55vw, 4.15rem);
  font-weight: 680;
}

.headline-light {
  font-weight: 430;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 650;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 40px), 1240px);
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(216, 222, 219, 0.85);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.93);
  box-shadow: 0 16px 40px rgba(19, 33, 44, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.brand img {
  width: 230px;
  height: auto;
  object-fit: contain;
}

.brand span {
  margin-top: -3px;
  width: 100%;
  color: var(--brand-blue);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.095em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: #31434e;
  font-size: 1.09rem;
  font-weight: 800;
}

.main-nav a {
  padding: 10px 0;
}

.nav-dropdown {
  position: relative;
  padding: 10px 0;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 4px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  opacity: 0.74;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 250px;
  padding: 12px;
  border: 1px solid rgba(216, 222, 219, 0.9);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.98);
  box-shadow: 0 18px 44px rgba(19, 33, 44, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 12px;
}

.nav-menu a {
  padding: 12px 14px;
  border-radius: 6px;
  color: #31434e;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(18, 61, 115, 0.08);
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.main-nav a:hover,
.text-link:hover {
  color: var(--brand-blue);
}

.site-header .button-small {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--brand-blue);
  border-radius: 6px;
  background: var(--brand-blue);
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 760;
  box-shadow: 0 14px 28px rgba(18, 61, 115, 0.22);
  transition: background-color 180ms ease, border-color 180ms ease, border-width 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
  background: #0c2f58;
  border-color: #0c2f58;
  box-shadow: 0 10px 20px rgba(18, 61, 115, 0.16);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
}

body.is-scrolled .site-header .button-small {
  border-color: var(--white);
  border-width: 2px;
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  font-weight: 780;
  color: var(--deep-teal);
  transition: color 180ms ease, transform 180ms ease;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
  color: var(--brass);
  transition: transform 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  transform: translateX(3px);
}

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

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.72fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  min-height: calc(100vh - 132px);
  margin: 0 auto 18px;
  padding: 38px 0 46px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -58px;
  bottom: -74px;
  left: 50%;
  z-index: -2;
  width: 100vw;
  background:
    radial-gradient(circle at 73% 26%, rgba(225, 177, 92, 0.34), transparent 24%),
    radial-gradient(circle at 82% 42%, rgba(24, 53, 70, 0.42), transparent 28%),
    radial-gradient(circle at 35% 54%, rgba(44, 96, 128, 0.22), transparent 33%),
    linear-gradient(135deg, rgba(246, 241, 225, 0.9), rgba(211, 226, 232, 0.76) 48%, rgba(229, 214, 188, 0.7));
  filter: blur(28px);
  transform: translateX(-50%) scale(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  top: -58px;
  bottom: -74px;
  left: 50%;
  z-index: -1;
  width: 100vw;
  background:
    linear-gradient(rgba(18, 61, 115, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 61, 115, 0.02) 1px, transparent 1px),
    rgba(251, 250, 246, 0.52);
  background-size: 46px 46px, 46px 46px, 100% 100%;
  transform: translateX(-50%);
}

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

.eyebrow {
  margin-bottom: 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-painted {
  position: relative;
  display: inline-block;
  z-index: 0;
  isolation: isolate;
  margin-bottom: 20px;
  color: #9f6e2c;
  font-size: 0.86rem;
}

.eyebrow-painted span {
  position: relative;
  display: inline-block;
  z-index: 0;
  font-weight: 560;
}

.eyebrow-painted span::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -4px;
  bottom: -0.36em;
  z-index: -1;
  height: 0.38em;
  border-radius: 999px 58% 88% 48%;
  background: linear-gradient(90deg, rgba(185, 137, 66, 0.18), rgba(185, 137, 66, 0.42), rgba(185, 137, 66, 0.22));
  transform: rotate(-0.8deg) skewX(-7deg);
  transform-origin: left center;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  color: #41535c;
  font-size: clamp(1.12rem, 2vw, 1.34rem);
}

body.hero-wipe-left .hero-text,
body.hero-wipe-right .hero-text {
  animation-duration: 1170ms;
  animation-timing-function: cubic-bezier(0.22, 0.9, 0.22, 1);
  animation-fill-mode: both;
  will-change: clip-path, opacity, transform;
}

body.hero-wipe-left .hero-text {
  animation-name: heroWipeFromLeft;
}

body.hero-wipe-right .hero-text {
  animation-name: heroWipeFromRight;
}

.hero-text p {
  margin-bottom: 12px;
  color: #41535c;
}

.hero-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  color: #41535c;
  font-size: 1.02rem;
}

.hero-list li::marker {
  color: var(--brass);
}

.hero-list strong {
  color: var(--ink);
  font-weight: 820;
}

@keyframes heroWipeFromLeft {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-16px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}

@keyframes heroWipeFromRight {
  from {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
    transform: translateX(16px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.hero-wipe-left .hero-text,
  body.hero-wipe-right .hero-text {
    animation: none;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.hero-actions .button {
  animation: ctaBrightLoad 960ms ease-out 180ms both;
}

.hero-actions .button:hover,
.hero-actions .button:focus-visible {
  background: #082845;
  border-color: #082845;
  box-shadow: 0 8px 16px rgba(18, 61, 115, 0.14);
  transform: translateY(1px);
}

@keyframes ctaBrightLoad {
  0% {
    background: #1f7de8;
    border-color: #1f7de8;
    box-shadow: 0 0 0 rgba(31, 125, 232, 0), 0 14px 28px rgba(18, 61, 115, 0.22);
  }

  38% {
    background: #2793ff;
    border-color: #2793ff;
    box-shadow: 0 0 0 9px rgba(39, 147, 255, 0.18), 0 20px 38px rgba(18, 61, 115, 0.28);
  }

  100% {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    box-shadow: 0 14px 28px rgba(18, 61, 115, 0.22);
  }
}

.hero-media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep-teal);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center 36%;
}

.hero-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 250px;
  padding: 16px 18px;
  border-left: 4px solid var(--brass);
  background: rgba(251, 250, 246, 0.94);
  color: var(--ink);
  font-weight: 780;
  box-shadow: 0 16px 34px rgba(19, 33, 44, 0.18);
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 86px 0;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-intro p:last-child {
  font-size: 1.1rem;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 48px;
  max-width: none;
  align-items: end;
}

.narrow {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.problem-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding: 72px max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 12% 16%, rgba(185, 137, 66, 0.16), transparent 30%),
    linear-gradient(135deg, #13212c, #0e4b55 48%, #123d73);
}

.problem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.72;
}

.problem-section > * {
  position: relative;
}

.problem-inner {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(216, 222, 219, 0.96);
  border-radius: 8px;
  background:
    linear-gradient(rgba(18, 61, 115, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 61, 115, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 90% 0%, rgba(185, 137, 66, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(236, 247, 245, 0.95), rgba(217, 236, 249, 0.9) 58%, rgba(255, 246, 225, 0.9));
  background-size: 28px 28px, 28px 28px, 100% 100%, 100% 100%;
  box-shadow: 0 28px 80px rgba(2, 18, 26, 0.36);
}

.problem-section .eyebrow {
  color: #9f6e2c;
}

.problem-section h2 {
  margin-bottom: 10px;
  color: #1b2630;
}

.problem-helper {
  color: #4b595f;
  font-size: 1.02rem;
  font-weight: 400;
}

.problem-section .section-intro p:last-child {
  color: #3e4a4d;
}

.momentum-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.momentum-points li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(116, 82, 28, 0.18);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.52);
  color: var(--ink);
  font-weight: 820;
  text-align: center;
  box-shadow: 0 12px 26px rgba(96, 69, 23, 0.07);
}

.momentum-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 4px rgba(185, 137, 66, 0.14);
}

.process-section .momentum-points {
  margin-inline: auto;
}

.win98-desktop {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  min-height: 420px;
  padding: clamp(22px, 4vw, 42px);
  border: 3px solid #f4f0df;
  border-right-color: #6f776f;
  border-bottom-color: #6f776f;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #0f7774 0%, #0b5c62 52%, #143d66 100%);
  background-size: 34px 34px, 34px 34px, 100% 100%;
  box-shadow: inset 2px 2px 0 rgba(255, 255, 255, 0.34), inset -2px -2px 0 rgba(0, 0, 0, 0.24), 0 22px 48px rgba(96, 69, 23, 0.16);
}

.desktop-icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(118px, 1fr));
  gap: 22px;
  align-content: center;
}

.desktop-icon {
  display: grid;
  min-height: 150px;
  place-items: center;
  gap: 10px;
  padding: 14px 12px;
  border: 2px solid transparent;
  background: transparent;
  color: #ffffff;
  font: inherit;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.42);
  cursor: pointer;
}

.desktop-icon span {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 2px solid #f7f4e8;
  border-right-color: #7a827e;
  border-bottom-color: #7a827e;
  background: #d7e8f4;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.24);
  font-size: 2.9rem;
  line-height: 1;
  text-shadow: none;
}

.desktop-icon strong {
  max-width: 150px;
  font-size: 0.94rem;
  line-height: 1.12;
}

.desktop-icon:hover,
.desktop-icon:focus-visible,
.desktop-icon.is-active {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(14, 58, 115, 0.38);
  outline: 0;
}

.win98-window {
  overflow: hidden;
  border: 3px solid #f7f4e8;
  border-right-color: #4b5550;
  border-bottom-color: #4b5550;
  background: #d4d0c8;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.22);
}

.win98-titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 7px 8px;
  background: linear-gradient(90deg, #082f83, #1782c5);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 850;
}

.window-controls {
  display: flex;
  gap: 4px;
}

.window-controls span {
  width: 16px;
  height: 14px;
  border: 1px solid #ffffff;
  border-right-color: #383838;
  border-bottom-color: #383838;
  background: #d4d0c8;
}

.win98-window-body {
  min-height: 220px;
  padding: clamp(22px, 4vw, 38px);
  border-top: 2px solid #ffffff;
  color: #101820;
}

.window-status {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 8px;
  border: 1px solid #8f8f8f;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
  background: #efede4;
  color: #343434;
  font-size: 0.82rem;
  font-weight: 780;
}

.win98-window h3 {
  margin-bottom: 12px;
  color: #101820;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.win98-window p:last-child {
  max-width: 620px;
  color: #26313a;
  font-size: 1.08rem;
}

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

.why-grid article {
  min-height: 172px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

@keyframes mustardGlowIn {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 70% 50%;
  }
}

@keyframes mustardDrift {
  from {
    background-position: 70% 50%;
  }

  to {
    background-position: 100% 48%;
  }
}

@keyframes mustardWashIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.why-grid h3 {
  font-size: 1.06rem;
}

.services-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 18% 18%, rgba(185, 137, 66, 0.28), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(42, 112, 151, 0.48), transparent 34%),
    linear-gradient(135deg, #083942 0%, #0e4b55 42%, #123d73 100%);
  background-size: 140% 140%, 150% 150%, 100% 100%;
  color: var(--white);
  animation: servicesGlowIn 1200ms ease-out both, servicesDrift 10s ease-in-out 1200ms infinite alternate;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0;
  animation: servicesTextureIn 900ms ease-out 220ms both;
}

.services-section > * {
  position: relative;
}

.services-section p,
.services-section li {
  color: rgba(255, 255, 255, 0.78);
}

#services-title {
  display: inline-block;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.105);
  box-shadow: 0 22px 58px rgba(3, 22, 30, 0.2);
  backdrop-filter: blur(8px);
}

.process-intro {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.105);
  box-shadow: 0 22px 58px rgba(3, 22, 30, 0.2);
  backdrop-filter: blur(8px);
}

.process-intro h3 {
  position: relative;
  display: inline-block;
  z-index: 0;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1.22rem;
}

.process-intro h3::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -5px;
  bottom: -0.42em;
  z-index: -1;
  height: 0.34em;
  border-radius: 999px 58% 86% 52%;
  background: linear-gradient(90deg, rgba(185, 137, 66, 0.45), rgba(185, 137, 66, 0.9), rgba(185, 137, 66, 0.52));
  transform: rotate(-1deg) skewX(-6deg);
}

.process-intro p {
  margin: 0;
}

.service-tree {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 34px;
  padding-top: 10px;
}

.tree-root,
.tree-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.105);
  box-shadow: 0 22px 58px rgba(3, 22, 30, 0.2);
  backdrop-filter: blur(8px);
}

.tree-root {
  position: relative;
  min-width: 220px;
  padding: 18px 28px;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 850;
  text-align: center;
  animation: treeDropIn 560ms ease-out both;
}

.tree-root::after {
  content: "";
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  width: 2px;
  height: 34px;
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  animation: treeLineDown 420ms ease-out 440ms both;
}

.tree-branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.tree-branches::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  transform: scaleX(0);
  transform-origin: center;
  animation: treeLineAcross 560ms ease-out 720ms both;
}

.tree-card {
  position: relative;
  min-height: 190px;
  padding: clamp(22px, 3vw, 30px);
  text-align: center;
  opacity: 0;
  transform: translateY(-12px);
  animation: treeCardDrop 560ms ease-out both;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.tree-card:hover,
.tree-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  outline: 0;
}

.tree-card:nth-child(1) {
  animation-delay: 980ms;
}

.tree-card:nth-child(2) {
  animation-delay: 1120ms;
}

.tree-card:nth-child(3) {
  animation-delay: 1260ms;
}

.tree-card:nth-child(4) {
  animation-delay: 1400ms;
}

.tree-card::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 1px);
  left: 50%;
  width: 2px;
  height: 18px;
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(-50%);
}

.tree-icon {
  display: grid;
  width: 126px;
  height: 126px;
  margin: 0 auto 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 28px rgba(3, 22, 30, 0.18);
  font-size: 4.05rem;
  line-height: 1;
}

.tree-title {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 850;
}

.tree-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

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

@keyframes treeLineDown {
  to {
    transform: translateX(-50%) scaleY(1);
  }
}

@keyframes treeLineAcross {
  to {
    transform: scaleX(1);
  }
}

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

@keyframes servicesGlowIn {
  from {
    background-position: 18% 18%, 82% 28%, center;
    filter: saturate(0.86);
  }

  to {
    background-position: 26% 24%, 70% 22%, center;
    filter: saturate(1.08);
  }
}

@keyframes servicesDrift {
  from {
    background-position: 26% 24%, 70% 22%, center;
  }

  to {
    background-position: 34% 18%, 78% 34%, center;
  }
}

@keyframes servicesTextureIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(19, 33, 44, 0.07);
}

.process-list article {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.process-list article:last-child {
  border-right: 0;
}

.process-list span {
  display: block;
  margin-bottom: 42px;
  color: var(--brass);
  font-weight: 850;
}

.process-list h3 {
  font-size: 1.36rem;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 88px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 34%;
}

.founder-copy p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.12rem;
}

.founder-copy {
  max-width: 820px;
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.principles span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--deep-teal);
  font-size: 0.9rem;
  font-weight: 760;
}

.founder-contact-card {
  display: grid;
  max-width: 520px;
  gap: 12px;
  margin-top: 26px;
  padding: 24px;
  border: 1px solid rgba(216, 222, 219, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(rgba(18, 61, 115, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 61, 115, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(236, 247, 245, 0.78));
  background-size: 28px 28px, 28px 28px, 100% 100%;
  box-shadow: 0 18px 44px rgba(19, 33, 44, 0.08);
}

.founder-contact-card p {
  margin: 0;
}

.founder-contact-card .button,
.founder-contact-card .text-link {
  width: 100%;
}

.founder-contact-card .text-link {
  justify-content: center;
}

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

.final-cta {
  display: grid;
  grid-template-columns: minmax(210px, 0.42fr) minmax(0, 1fr) minmax(270px, 0.42fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 34px;
  padding: clamp(34px, 6vw, 62px);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.cta-photo {
  overflow: hidden;
  align-self: stretch;
  min-height: 280px;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.cta-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center 34%;
}

.final-cta h2 {
  position: relative;
  margin-bottom: 0;
  padding-left: clamp(18px, 3vw, 34px);
  border-left: 4px solid var(--brass);
  font-size: clamp(1.55rem, 2.65vw, 2.38rem);
  line-height: 1.12;
}

.founder-quote {
  position: relative;
}

.founder-quote::before {
  content: "“";
  position: absolute;
  top: 18px;
  left: -8px;
  color: rgba(204, 151, 70, 0.22);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 850;
  line-height: 0.7;
}

.quote-attribution {
  margin: 18px 0 0 clamp(22px, 3vw, 38px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  font-weight: 760;
}

.contact-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel .button,
.contact-panel .text-link {
  width: 100%;
}

.contact-panel .button {
  margin: 10px 0;
  background: var(--brass);
  border-color: var(--brass);
  color: #17120d;
}

.light {
  color: var(--white);
  justify-content: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 26px 0 44px;
  color: var(--muted);
}

.site-footer img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.page-main {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 94px) 0 70px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: end;
  margin-bottom: 34px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 820px;
}

.page-hero p:not(.eyebrow) {
  max-width: 580px;
  font-size: 1.13rem;
}

.page-hero-callout {
  padding: 20px 22px;
  border: 1px solid rgba(216, 222, 219, 0.96);
  border-radius: 8px;
  background:
    linear-gradient(rgba(18, 61, 115, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 61, 115, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 90% 0%, rgba(185, 137, 66, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(236, 247, 245, 0.95), rgba(217, 236, 249, 0.9) 58%, rgba(255, 246, 225, 0.9));
  background-size: 28px 28px, 28px 28px, 100% 100%, 100% 100%;
  box-shadow: 0 18px 44px rgba(19, 33, 44, 0.08);
}

.page-hero-callout p {
  margin: 0;
}

.callout-eyebrow {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 850;
}

.callout-list {
  display: grid;
  gap: 5px;
  margin: 8px 0 0;
  padding-left: 18px;
  color: #41535c;
  font-size: 0.96rem;
}

.callout-list li::marker {
  color: var(--brass);
}

.page-next-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.page-next-nav a {
  position: relative;
  display: grid;
  min-height: 92px;
  align-content: center;
  gap: 6px;
  padding: 22px 66px 22px 24px;
  border: 2px solid #13212c;
  border-radius: 8px;
  background:
    linear-gradient(rgba(18, 61, 115, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 61, 115, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 92% 0%, rgba(185, 137, 66, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(236, 247, 245, 0.96), rgba(217, 236, 249, 0.92) 58%, rgba(255, 246, 225, 0.92));
  background-size: 28px 28px, 28px 28px, 100% 100%, 100% 100%;
  box-shadow: 0 18px 44px rgba(19, 33, 44, 0.1);
  transition: box-shadow 180ms ease, transform 180ms ease, background-position 220ms ease;
}

.page-next-nav a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 24px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid #13212c;
  border-radius: 999px;
  background: var(--brand-blue);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 850;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease, background-color 180ms ease;
}

.page-next-nav a:hover,
.page-next-nav a:focus-visible {
  box-shadow: 0 22px 52px rgba(19, 33, 44, 0.17);
  outline: 0;
  transform: translateY(-2px);
}

.page-next-nav a:hover::after,
.page-next-nav a:focus-visible::after {
  background: #0c2f58;
  transform: translate(6px, -50%);
}

.page-next-nav span {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-next-nav strong {
  color: var(--ink);
  font-size: clamp(1.32rem, 2.2vw, 1.8rem);
  line-height: 1.05;
}

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

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

.page-card,
.page-panel {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(19, 33, 44, 0.07);
}

.page-card-icon {
  display: grid;
  width: 126px;
  height: 126px;
  margin: 0 auto 22px;
  place-items: center;
  border: 1px solid rgba(216, 222, 219, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 28px rgba(19, 33, 44, 0.09);
  font-size: 4.05rem;
  line-height: 1;
}

.page-card h2,
.page-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  margin: 0 0 36px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(19, 33, 44, 0.07);
}

.contact-form-section h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 780;
}

.contact-form label:nth-child(3) {
  grid-column: 1 / -1;
}

.contact-form span {
  font-size: 0.9rem;
}

.contact-form em {
  color: var(--muted);
  font-style: normal;
  font-weight: 560;
}

.contact-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus {
  outline: 2px solid rgba(18, 61, 115, 0.28);
  outline-offset: 2px;
  border-color: rgba(18, 61, 115, 0.5);
}

.contact-form .button {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 4px;
}

.toronto-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  grid-template-areas:
    "map title"
    "map details";
  gap: clamp(14px, 2.2vw, 24px);
  width: 100vw;
  margin: 0 0 36px calc(50% - 50vw);
  padding: clamp(22px, 3vw, 34px) max(20px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(19, 33, 44, 0.07);
}

.toronto-map,
.toronto-title-box,
.toronto-detail-card {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(19, 33, 44, 0.07);
}

.toronto-map {
  grid-area: map;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1;
  align-self: start;
  background:
    linear-gradient(rgba(18, 61, 115, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 61, 115, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 58% 48%, rgba(185, 137, 66, 0.28), transparent 21%),
    linear-gradient(135deg, #e8f1ee, #d8e7ef 52%, #c4dce5);
  background-size: 28px 28px, 28px 28px, 100% 100%, 100% 100%;
}

.toronto-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.55;
}

.map-road {
  position: absolute;
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(18, 61, 115, 0.38);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.32);
}

.road-one {
  top: 31%;
  left: -8%;
  width: 78%;
  transform: rotate(-24deg);
}

.road-two {
  top: 62%;
  right: -18%;
  width: 96%;
  transform: rotate(18deg);
}

.road-three {
  top: 18%;
  right: 10%;
  width: 56%;
  transform: rotate(68deg);
}

.map-lake {
  position: absolute;
  right: -8%;
  bottom: -10%;
  width: 72%;
  height: 36%;
  padding: 54px 0 0 82px;
  border-radius: 80% 0 0 0;
  background: linear-gradient(135deg, rgba(14, 75, 85, 0.92), rgba(18, 61, 115, 0.95));
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-pin {
  position: absolute;
  top: 43%;
  left: 47%;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--brand-blue);
  color: var(--white);
  font-weight: 840;
  box-shadow: 0 18px 34px rgba(19, 33, 44, 0.2);
}

.map-dot {
  content: "";
  position: absolute;
  top: calc(43% + 39px);
  left: calc(47% + 24px);
  z-index: 1;
  width: 16px;
  height: 16px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 5px rgba(185, 137, 66, 0.22), 0 12px 22px rgba(19, 33, 44, 0.22);
}

.map-mv-marker {
  position: absolute;
  bottom: 23%;
  left: 37%;
  z-index: 2;
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 8px;
  align-items: center;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 26px rgba(19, 33, 44, 0.18);
  backdrop-filter: blur(6px);
}

.map-mv-pulse {
  position: relative;
  width: 14px;
  height: 14px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: #126fe8;
  box-shadow: 0 0 0 4px rgba(18, 111, 232, 0.18);
}

.map-mv-pulse::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(18, 111, 232, 0.42);
  border-radius: 50%;
  animation: mapPulse 1.6s ease-out infinite;
}

.map-mv-marker img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

@keyframes mapPulse {
  from {
    opacity: 0.8;
    transform: scale(0.55);
  }

  to {
    opacity: 0;
    transform: scale(1.55);
  }
}

.toronto-detail-card {
  grid-area: details;
  padding: clamp(18px, 2.6vw, 26px);
  border: 1px solid #000000;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

.toronto-title-box {
  grid-area: title;
  align-self: start;
  margin: 0;
  padding: 14px 18px;
  border: 2px solid var(--white);
  background: var(--brand-blue);
  color: var(--white);
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  font-weight: 820;
  text-align: center;
}

.toronto-detail-card .eyebrow {
  color: var(--ink);
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.toronto-learn-more {
  color: var(--ink);
}

.toronto-lines {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 14px 18px;
  border: 2px solid var(--white);
  border-radius: 6px;
  background: var(--white);
  list-style: none;
}

.toronto-lines li {
  padding-left: 18px;
  color: var(--muted);
  position: relative;
}

.toronto-lines a {
  color: #344d5d;
  font-weight: 820;
  text-decoration: none;
}

.toronto-lines a:hover,
.toronto-lines a:focus-visible {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.toronto-lines li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass);
}

.page-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 28px;
  align-items: center;
  margin-top: 36px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.page-band p {
  color: rgba(255, 255, 255, 0.78);
}

.page-band > * {
  min-width: 0;
}

.page-band h2 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 3vw, 2.7rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.page-band .button {
  width: 100%;
  max-width: 100%;
  justify-self: end;
  background: var(--brass);
  border-color: var(--brass);
  color: #17120d;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .split-intro,
  .page-hero,
  .page-band,
  .contact-form-section,
  .founder-section,
  .final-cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: 0;
    padding-top: 48px;
  }

  .hero-media,
  .hero-media img {
    min-height: 470px;
  }

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

  .win98-desktop {
    grid-template-columns: 1fr;
  }

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

  .tree-branches::before,
  .tree-card::before {
    display: none;
  }

  .process-list article {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .process-list article:nth-child(2n) {
    border-right: 0;
  }

  .process-list article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2rem;
  }

  .site-header {
    width: min(calc(100% - 24px), 1240px);
    margin-top: 12px;
  }

  .brand img {
    width: 150px;
    height: auto;
  }

  .brand span {
    font-size: 0.5rem;
    letter-spacing: 0.055em;
  }

  .button-small {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero,
  .section,
  .page-main,
  .founder-section,
  .final-cta,
  .site-footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero {
    padding-bottom: 58px;
  }

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

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-media,
  .hero-media img {
    min-height: 410px;
  }

  .hero-note {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .section {
    padding: 64px 0;
  }

  .problem-section {
    padding: 40px 14px;
  }

  .problem-inner {
    padding: 22px 14px;
  }

  .services-section {
    width: 100%;
    padding-inline: 14px;
  }

  .page-grid,
  .momentum-points,
  .process-list,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

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

  .page-next-nav {
    grid-template-columns: 1fr;
  }

  .contact-form label:nth-child(3) {
    grid-column: auto;
  }

  .tree-branches {
    grid-template-columns: 1fr;
  }

  .why-grid article,
  .process-list article {
    min-height: auto;
  }

  .process-list article,
  .process-list article:nth-child(2n),
  .process-list article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list article:last-child {
    border-bottom: 0;
  }

  .process-list span {
    margin-bottom: 24px;
  }

  .founder-section {
    padding: 64px 0;
  }

  .final-cta {
    margin-bottom: 18px;
    padding: 28px 18px;
  }

  .contact-panel {
    padding: 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 32px;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .toronto-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "map"
      "title"
      "details";
  }

  .desktop-icons {
    grid-template-columns: 1fr;
  }

  .desktop-icon {
    min-height: 126px;
  }

  .desktop-icon span {
    width: 64px;
    height: 64px;
    font-size: 2.35rem;
  }
}
