
:root {
  --green: #173f35;
  --green-2: #235547;
  --green-3: #dce8e2;
  --oak: #c9925b;
  --oak-dark: #9b673b;
  --cream: #f5efe4;
  --sand: #eee6d8;
  --ink: #1f2925;
  --muted: #69716d;
  --line: #dedfd9;
  --white: #fff;
  --shadow: 0 24px 80px rgba(24, 52, 44, 0.13);
  --shell: min(1240px, calc(100% - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfa;
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.team-intro {
  color: #bdcac3;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

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

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--green);
  font-weight: 690;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

h1 {
  font-size: clamp(48px, 6.2vw, 88px);
}

h2 {
  font-size: clamp(36px, 4.2vw, 60px);
}

h3 {
  font-size: 24px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section--sand {
  background: var(--cream);
}

.section--ink {
  color: #dce4df;
  background: #13231e;
}

.section--ink h2,
.section--ink h3 {
  color: #fff;
}

.section--green {
  color: #e3ece7;
  background: var(--green);
}

.section--green h2,
.section--green h3 {
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--oak-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: #efcda9;
}

.lead {
  color: #45524d;
  font-size: 20px;
  line-height: 1.8;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.button svg,
.text-link svg,
.text-button svg,
.service-card a svg,
.project-card svg,
.nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button--small {
  min-height: 46px;
  padding-inline: 19px;
}

.button--primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 13px 30px rgba(23, 63, 53, 0.2);
}

.button--primary:hover {
  background: var(--green-2);
  box-shadow: 0 17px 36px rgba(23, 63, 53, 0.28);
}

.button--cream {
  color: var(--green);
  background: var(--cream);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.14);
}

.button--cream:hover {
  color: #fff;
  background: var(--oak-dark);
}

.button--ghost-light,
.button--outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.button--ghost-light:hover,
.button--outline-light:hover {
  color: var(--green);
  border-color: var(--cream);
  background: var(--cream);
}

.text-link,
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.text-link:hover,
.service-card a:hover {
  color: var(--oak-dark);
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.demo-bar {
  position: relative;
  z-index: 1200;
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 20px;
  color: #d9e2dd;
  background: #0d1b16;
  font-size: 11px;
  letter-spacing: 0.065em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.demo-bar strong {
  color: #fff;
}

.demo-bar i {
  color: var(--oak);
  font-style: normal;
}

.header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(23, 63, 53, 0.1);
  backdrop-filter: blur(18px);
}

.utility {
  color: #d7e3dd;
  background: var(--green);
  font-size: 12px;
}

.utility__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility__inner > div {
  display: flex;
  gap: 24px;
}

.utility a {
  font-weight: 650;
  transition: color 0.2s ease;
}

.utility a:hover {
  color: #fff;
}

.header__main {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 30px;
}

.logo {
  display: inline-flex;
  min-width: 262px;
  align-items: center;
  gap: 13px;
}

.logo__mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: none;
  place-items: center;
}

.logo__mark svg {
  width: 100%;
  height: 100%;
}

.logo__frame,
.logo__grain,
.logo__joint {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo__frame {
  stroke: var(--green);
  stroke-width: 2.5;
}

.logo__grain {
  stroke: var(--oak-dark);
  stroke-width: 2.9;
}

.logo__joint {
  stroke: var(--green);
  stroke-width: 3.2;
}

.logo__type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__type strong {
  color: var(--green);
  font-size: 19px;
  font-weight: 840;
  letter-spacing: 0.08em;
}

.logo__type span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.115em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 26px;
  margin-left: auto;
}

.nav a {
  position: relative;
  display: flex;
  align-items: center;
  color: #3c4843;
  font-size: 14px;
  font-weight: 720;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--oak-dark);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--green);
}

.nav a:hover::after,
.nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--green);
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.menu-overlay,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 750px;
  overflow: hidden;
  color: #fff;
  background: var(--green);
}

.hero__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 44, 36, 0.98) 0%, rgba(14, 44, 36, 0.91) 35%, rgba(14, 44, 36, 0.48) 60%, rgba(14, 44, 36, 0.08) 100%),
    linear-gradient(0deg, rgba(9, 25, 20, 0.5), transparent 48%),
    url("images/seelenhorst-hero.webp") center/cover no-repeat;
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((100% - min(1240px, calc(100% - 48px))) / 2 - 34px);
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 650px;
  align-items: center;
  padding: 84px 0 132px;
}

