:root {
  --green: #2f9d45;
  --forest: #143d2b;
  --ink: #17211c;
  --ivory: #f6f4ee;
  --sage: #dce8dc;
  --line: rgba(23, 33, 28, 0.14);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}

.site-header {
  min-height: 86px;
  padding: 12px clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}
.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
}
.brand-monogram {
  font: 400 38px/0.9 var(--serif);
  letter-spacing: -0.12em;
  width: 58px;
  flex: 0 0 auto;
}
.brand-words {
  display: block;
}
.brand-words strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.25em;
  line-height: 1.45;
  white-space: nowrap;
}
.brand-words small {
  display: block;
  font: italic 10px/1.2 var(--serif);
  letter-spacing: 0.25em;
  margin-top: 2px;
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 38px);
  font-size: 14px;
}
.nav > a:not(.header-cta):not(.koru-link) {
  position: relative;
  padding: 12px 0;
}
.nav > a:not(.header-cta):not(.koru-link)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--green);
  transition: 0.25s;
}
.nav > a:hover::after,
.nav > a.active::after {
  right: 0 !important;
}
.koru-link {
  color: var(--forest);
  font-size: 13px;
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.koru-link span {
  color: var(--green);
  margin-left: 4px;
}
.language {
  display: flex;
  align-items: center;
  gap: 12px;
}
.language i {
  width: 1px;
  height: 20px;
  background: var(--line);
}
.language a.active {
  color: var(--green);
  font-weight: 700;
}
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid var(--green);
  padding: 14px 20px;
  transition: 0.25s;
}
.header-cta span,
.button span {
  font-size: 20px;
  line-height: 0;
}
.header-cta:hover {
  color: white;
  background: var(--green);
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(460px, 47%) 1fr;
  position: relative;
  overflow: hidden;
}
.hero-copy {
  padding: clamp(64px, 7vw, 108px) clamp(24px, 4vw, 68px) 180px;
  position: relative;
  z-index: 2;
  background: linear-gradient(
    90deg,
    var(--ivory) 94%,
    rgba(246, 244, 238, 0.9)
  );
}
.eyebrow {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 25px;
}
.hero h1,
.page-hero h1,
.story-copy h1,
.contact-page h1,
.legal-page h1 {
  font: 400 clamp(55px, 6.2vw, 98px)/0.97 var(--serif);
  letter-spacing: -0.045em;
  margin: 0;
}
.hero h1 em {
  color: var(--green);
  font-weight: 400;
}
.hero-text {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.65;
  margin: 35px 0 28px;
}
.button.primary {
  background: var(--green);
  color: white;
}
.button.primary:hover {
  background: var(--forest);
  border-color: var(--forest);
}
.hero-geometry {
  min-height: 680px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, var(--ivory) 100%);
}
.hero-cards {
  position: absolute;
  left: clamp(24px, 4vw, 68px);
  bottom: 28px;
  width: min(690px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 15px 40px rgba(20, 61, 43, 0.11);
}
.hero-cards a {
  min-height: 155px;
  background: white;
  padding: 25px 28px;
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  transition: 0.25s;
}
.hero-cards a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(20, 61, 43, 0.1);
}
.hero-cards .number {
  grid-column: 1/-1;
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0.16em;
  align-self: start;
}
.hero-cards strong {
  max-width: 210px;
  font-size: 17px;
  font-weight: 500;
}
.hero-cards a > span:last-child {
  color: var(--green);
  font-size: 22px;
}

.section-with-pathways {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-with-pathways > *:not(.pathways) {
  position: relative;
  z-index: 2;
}
.pathways {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.pathways .route,
.pathways .corridor,
.pathways .node {
  position: absolute;
  display: block;
}
.pathways .route {
  height: 1px;
  transform-origin: left center;
  background: var(--forest);
  opacity: 0.8;
}
.pathways .route::after {
  content: "";
  position: absolute;
  inset: -7px 0;
  border-top: 1px dashed rgba(20, 61, 43, 0.38);
  transform: translateY(12px);
}
.pathways .corridor {
  height: 14%;
  background: linear-gradient(
    90deg,
    rgba(220, 232, 220, 0.2),
    rgba(47, 157, 69, 0.14)
  );
  transform-origin: center;
}
.pathways .node {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--ivory);
  box-shadow: 0 0 0 1px var(--green);
}
.pathways .route-a {
  width: 105%;
  left: -8%;
  top: 71%;
  transform: rotate(-43deg);
  background: var(--green);
  height: 2px;
}
.pathways .route-b {
  width: 102%;
  left: 4%;
  top: 78%;
  transform: rotate(-43deg);
  background: var(--green);
}
.pathways .route-c {
  width: 76%;
  left: 34%;
  top: 41%;
  transform: rotate(19deg);
  opacity: 0.58;
}
.pathways .route-d {
  width: 66%;
  left: 38%;
  top: 73%;
  transform: rotate(-16deg);
  opacity: 0.48;
}
.pathways .corridor-a {
  width: 92%;
  left: 21%;
  top: 46%;
  transform: rotate(29deg);
}
.pathways .corridor-b {
  width: 82%;
  left: 38%;
  top: 62%;
  transform: rotate(-42deg);
  background: rgba(220, 232, 220, 0.42);
}
.pathways .corridor-c {
  width: 52%;
  left: 47%;
  top: 18%;
  transform: rotate(18deg);
  background: rgba(220, 232, 220, 0.3);
}
.pathways .node-a {
  left: 27%;
  top: 70%;
}
.pathways .node-b {
  left: 45%;
  top: 52%;
}
.pathways .node-c {
  left: 66%;
  top: 30%;
  background: var(--ivory);
}
.pathways .node-d {
  left: 82%;
  top: 16%;
}
.pathways .node-e {
  left: 84%;
  top: 66%;
  background: var(--forest);
  box-shadow: 0 0 0 1px var(--forest);
}
.pathways--hero {
  inset: 4% -5% -4% 0;
}
.pathways--hero::before,
.pathways--hero::after {
  content: "";
  position: absolute;
  border-left: 1px dashed rgba(20, 61, 43, 0.45);
  height: 68%;
  top: 14%;
  left: 58%;
}
.pathways--hero::after {
  left: 77%;
  height: 43%;
  top: 37%;
}
.pathways--soft {
  inset: -15% -4% -20% 45%;
  opacity: 0.28;
}
.pathways--soft .corridor {
  opacity: 0.62;
}
.pathways--soft .node {
  width: 9px;
  height: 9px;
}
.pathways--dark {
  inset: -38% -6% -30% 43%;
  opacity: 0.25;
}
.pathways--dark .route {
  background: #8fd59b;
}
.pathways--dark .route::after {
  border-color: rgba(255, 255, 255, 0.34);
}
.pathways--dark .corridor {
  background: rgba(255, 255, 255, 0.14);
}
.pathways--dark .node {
  border-color: var(--forest);
  box-shadow: 0 0 0 1px #8fd59b;
  background: #8fd59b;
}

.intro-section,
.expertise-lead,
.why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px);
}
.section-index {
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.16em;
  margin: 0 0 30px;
}
h2 {
  font: 400 clamp(42px, 5vw, 72px)/1.04 var(--serif);
  letter-spacing: -0.035em;
  margin: 0;
}
.intro-section > p,
.expertise-lead > div:last-child > p {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.55;
  margin: 42px 0 0;
}
.pillar-grid {
  padding: 0 clamp(24px, 7vw, 110px) clamp(90px, 10vw, 150px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pillar-card {
  background: white;
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid rgba(23, 33, 28, 0.08);
}
.pillar-card h3,
.expertise-grid h3 {
  font: 400 clamp(32px, 3.4vw, 50px)/1.08 var(--serif);
  margin: 0 0 25px;
}
.pillar-card > p:not(.eyebrow) {
  line-height: 1.75;
  max-width: 580px;
}
.pillar-card ul,
.large-list {
  list-style: none;
  padding: 24px 0;
  margin: 25px 0;
  border-top: 1px solid var(--line);
}
.pillar-card li,
.large-list li {
  padding: 13px 0 13px 22px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.pillar-card li::before,
.large-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 0;
  top: 20px;
}
.pillar-card > a {
  color: var(--green);
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.cta-section {
  background: var(--forest);
  color: white;
  padding: clamp(70px, 8vw, 120px) clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 8vw;
  align-items: end;
}
.cta-section p:not(.eyebrow) {
  line-height: 1.7;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
}
.button.light {
  border-color: rgba(255, 255, 255, 0.7);
}
.button.light:hover {
  background: white;
  color: var(--forest);
}

.page-hero {
  min-height: 520px;
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px);
  background: white;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  max-width: 1000px;
}
.page-hero > p:last-child {
  max-width: 680px;
  margin: 38px 0 0 auto;
  font-size: 20px;
  line-height: 1.65;
}
.large-list {
  font-size: 18px;
}
.large-list li {
  padding-left: 0;
}
.large-list li::before {
  display: none;
}
.land-section {
  background: white;
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px);
}
.land-heading {
  display: grid;
  grid-template-columns: 0.25fr 1fr 1fr;
  gap: 4vw;
  margin-bottom: 80px;
}
.land-heading > p:last-child {
  line-height: 1.7;
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.expertise-grid article {
  padding: clamp(28px, 4vw, 55px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.expertise-grid article > span {
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.16em;
}
.expertise-grid h3 {
  margin-top: 35px;
}
.expertise-grid ul {
  padding-left: 20px;
  line-height: 1.7;
}
.expertise-grid li {
  margin-bottom: 10px;
}

.story-layout {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 760px;
  background: white;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-copy {
  padding: clamp(70px, 8vw, 130px) clamp(35px, 7vw, 110px);
}
.story-copy h1 {
  font-size: clamp(52px, 5vw, 80px);
  margin-bottom: 45px;
}
.story-copy > p:not(.eyebrow),
.why-copy p {
  line-height: 1.8;
  font-size: 17px;
}
.why-section {
  align-items: center;
}
.why-copy {
  max-width: 740px;
}
.why-section h2 {
  margin: 18px 0 35px;
}
.why-image {
  min-height: 520px;
  overflow: hidden;
}
.why-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.04);
}

.contact-page {
  min-height: 720px;
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.contact-page > div:first-child > p:last-child {
  max-width: 520px;
  font-size: 19px;
  line-height: 1.7;
  margin-top: 40px;
}
.contact-list {
  border-top: 1px solid var(--line);
  align-self: center;
}
.contact-list a {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 15px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
  transition: 0.2s;
}
.contact-list a:hover {
  color: var(--green);
  padding-left: 10px;
}
.contact-list span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.contact-list strong {
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 500;
}
.email-contact {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.email-contact a {
  border-bottom: 0;
}
.email-contact p {
  margin: 0;
  color: rgba(23, 33, 28, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.legal-page {
  min-height: 650px;
  padding: clamp(80px, 10vw, 150px) clamp(24px, 15vw, 230px);
}
.legal-page h1 {
  margin-bottom: 65px;
}
.legal-content {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.8;
}
.legal-content h2 {
  font: 400 clamp(27px, 3vw, 38px)/1.15 var(--serif);
  margin: 55px 0 18px;
}
.legal-content h3 {
  font-size: 18px;
  line-height: 1.45;
  margin: 36px 0 12px;
}
.legal-content ul {
  padding-left: 22px;
}
.legal-content li {
  margin-bottom: 8px;
}
.preline {
  white-space: pre-line;
}
.legal-note {
  background: var(--sage);
  padding: 20px 24px;
  margin-top: 35px;
  font-size: 14px;
}
.legal-content a {
  color: var(--green);
  text-decoration: underline;
}

footer {
  background: #0d2d20;
  color: white;
  padding: 70px clamp(24px, 5vw, 80px) 28px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 65px;
}
.footer-brand {
  color: white;
}
.footer-main p {
  color: rgba(255, 255, 255, 0.66);
  margin: 0;
}
.footer-links {
  display: grid;
  gap: 12px;
  justify-self: end;
}
.footer-links a:hover,
.footer-bottom a:hover {
  color: #8fd59b;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
}
.footer-bottom div {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

@media (max-width: 1000px) {
  .site-header {
    min-height: 76px;
  }
  .brand-monogram {
    width: 45px;
    font-size: 32px;
  }
  .brand-words strong {
    font-size: 9px;
  }
  .brand-words small {
    font-size: 9px;
  }
  .menu-button {
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .menu-button i {
    width: 18px;
    height: 1px;
    background: currentColor;
  }
  .nav {
    display: none;
    position: absolute;
    inset: 76px 0 auto;
    background: white;
    padding: 28px 24px 35px;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(20, 61, 43, 0.1);
  }
  .nav.open {
    display: flex;
  }
  .koru-link {
    border-left: 0;
    padding-left: 0;
  }
  .header-cta {
    width: 100%;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    padding: 70px 24px 195px;
  }
  .hero-geometry {
    min-height: 55vw;
    grid-row: 2;
  }
  .pathways--soft {
    inset: -10% -25% -10% 35%;
    opacity: 0.2;
  }
  .hero-cards {
    left: 24px;
    bottom: 25px;
  }
  .intro-section,
  .expertise-lead,
  .why-section,
  .contact-page {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .intro-section > p,
  .expertise-lead > div:last-child > p {
    margin-top: 0;
  }
  .land-heading {
    grid-template-columns: 1fr;
  }
  .story-layout {
    grid-template-columns: 1fr;
  }
  .story-image {
    max-height: 650px;
  }
  .why-image {
    grid-row: 2;
    min-height: 420px;
  }
  .why-image img {
    min-height: 420px;
  }
  .cta-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: 52px;
  }
  .hero-copy {
    padding-top: 55px;
    padding-bottom: 310px;
  }
  .hero-geometry {
    min-height: 78vw;
  }
  .pathways--hero {
    transform: scale(0.82);
    transform-origin: center;
    inset: -8% -15%;
  }
  .hero-cards {
    grid-template-columns: 1fr;
  }
  .hero-cards a {
    min-height: 125px;
  }
  .pillar-grid,
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .pillar-grid {
    gap: 12px;
  }
  .page-hero {
    min-height: auto;
  }
  .page-hero h1,
  .story-copy h1,
  .contact-page h1,
  .legal-page h1 {
    font-size: 48px;
  }
  .page-hero > p:last-child {
    margin-left: 0;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-self: start;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .contact-list a {
    grid-template-columns: 1fr auto;
  }
  .contact-list span {
    grid-column: 1/-1;
  }
  .email-contact p {
    padding-right: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Cadastral Contours direction: clean editorial planes, no page-background graphics */
body {
  background: #fbfaf6;
}
.section-with-pathways .pathways {
  display: none;
}
.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}
.site-header {
  min-height: 100px;
  padding-top: 8px;
  padding-bottom: 8px;
  background: rgba(251, 250, 246, 0.97);
}
.nav {
  gap: clamp(13px, 1.55vw, 27px);
}
.nav > a {
  white-space: nowrap;
}
.hero {
  min-height: calc(100vh - 100px);
  grid-template-columns: minmax(520px, 48%) 1fr;
  border-bottom: 1px solid var(--line);
  background: #fbfaf6;
}
.hero-copy {
  padding: clamp(72px, 8vw, 118px) clamp(28px, 5.5vw, 88px);
  background: white;
}
.hero h1 {
  color: #0d3a29;
}
.hero h1 em {
  color: #0d3a29;
  font-style: normal;
}
.hero-visual {
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: white;
  border-left: 1px solid var(--line);
}
.hero-visual img {
  width: 100%;
  height: auto;
  object-fit: fill;
}
.survey-panel {
  width: min(620px, 100%);
  aspect-ratio: 1.1;
  position: relative;
  border: 1px solid rgba(20, 61, 43, 0.22);
  background: #fff;
  overflow: hidden;
}
.survey-panel::before,
.survey-panel::after {
  content: "";
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(20, 61, 43, 0.12);
  transform: rotate(-8deg);
}
.survey-panel::after {
  inset: 22% 9%;
  transform: rotate(15deg);
}
.survey-line {
  position: absolute;
  height: 1px;
  background: var(--forest);
  transform-origin: left center;
}
.survey-line::after {
  content: "";
  position: absolute;
  inset: -16px 0;
  border-top: 12px solid rgba(47, 157, 69, 0.11);
}
.survey-line-a {
  width: 79%;
  left: 8%;
  top: 69%;
  transform: rotate(-24deg);
}
.survey-line-b {
  width: 67%;
  left: 20%;
  top: 31%;
  transform: rotate(28deg);
  opacity: 0.55;
}
.survey-line-c {
  width: 66%;
  left: 20%;
  top: 79%;
  transform: rotate(-58deg);
  opacity: 0.35;
}
.survey-node {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 7px rgba(47, 157, 69, 0.1);
}
.node-1 {
  left: 24%;
  top: 58%;
}
.node-2 {
  left: 51%;
  top: 46%;
}
.node-3 {
  right: 15%;
  top: 24%;
}
.survey-panel strong {
  position: absolute;
  left: 7%;
  top: 7%;
  color: var(--green);
  font: 400 38px/1 var(--serif);
}
.survey-panel small {
  position: absolute;
  right: 7%;
  bottom: 6%;
  color: var(--forest);
  letter-spacing: 0.14em;
  font-size: 10px;
}
.hero-cards {
  box-shadow: none;
  border: 1px solid var(--line);
}
.hero-cards a {
  box-shadow: none;
}
.hero-cards a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(20, 61, 43, 0.08);
}
.intro-section,
.pillar-grid {
  background: #fbfaf6;
}
.pillar-card {
  box-shadow: none;
  border: 1px solid var(--line);
}

.it-hero,
.land-hero {
  display: grid;
  grid-template-columns: minmax(450px, 1fr) minmax(500px, 1.05fr);
  gap: clamp(45px, 6vw, 100px);
  min-height: 690px;
  padding: clamp(72px, 8vw, 130px) clamp(28px, 6vw, 96px);
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #fbfaf6;
}
.it-hero h1,
.land-hero h1 {
  color: #0d3a29;
  font: 400 clamp(52px, 5.7vw, 88px)/1 var(--serif);
  letter-spacing: -0.045em;
  margin: 0 0 38px;
}
.it-hero > div:first-child > p:last-child,
.land-hero > div:first-child > p:last-child {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}
.digital-layers {
  display: grid;
  grid-template-columns: minmax(330px, 1fr) minmax(150px, 0.55fr);
  gap: 18px;
  align-items: center;
  min-height: 500px;
}
.layer-stack {
  position: relative;
  height: 450px;
  perspective: 900px;
}
.layer {
  position: absolute;
  left: 7%;
  width: 82%;
  height: 135px;
  border: 1px solid rgba(20, 61, 43, 0.7);
  background: rgba(220, 232, 220, 0.38);
  transform: rotateX(61deg) rotateZ(-10deg);
  box-shadow: 0 16px 25px rgba(20, 61, 43, 0.035);
}
.layer::before,
.layer::after {
  content: "";
  position: absolute;
  background: rgba(20, 61, 43, 0.45);
}
.layer::before {
  width: 1px;
  height: 185px;
  left: 52%;
  top: 40%;
}
.layer::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  left: calc(52% - 3px);
  top: 38%;
}
.layer span {
  position: absolute;
  inset: 22%;
  border: 1px dashed rgba(20, 61, 43, 0.25);
}
.layer-1 {
  top: 10px;
}
.layer-2 {
  top: 82px;
}
.layer-3 {
  top: 154px;
}
.layer-4 {
  top: 226px;
}
.layer-5 {
  top: 298px;
}
.digital-layers ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 38px;
}
.digital-layers li {
  position: relative;
  font-size: 13px;
  line-height: 1.4;
  padding-left: 28px;
  color: var(--forest);
}
.digital-layers li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 18px;
  height: 1px;
  background: var(--green);
}
.digital-layers li::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(0.55em - 2px);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}
.it-visual {
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px;
}
.it-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}
.audience-grid > article {
  padding: clamp(62px, 7vw, 110px) clamp(28px, 6vw, 96px);
  border-right: 1px solid var(--line);
}
.audience-grid h2,
.land-services h2 {
  color: var(--forest);
  font: 400 clamp(34px, 3.5vw, 55px)/1.08 var(--serif);
  letter-spacing: -0.025em;
  margin: 15px 0 22px;
}
.audience-grid article > p:not(.section-index) {
  max-width: 610px;
  line-height: 1.7;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
}
.service-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.45;
}
.service-list li > span {
  position: relative;
  width: 50px;
  height: 1px;
  background: rgba(47, 157, 69, 0.45);
}
.service-list li > span::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  left: 0;
  top: -2px;
}

.land-hero figure {
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px;
}
.land-hero figure img {
  width: 100%;
  height: auto;
}
.land-services {
  padding: clamp(70px, 8vw, 120px) clamp(28px, 6vw, 96px);
  background: #fff;
}
.land-services .expertise-grid {
  background: #fff;
}
.land-services .expertise-grid article {
  background: #fff;
  box-shadow: none;
}
.land-services .expertise-grid h2 {
  margin-top: 30px;
}
.land-services .service-list {
  margin-top: 25px;
}

.contact-page {
  background: #fbfaf6;
}
.contact-list a[href^="tel:"] strong {
  color: var(--forest);
}

@media (max-width: 1180px) {
  .site-header {
    min-height: 82px;
  }
  .brand-logo {
    width: 58px;
    height: 58px;
  }
  .menu-button {
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .menu-button i {
    width: 18px;
    height: 1px;
    background: currentColor;
  }
  .nav {
    display: none;
    position: absolute;
    inset: 82px 0 auto;
    background: white;
    padding: 28px 24px 35px;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(20, 61, 43, 0.1);
  }
  .nav.open {
    display: flex;
  }
  .koru-link {
    border-left: 0;
    padding-left: 0;
  }
  .header-cta {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 62px 24px;
  }
  .hero-visual {
    min-height: 520px;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 18px;
  }
  .it-hero,
  .land-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .digital-layers {
    max-width: 720px;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .audience-grid > article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .brand-words {
    display: none;
  }
  .brand-logo {
    width: 62px;
    height: 62px;
  }
  .it-hero,
  .land-hero {
    padding: 58px 22px;
  }
  .it-hero h1,
  .land-hero h1 {
    font-size: 48px;
  }
  .digital-layers {
    grid-template-columns: 1fr;
    min-height: 560px;
  }
  .layer-stack {
    height: 390px;
  }
  .digital-layers ol {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .service-list li {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }
  .service-list li > span {
    width: 32px;
  }
}

/* Mobile-first layout layer for the static edition */
.site-header {
  min-height: 82px;
}
.brand-logo {
  width: 62px;
  height: 62px;
}
.brand-words {
  display: none;
}
.menu-button {
  display: flex;
  align-items: center;
  gap: 7px;
}
.menu-button i {
  width: 18px;
  height: 1px;
  background: currentColor;
}
.nav {
  display: none;
  position: absolute;
  inset: 82px 0 auto;
  background: #fff;
  padding: 28px 24px 35px;
  flex-direction: column;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  box-shadow: 0 20px 30px rgba(20, 61, 43, 0.1);
}
.nav.open {
  display: flex;
}
.koru-link {
  border-left: 0;
  padding-left: 0;
}
.header-cta {
  width: 100%;
}
.hero {
  grid-template-columns: 1fr;
  min-height: auto;
}
.hero-copy {
  padding: 55px 22px;
}
.hero h1 {
  font-size: clamp(46px, 14vw, 62px);
}
.hero-visual {
  min-height: 72vw;
  border-left: 0;
  border-top: 1px solid var(--line);
  padding: 18px;
}
.intro-section,
.expertise-lead,
.why-section,
.contact-page {
  grid-template-columns: 1fr;
  gap: 30px;
}
.intro-section > p,
.expertise-lead > div:last-child > p {
  margin-top: 0;
}
.pillar-grid,
.expertise-grid,
.audience-grid {
  grid-template-columns: 1fr;
}
.pillar-grid {
  gap: 12px;
}
.page-hero {
  min-height: auto;
}
.page-hero h1,
.story-copy h1,
.contact-page h1,
.legal-page h1 {
  font-size: clamp(44px, 12vw, 52px);
}
.page-hero > p:last-child {
  margin-left: 0;
}
.land-heading {
  grid-template-columns: 1fr;
}
.story-layout {
  grid-template-columns: 1fr;
}
.story-image {
  max-height: 650px;
}
.why-image {
  grid-row: 2;
  min-height: 420px;
}
.why-image img {
  min-height: 420px;
}
.cta-section {
  grid-template-columns: 1fr;
}
.it-hero,
.land-hero {
  grid-template-columns: 1fr;
  min-height: auto;
  padding: 58px 22px;
}
.it-hero h1,
.land-hero h1 {
  font-size: 48px;
}
.audience-grid > article {
  border-right: 0;
  border-bottom: 1px solid var(--line);
}
.footer-main {
  grid-template-columns: 1fr;
}
.footer-links {
  justify-self: start;
}
.footer-bottom {
  flex-direction: column;
}
.contact-list a {
  grid-template-columns: 1fr auto;
}
.contact-list span {
  grid-column: 1/-1;
}
.email-contact p {
  padding-right: 20px;
}

@media (min-width: 701px) {
  .brand-words {
    display: block;
  }
  .brand-logo {
    width: 58px;
    height: 58px;
  }
  .pillar-grid,
  .expertise-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-links {
    justify-self: end;
  }
  .footer-bottom {
    flex-direction: row;
  }
  .contact-list a {
    grid-template-columns: 1fr 2fr auto;
  }
  .contact-list span {
    grid-column: auto;
  }
}

@media (min-width: 901px) {
  .hero {
    grid-template-columns: minmax(520px, 48%) 1fr;
    min-height: calc(100vh - 100px);
  }
  .hero-copy {
    padding: clamp(72px, 8vw, 118px) clamp(28px, 5.5vw, 88px);
  }
  .hero h1 {
    font-size: clamp(66px, 6.2vw, 104px);
  }
  .hero-visual {
    min-height: 680px;
    border-left: 1px solid var(--line);
    border-top: 0;
    padding: 18px;
  }
  .it-hero,
  .land-hero {
    grid-template-columns: minmax(450px, 1fr) minmax(500px, 1.05fr);
    min-height: 690px;
    padding: clamp(72px, 8vw, 130px) clamp(28px, 6vw, 96px);
  }
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
  .audience-grid > article {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }
  .intro-section,
  .expertise-lead,
  .why-section {
    grid-template-columns: 1fr 1fr;
    gap: 7vw;
  }
  .contact-page {
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
  }
  .story-layout {
    grid-template-columns: 45% 55%;
  }
  .cta-section {
    grid-template-columns: 1.3fr 0.7fr;
  }
}

@media (min-width: 1181px) {
  .site-header {
    min-height: 100px;
  }
  .brand-logo {
    width: 72px;
    height: 72px;
  }
  .menu-button {
    display: none;
  }
  .nav {
    display: flex;
    position: static;
    background: transparent;
    padding: 0;
    flex-direction: row;
    align-items: center;
    border: 0;
    box-shadow: none;
  }
  .koru-link {
    border-left: 1px solid var(--line);
    padding-left: 24px;
  }
  .header-cta {
    width: auto;
  }
}