.hero__copy {
  max-width: 730px;
}

.hero h1 {
  max-width: 720px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 550;
  letter-spacing: -0.052em;
}

.hero h1 span {
  color: #edc9a2;
  font-style: italic;
}

.hero__copy > p {
  max-width: 650px;
  margin: 28px 0 32px;
  color: #e1e8e4;
  font-size: 20px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  color: #d5dfda;
  font-size: 13px;
  font-weight: 700;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__trust svg,
.check-list svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--oak);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero__facts {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 31, 24, 0.6);
  backdrop-filter: blur(16px);
}

.hero__facts div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__facts strong {
  color: #efcda9;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 31px;
  font-weight: 540;
}

.hero__facts span {
  max-width: 160px;
  color: #eef3f0;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.split--intro {
  grid-template-columns: 0.96fr 1.04fr;
}

.intro h2 {
  max-width: 620px;
}

.intro__copy {
  padding-top: 36px;
}

.intro__copy .text-link {
  margin-top: 18px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(23, 63, 53, 0.08);
  box-shadow: 0 2px 0 rgba(23, 63, 53, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--oak);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: rgba(23, 63, 53, 0.18);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 34px;
}

.service-card__top > i {
  color: #abb3af;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-style: normal;
}

.service-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--green);
  background: var(--green-3);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.service-card__short {
  display: block;
  margin-bottom: 8px;
  color: var(--oak-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card p {
  margin: 15px 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.craft {
  position: relative;
  overflow: hidden;
}

.craft::before {
  position: absolute;
  top: -240px;
  right: -140px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(201, 146, 91, 0.18);
  border-radius: 50%;
  content: "";
}

.split--craft {
  position: relative;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 82px;
}

.image-panel {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: #d9dedb;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel figcaption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 9px 13px;
  color: var(--green);
  background: var(--cream);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.craft__copy p {
  margin: 28px 0;
  color: #bdcac3;
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.project-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.project-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.project-card__image {
  position: relative;
  display: block;
  min-height: 330px;
  overflow: hidden;
  background-color: #d8dedb;
  background-position: center;
  background-size: cover;
}

.project-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 31, 25, 0.32), transparent 50%);
  content: "";
}

.project-card__image i {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  color: var(--green);
  background: rgba(245, 239, 228, 0.94);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card__body {
  display: flex;
  min-height: 160px;
  flex-direction: column;
  align-items: flex-start;
  padding: 23px 24px;
}

.project-card__body small {
  color: var(--oak-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-card__body > strong {
  margin-top: 7px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
  font-weight: 550;
  letter-spacing: -0.03em;
}

.project-card__body > span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.demo-note {
  display: flex;
  max-width: 900px;
  align-items: flex-start;
  gap: 15px;
  margin: 34px auto 0;
  padding: 18px 22px;
  color: #5b645f;
  background: var(--cream);
  font-size: 13px;
}

.demo-note svg {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: var(--oak-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.demo-note p {
  margin: 0;
}

.process {
  position: relative;
  overflow: hidden;
}

.process__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 54px;
}

.woodmark {
  width: 100px;
  height: 100px;
  fill: none;
  stroke: rgba(237, 201, 162, 0.6);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-grid article {
  position: relative;
  min-height: 240px;
  padding: 36px 26px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.process-grid article + article {
  padding-left: 26px;
}

.process-grid article > span {
  color: #efcda9;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
}

.process-grid h3 {
  margin-top: 30px;
  font-size: 22px;
}

.process-grid p {
  margin: 15px 0 0;
  color: #bdd0c7;
  font-size: 14px;
}

.planner-teaser {
  background:
    radial-gradient(circle at 88% 14%, rgba(201, 146, 91, 0.13), transparent 24%),
    #f7f4ee;
}

.planner-teaser__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 44px 48px;
  background: #fff;
  box-shadow: var(--shadow);
}

.planner-teaser__mark {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: var(--green);
  background: var(--green-3);
}

.planner-teaser__mark svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.planner-teaser h2 {
  max-width: 720px;
  font-size: clamp(31px, 3vw, 45px);
}

.planner-teaser p {
  max-width: 800px;
  margin: 17px 0 0;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid #e2dacd;
}

.page-hero__inner {
  display: grid;
  min-height: 430px;
  grid-template-columns: 1fr 0.65fr;
  gap: 80px;
  align-items: center;
  padding: 72px 0;
}

.page-hero h1 {
  max-width: 780px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 550;
}

.page-hero p {
  max-width: 690px;
  margin: 24px 0 0;
  color: #5c6762;
  font-size: 18px;
}

.page-hero .image-panel {
  min-height: 300px;
}

.page-hero > .page-hero__inner > .woodmark {
  justify-self: end;
  width: 280px;
  height: 280px;
  stroke: rgba(155, 103, 59, 0.45);
  stroke-width: 0.8;
}

.services-detailed {
  display: grid;
  gap: 22px;
}

.service-detail {
  display: grid;
  grid-template-columns: 70px 0.85fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
}

.service-detail__number {
  color: var(--oak-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
}

.service-detail h2 {
  font-size: 38px;
}

.service-detail__content > p {
  color: var(--muted);
}

.service-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  padding: 7px 11px;
  color: var(--green);
  background: var(--green-3);
  font-size: 12px;
  font-weight: 750;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.story-timeline {
  display: grid;
  gap: 0;
}

.story-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 0 0 44px;
}

.story-timeline article::before {
  position: absolute;
  top: 7px;
  bottom: -7px;
  left: 70px;
  width: 1px;
  background: #ccd4cf;
  content: "";
}

.story-timeline article:last-child::before {
  display: none;
}

.story-timeline article > strong {
  color: var(--oak-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 550;
}

.story-timeline article > div {
  position: relative;
  padding-left: 24px;
}

.story-timeline article > div::before {
  position: absolute;
  top: 5px;
  left: -5px;
  width: 11px;
  height: 11px;
  border: 3px solid #fbfcfa;
  border-radius: 50%;
  background: var(--oak-dark);
  content: "";
  box-shadow: 0 0 0 1px var(--oak-dark);
}

.story-timeline p {
  margin: 10px 0 0;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.team-card {
  min-height: 330px;
  padding: 40px;
  color: #d6e3dc;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.05), transparent 52%),
    var(--green);
}

.team-card small {
  color: #efcda9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.team-card h3 {
  margin-top: 22px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 39px;
  font-weight: 550;
}

.team-card p {
  margin: 25px 0 0;
  color: #bfd0c8;
}

.project-detail-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.project-detail-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 26, 20, 0.9), rgba(8, 26, 20, 0.05) 70%);
  content: "";
}

.project-detail-hero__copy {
  position: relative;
  z-index: 1;
  padding-bottom: 64px;
}

.project-detail-hero h1 {
  max-width: 850px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 550;
}

.project-detail-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #e3ebe7;
  font-size: 18px;
}

.project-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.project-detail-grid h2 {
  margin-bottom: 20px;
  font-size: 38px;
}

.project-detail-grid p {
  color: var(--muted);
}

.detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.detail-chips span {
  padding: 8px 12px;
  color: var(--green);
  background: var(--green-3);
  font-size: 12px;
  font-weight: 750;
}

.planner {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.planner__head {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 50px;
  align-items: end;
  padding: 46px;
  color: #d7e3dd;
  background: var(--green);
}

.planner__head h2 {
  color: #fff;
  font-size: clamp(34px, 3.5vw, 50px);
}

.planner__head p {
  margin: 14px 0 0;
  color: #bad0c5;
  font-size: 13px;
}

.planner__progress {
  display: grid;
  gap: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 750;
}

.planner__progress > i {
  display: block;
  height: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.planner__progress b {
  display: block;
  height: 100%;
  background: var(--oak);
  transition: width 0.3s ease;
}

.planner__body {
  padding: 46px;
}

.planner__step h3 {
  max-width: 750px;
  margin-bottom: 28px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 39px;
  font-weight: 550;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.choice-grid button {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 18px;
  color: var(--green);
  background: #f6f7f4;
  border: 1px solid #e1e4df;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  text-align: left;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.choice-grid button:hover,
.choice-grid button.is-selected {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.choice-grid svg {
  width: 18px;
  height: 18px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.planner__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.text-button {
  padding: 0;
  color: var(--green);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.text-button:disabled {
  cursor: default;
  opacity: 0.35;
}

.planner__final {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
}

.planner__final label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: #47534e;
  font-size: 12px;
  font-weight: 800;
}

.planner__final input,
.planner__final textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #f6f7f4;
  border: 1px solid #dfe3de;
  border-radius: 0;
  outline: none;
}

.planner__final input:focus,
.planner__final textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 63, 53, 0.1);
}

.planner__summary {
  align-self: start;
  padding: 28px;
  color: #e0ebe5;
  background: #142a23;
}

.planner__summary > strong {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 18px;
}

.planner__summary > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 12px;
}

.planner__summary span {
  color: #9fb4aa;
}

.planner__summary b {
  font-weight: 650;
}

.planner__summary .button {
  width: 100%;
  margin-top: 24px;
}

.planner__summary small {
  display: block;
  margin-top: 13px;
  color: #8ea49a;
  font-size: 10px;
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-card {
  padding: 26px;
  background: var(--cream);
  border-left: 3px solid var(--oak-dark);
}

.contact-card small {
  display: block;
  margin-bottom: 7px;
  color: var(--oak-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
  color: var(--green);
  font-size: 18px;
  font-weight: 750;
}

.legal {
  max-width: 860px;
}

.legal h2 {
  margin: 44px 0 14px;
  font-size: 32px;
}

.legal h3 {
  margin: 28px 0 12px;
  font-size: 21px;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal-note {
  margin-bottom: 36px;
  padding: 19px 22px;
  color: #5e5c54;
  background: var(--cream);
  border-left: 3px solid var(--oak-dark);
}

.footer {
  padding: 80px 0 24px;
  color: #bdccc4;
  background: #0d1b16;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.55fr 0.85fr 1.15fr;
  gap: 54px;
}

.logo--footer .logo__frame,
.logo--footer .logo__joint {
  stroke: #fff;
}

.logo--footer .logo__type strong {
  color: #fff;
}

.logo--footer .logo__type span {
  color: #9db0a7;
}

.footer__grid > div:first-child > p {
  max-width: 340px;
  margin: 24px 0 0;
  color: #93a79d;
  font-size: 14px;
}

.footer__grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer__grid > div > strong {
  margin-bottom: 10px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__grid a:hover {
  color: #fff;
}

.footer__grid span,
.footer__grid a {
  font-size: 13px;
}

.footer__cta {
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
}

.footer__cta p {
  margin: 0;
  color: #9fb2a8;
  font-size: 13px;
}

.footer__cta .button {
  min-height: 44px;
  margin-top: 8px;
  padding-inline: 15px;
  color: var(--green);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 62px;
  padding-top: 20px;
  color: #72887d;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.footer__bottom > div {
  display: flex;
  gap: 20px;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1120px) {
  .nav {
    gap: 17px;
  }

  .header__cta {
    display: none;
  }

  .project-grid--home {
    gap: 14px;
  }

  .footer__grid {
    grid-template-columns: 1.2fr 0.7fr 1fr;
  }

  .footer__cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 34px, 760px);
  }

  .section {
    padding: 82px 0;
  }

  .utility {
    display: none;
  }

  .header__main {
    min-height: 76px;
  }

  .nav {
    display: none;
  }

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .menu-overlay {
    position: fixed;
    z-index: 1090;
    inset: 0;
    display: block;
    pointer-events: none;
    background: rgba(6, 17, 13, 0.55);
    border: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .menu-overlay.is-open {
    pointer-events: auto;
    opacity: 1;
  }

  .mobile-menu {
    position: fixed;
    z-index: 1100;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(430px, 91vw);
    flex-direction: column;
    padding: 25px;
    background: #fff;
    box-shadow: -20px 0 70px rgba(8, 26, 20, 0.22);
    transform: translateX(104%);
    transition: transform 0.3s ease;
  }

  .mobile-menu.is-open {
    transform: translateX(0);
  }

  .mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu__top .logo {
    min-width: 0;
  }

  .mobile-menu__top .logo__type strong {
    font-size: 15px;
  }

  .mobile-menu__top > button {
    width: 42px;
    height: 42px;
    color: #fff;
    background: var(--green);
    border: 0;
    font-size: 26px;
  }

  .mobile-menu nav {
    display: grid;
    margin-top: 24px;
  }

  .mobile-menu nav a {
    display: flex;
    min-height: 55px;
    align-items: center;
    justify-content: space-between;
    color: var(--green);
    border-bottom: 1px solid var(--line);
    font-weight: 750;
  }

  .mobile-menu nav a.is-active {
    color: var(--oak-dark);
  }

  .mobile-menu nav svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
  }

  .mobile-menu__contact {
    display: grid;
    gap: 5px;
    margin-top: auto;
    padding: 20px;
    color: #d7e4de;
    background: var(--green);
  }

  .mobile-menu__contact span {
    font-size: 11px;
  }

  .mobile-menu__contact a {
    color: #fff;
    font-size: 21px;
    font-weight: 800;
  }

  .hero {
    min-height: 780px;
  }

  .hero__image {
    background:
      linear-gradient(90deg, rgba(14, 44, 36, 0.96), rgba(14, 44, 36, 0.65)),
      url("images/seelenhorst-hero.webp") center/cover no-repeat;
  }

  .hero__inner {
    min-height: 680px;
    padding-bottom: 150px;
  }

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

  .hero__facts div {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 14px 17px;
  }

  .split,
  .section-heading,
  .story-grid,
  .contact-grid,
  .project-detail-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .intro__copy {
    padding-top: 0;
  }

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

  .split--craft {
    grid-template-columns: 1fr;
  }

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

  .project-grid--home .project-card:last-child {
    display: none;
  }

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

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

  .planner-teaser__card {
    grid-template-columns: auto 1fr;
  }

  .planner-teaser__card > .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .page-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-hero > .page-hero__inner > .woodmark {
    display: none;
  }

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

  .service-detail__content {
    grid-column: 2;
  }

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

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
  }

  body {
    padding-bottom: 58px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 66px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .section {
    padding: 70px 0;
  }

  .demo-bar {
    min-height: 42px;
    flex-wrap: wrap;
    gap: 2px 6px;
    padding-inline: 12px;
    font-size: 9px;
  }

  .logo {
    min-width: 0;
  }

  .logo__mark {
    width: 41px;
    height: 41px;
  }

  .logo__type strong {
    font-size: 15px;
  }

  .logo__type span {
    font-size: 8px;
  }

  .hero {
    min-height: 850px;
  }

  .hero__inner {
    min-height: 670px;
    align-items: flex-start;
    padding-top: 68px;
  }

  .hero__copy > p {
    font-size: 17px;
  }

  .hero__trust {
    display: grid;
    gap: 9px;
  }

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

  .hero__facts div {
    min-height: 56px;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .hero__facts strong {
    min-width: 60px;
    font-size: 23px;
  }

  .hero__facts span {
    max-width: none;
  }

  .services-grid,
  .project-grid,
  .project-grid--home,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .project-grid--home .project-card:last-child {
    display: flex;
  }

  .service-card {
    min-height: 320px;
  }

  .image-panel {
    min-height: 410px;
  }

  .project-card__image {
    min-height: 300px;
  }

  .process__top {
    align-items: flex-start;
  }

  .process__top .woodmark {
    width: 65px;
    height: 65px;
  }

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

  .process-grid article,
  .process-grid article + article {
    min-height: 0;
    padding: 27px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .process-grid h3 {
    margin-top: 12px;
  }

  .planner-teaser__card {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .planner-teaser__mark {
    width: 60px;
    height: 60px;
  }

  .page-hero__inner {
    min-height: 360px;
    padding: 54px 0;
  }

  .page-hero .image-panel {
    min-height: 240px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 27px 23px;
  }

  .service-detail__content {
    grid-column: 1;
  }

  .story-timeline article {
    grid-template-columns: 68px 1fr;
    gap: 20px;
  }

  .story-timeline article::before {
    left: 56px;
  }

  .planner__head {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px 22px;
  }

  .planner__body {
    padding: 30px 22px;
  }

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

  .planner__step h3 {
    font-size: 32px;
  }

  .footer {
    padding-top: 65px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer__cta {
    grid-column: auto;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-actions {
    position: fixed;
    z-index: 1050;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    min-height: 58px;
    box-shadow: 0 -10px 30px rgba(11, 33, 25, 0.16);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--green);
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-actions a:last-child {
    color: var(--green);
    background: var(--cream);
  }
}

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