:root {
  --forest-950: #092318;
  --forest-900: #0f3020;
  --forest-800: #17472b;
  --forest-700: #23643b;
  --leaf: #5d9b3c;
  --leaf-bright: #88bd52;
  --cream: #f5f0e4;
  --cream-deep: #e9dfcd;
  --paper: #fbf8f0;
  --wood: #8b4e25;
  --wood-dark: #4c2818;
  --ink: #18231c;
  --muted: #687169;
  --line: rgba(16, 48, 32, 0.15);
  --shadow: 0 24px 70px rgba(9, 35, 24, 0.14);
  --radius: 24px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }
p, h1, h2, h3 { margin-top: 0; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: white;
  background: var(--forest-900);
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 86px;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, height .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  height: 74px;
  background: rgba(251, 248, 240, .94);
  border-color: var(--line);
  box-shadow: 0 6px 24px rgba(9, 35, 24, .07);
  backdrop-filter: blur(12px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand {
  width: 150px;
  height: 68px;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
}
.brand img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.main-nav { display: flex; align-items: center; gap: 35px; }
.main-nav a { position: relative; font-size: 14px; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--leaf);
  transition: transform .2s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.nav-cta { padding: 13px 19px; color: white; background: var(--forest-800); border-radius: 4px 15px 4px 15px; }
.nav-cta:hover { background: var(--forest-700); }
.menu-toggle { display: none; border: 0; color: var(--forest-900); background: transparent; }

.hero {
  position: relative;
  min-height: 790px;
  padding: 150px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(136, 189, 82, .22), transparent 26%),
    linear-gradient(120deg, #fbf8f0 0 55%, #e6eddc 55% 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: -150px;
  bottom: 45px;
  border: 45px solid rgba(93, 155, 60, .1);
  border-radius: 50%;
}
.hero-grain, .area-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 75px; }
.eyebrow { margin-bottom: 18px; font-size: 13px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 35px; height: 2px; margin: 0 10px 4px 0; background: var(--leaf); }
.eyebrow--green { color: var(--forest-700); }
h1, h2 {
  color: var(--forest-950);
  font-size: clamp(50px, 6vw, 84px);
  line-height: .97;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
h1 { margin-bottom: 29px; }
h1 em, h2 em {
  position: relative;
  display: inline-block;
  color: var(--forest-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .94em;
  font-weight: 400;
  letter-spacing: -.04em;
  text-transform: none;
}
h1 em::after, h2 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -5px;
  bottom: 3px;
  left: -5px;
  height: 11px;
  opacity: .32;
  background: var(--leaf-bright);
  clip-path: polygon(1% 34%, 100% 0, 97% 100%, 0 72%);
}
.hero-intro { max-width: 600px; margin-bottom: 32px; color: #4f5b53; font-size: 20px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-bottom: 35px; }
.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 15px 22px;
  border: 0;
  border-radius: 4px 18px 4px 18px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: white; background: var(--forest-800); box-shadow: 0 12px 30px rgba(23, 71, 43, .2); }
.button--primary:hover { background: var(--forest-700); box-shadow: 0 15px 35px rgba(23, 71, 43, .28); }
.button:disabled { cursor: wait; opacity: .68; transform: none; box-shadow: none; }
.button--cream { color: var(--forest-950); background: var(--cream); }
.button--cream:hover { background: white; }
.button--full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; line-height: 1.2; text-decoration: none; }
.text-link small { display: block; margin-bottom: 3px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.text-link__icon { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.text-link__icon svg { width: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.hero-points { display: flex; flex-wrap: wrap; gap: 11px 24px; margin: 0; padding: 0; list-style: none; color: #4c5850; font-size: 13px; font-weight: 700; }
.hero-points span { color: var(--forest-700); }

.hero-visual { position: relative; min-height: 520px; }
.hero-card {
  position: absolute;
  inset: 0 5px 0 25px;
  overflow: hidden;
  background: linear-gradient(#dcead0 0 50%, #7ba84d 50% 100%);
  border: 9px solid white;
  border-radius: 180px 25px 145px 25px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.hero-card::after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: 0;
  left: -5%;
  height: 110px;
  opacity: .55;
  background: repeating-linear-gradient(92deg, #284d1f 0 2px, transparent 2px 12px), linear-gradient(transparent, #315929);
  clip-path: polygon(0 40%, 3% 34%, 5% 54%, 8% 30%, 11% 55%, 14% 26%, 17% 50%, 20% 28%, 24% 56%, 27% 31%, 31% 52%, 35% 26%, 39% 56%, 43% 31%, 47% 55%, 51% 27%, 55% 49%, 60% 25%, 64% 53%, 68% 28%, 72% 55%, 77% 31%, 82% 55%, 87% 28%, 92% 54%, 96% 30%, 100% 50%, 100% 100%, 0 100%);
}
.sun { position: absolute; top: 55px; right: 50px; width: 72px; height: 72px; background: #f7d488; border-radius: 50%; box-shadow: 0 0 0 18px rgba(247, 212, 136, .22); }
.landscape { position: absolute; inset: 0; }
.hill { position: absolute; width: 130%; height: 48%; border-radius: 50% 50% 0 0; }
.hill--back { right: -58%; bottom: 25%; background: #6a954c; transform: rotate(-9deg); }
.hill--front { left: -32%; bottom: 8%; background: #497a38; transform: rotate(12deg); }
.tree { position: absolute; z-index: 2; bottom: 35%; width: 0; height: 0; border-right: 34px solid transparent; border-bottom: 110px solid #16452a; border-left: 34px solid transparent; filter: drop-shadow(0 8px 0 #0e321e); }
.tree::after { content: ""; position: absolute; top: 42px; left: -49px; border-right: 49px solid transparent; border-bottom: 96px solid #16452a; border-left: 49px solid transparent; }
.tree--one { left: 7%; transform: scale(.7); }
.tree--two { left: 17%; bottom: 33%; transform: scale(.5); }
.tree--three { right: 3%; bottom: 28%; transform: scale(.55); }
.logo-frame {
  position: absolute;
  z-index: 5;
  top: 34%;
  right: 7%;
  left: 7%;
  padding: 13px 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .93);
  border: 1px solid rgba(9, 35, 24, .12);
  border-radius: 8px 28px 8px 28px;
  box-shadow: 0 16px 40px rgba(9, 35, 24, .25);
  transform: rotate(-2deg);
}
.logo-frame img { width: 100%; height: auto; mix-blend-mode: multiply; }
.hero-card__caption { position: absolute; z-index: 7; bottom: 14px; left: 34px; margin: 0; color: white; font-size: 14px; font-weight: 700; letter-spacing: .07em; line-height: 1.35; text-transform: uppercase; transform: rotate(-1.5deg); }
.hero-card__caption span, .hero-card__caption strong { display: block; }
.hero-card__caption strong { font-family: Georgia, serif; font-size: 22px; font-style: italic; letter-spacing: 0; text-transform: none; }
.hero-stamp { position: absolute; z-index: 10; right: -30px; bottom: 42px; display: grid; width: 135px; height: 135px; place-content: center; color: white; background: var(--wood); border: 3px solid var(--cream); border-radius: 50%; box-shadow: 0 10px 25px rgba(76, 40, 24, .26); text-align: center; transform: rotate(9deg); }
.hero-stamp::before { content: ""; position: absolute; inset: 7px; border: 1px dashed rgba(255,255,255,.6); border-radius: 50%; }
.hero-stamp span, .hero-stamp small { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-stamp strong { font-family: Georgia, serif; font-size: 42px; line-height: .95; }
.grass-edge { position: absolute; right: 0; bottom: -1px; left: 0; height: 38px; background: var(--forest-900); clip-path: polygon(0 100%, 0 70%, 2% 82%, 3% 26%, 4% 78%, 5% 42%, 7% 80%, 9% 32%, 10% 84%, 12% 49%, 13% 76%, 15% 35%, 17% 80%, 19% 45%, 20% 83%, 23% 32%, 25% 78%, 28% 41%, 30% 82%, 33% 38%, 35% 80%, 38% 48%, 40% 82%, 43% 31%, 45% 77%, 48% 45%, 50% 83%, 53% 37%, 56% 80%, 59% 45%, 62% 82%, 65% 32%, 68% 78%, 71% 42%, 74% 82%, 77% 35%, 80% 78%, 83% 43%, 86% 81%, 89% 35%, 92% 77%, 95% 43%, 98% 76%, 100% 35%, 100% 100%); }

.service-ribbon { overflow: hidden; color: var(--cream); background: var(--wood-dark); border-bottom: 5px solid var(--wood); transform: rotate(-.45deg) scale(1.01); }
.service-ribbon__track { display: flex; width: max-content; align-items: center; gap: 24px; padding: 17px 0; animation: ribbon 35s linear infinite; }
.service-ribbon span { font-size: 14px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.service-ribbon i { color: #c8935c; font-style: normal; }
@keyframes ribbon { to { transform: translateX(-50%); } }

.services { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 70px; margin-bottom: 55px; }
.section-heading h2, .approach h2, .contact h2 { margin-bottom: 0; font-size: clamp(43px, 5vw, 68px); }
.section-heading > p { max-width: 460px; margin: 0 0 8px; color: var(--muted); font-size: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  overflow: hidden;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 8px 28px 8px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(93, 155, 60, .5); box-shadow: var(--shadow); }
.service-card__number { position: absolute; top: 22px; right: 24px; color: #aab2ab; font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.service-icon { display: grid; width: 70px; height: 70px; place-items: center; color: var(--forest-700); background: #edf1e6; border-radius: 50%; }
.service-icon svg { width: 43px; height: 43px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.2; }
.service-card h3 { margin: 22px 0 8px; font-size: 27px; line-height: 1.05; text-transform: uppercase; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.service-card--featured { color: white; background: var(--forest-800); border-color: var(--forest-800); }
.service-card--featured .service-card__number { color: rgba(255,255,255,.45); }
.service-card--featured .service-icon { color: white; background: rgba(255,255,255,.11); }
.service-card--featured p { color: rgba(255,255,255,.72); }
.service-card__tag { align-self: flex-start; margin-top: 22px; padding: 5px 10px; color: var(--forest-950); background: var(--leaf-bright); border-radius: 20px; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.service-card--request { display: grid; grid-template-columns: 70px 1fr; gap: 20px; color: white; background: var(--wood-dark); border-color: var(--wood-dark); }
.service-card--request .request-mark { display: grid; width: 60px; height: 60px; place-items: center; color: var(--wood-dark); background: #c9945c; border-radius: 50%; font-family: Georgia, serif; font-size: 44px; line-height: 1; }
.service-card--request .eyebrow { margin-bottom: 7px; color: #d4aa7b; font-size: 10px; }
.service-card--request h3 { margin-top: 0; }
.service-card--request p { color: rgba(255,255,255,.7); }
.service-card--request .button { margin-top: 24px; }

.approach { position: relative; overflow: hidden; color: white; background: var(--forest-950); }
.approach::before { content: "RW"; position: absolute; right: -40px; bottom: -160px; color: rgba(255,255,255,.025); font-size: 380px; font-weight: 900; line-height: 1; }
.approach-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }
.approach-visual { position: relative; min-height: 600px; }
.wood-panel {
  position: absolute;
  inset: 20px 30px 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50px;
  overflow: hidden;
  background: linear-gradient(110deg, rgba(48,23,14,.25), rgba(125,66,33,.18)), repeating-linear-gradient(6deg, #653a22 0 5px, #744429 5px 12px, #5a311e 12px 16px, #80502e 16px 25px);
  border: 8px solid rgba(255,255,255,.92);
  border-radius: 180px 18px 150px 18px;
  box-shadow: 0 25px 70px rgba(0,0,0,.3);
  transform: rotate(-2deg);
}
.wood-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 35%, rgba(16,8,5,.8)); }
.wood-panel p, .wood-panel small { position: relative; z-index: 2; }
.wood-panel p { margin-bottom: 10px; font-size: 36px; font-weight: 900; line-height: 1.05; text-transform: uppercase; }
.wood-panel em { color: #e5c298; font-family: Georgia, serif; font-weight: 400; text-transform: none; }
.wood-panel small { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.wood-rings { position: absolute; z-index: 1; top: 65px; left: 45px; width: 260px; height: 260px; opacity: .4; border: 3px solid #d0a372; border-radius: 50%; }
.wood-rings span { position: absolute; border: 2px solid #d0a372; border-radius: 50%; }
.wood-rings span:nth-child(1) { inset: 24px; }
.wood-rings span:nth-child(2) { inset: 57px; }
.wood-rings span:nth-child(3) { inset: 91px; }
.quality-card { position: absolute; z-index: 3; right: -15px; bottom: 0; display: flex; max-width: 310px; gap: 13px; padding: 19px; color: var(--ink); background: var(--cream); border-radius: 4px 16px 4px 16px; box-shadow: 0 15px 40px rgba(0,0,0,.25); }
.quality-card > span { display: grid; width: 35px; height: 35px; flex: 0 0 auto; place-items: center; color: white; background: var(--forest-700); border-radius: 50%; }
.quality-card p { margin: 0; font-size: 13px; line-height: 1.45; }
.quality-card strong { display: block; font-size: 14px; text-transform: uppercase; }
.approach-copy .eyebrow { color: #b5c3b9; }
.approach-copy h2 { color: white; }
.approach-copy h2 em { color: #b9d28d; }
.approach-intro { max-width: 610px; margin: 28px 0 36px; color: rgba(255,255,255,.67); font-size: 18px; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 54px 1fr; gap: 19px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.13); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.process-list li > span { display: grid; width: 42px; height: 42px; place-items: center; color: var(--forest-950); background: var(--leaf-bright); border-radius: 50%; font-size: 13px; font-weight: 900; }
.process-list h3 { margin: 0 0 2px; font-size: 18px; text-transform: uppercase; }
.process-list p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }

.area { position: relative; padding: 80px 0; overflow: hidden; color: white; background: var(--forest-700); }
.area::before { content: ""; position: absolute; top: -120px; right: 8%; width: 330px; height: 330px; border: 60px solid rgba(255,255,255,.045); border-radius: 50%; }
.area-pattern { opacity: .12; }
.area-inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 100px; }
.area h2 { margin: 0; color: white; font-size: clamp(42px, 5vw, 65px); }
.area h2 em { color: #d3e6b0; }
.area-copy > p { margin-bottom: 25px; color: rgba(255,255,255,.76); font-size: 18px; }
.text-link--light { color: white; }
.text-link--light small { color: rgba(255,255,255,.58); }
.text-link--light .text-link__icon { border-color: rgba(255,255,255,.3); }

.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 90px; }
.contact-copy > p:not(.eyebrow) { max-width: 470px; margin: 27px 0 36px; color: var(--muted); }
.contact-details { display: grid; gap: 14px; font-style: normal; }
.contact-details a, .contact-details > div { display: flex; align-items: center; gap: 14px; color: var(--ink); text-decoration: none; }
.contact-details a > span:first-child, .contact-details > div > span:first-child { display: grid; width: 46px; height: 46px; flex: 0 0 auto; place-items: center; color: var(--forest-700); background: rgba(255,255,255,.7); border: 1px solid var(--line); border-radius: 50%; }
.contact-details svg { width: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.contact-details small { display: block; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.form-wrap { position: relative; }
.form-wrap::before { content: ""; position: absolute; inset: 20px -15px -15px 20px; background: var(--wood); border-radius: 8px 28px 8px 28px; transform: rotate(1deg); }
.contact-form { position: relative; padding: 38px; background: #fffdf8; border: 1px solid var(--line); border-radius: 8px 28px 8px 28px; box-shadow: var(--shadow); }
.form-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 27px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.form-heading span { font-size: 18px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.form-heading small { color: var(--muted); font-size: 11px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form > label, .form-row label { display: grid; gap: 7px; margin-bottom: 16px; color: #37423a; font-size: 12px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid #ccd2cc;
  border-radius: 4px;
  outline: 0;
  letter-spacing: normal;
  text-transform: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--forest-700); box-shadow: 0 0 0 3px rgba(35, 100, 59, .13); }
.contact-form textarea { min-height: 125px; resize: vertical; }
.privacy-notice { margin: 6px 0 20px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.privacy-notice a { color: var(--forest-700); font-weight: 800; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.form-status { min-height: 0; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; text-align: center; }
.form-status:not(:empty) { margin-top: 13px; }
.form-status.is-error { padding: 11px 13px; color: #7f1d1d; background: #fef2f2; border: 1px solid #fecaca; border-radius: 4px; text-align: left; }
.hidden-field { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

.site-footer { color: rgba(255,255,255,.7); background: #071b12; }
.footer-top { display: grid; grid-template-columns: 1.8fr .7fr 1fr; gap: 80px; padding: 75px 0 55px; }
.footer-logo { width: 190px; height: 95px; margin-bottom: 15px; overflow: hidden; background: white; border-radius: 5px 16px 5px 16px; }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand p { max-width: 370px; margin: 0; font-size: 14px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.footer-column h2 { margin-bottom: 11px; color: white; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.footer-column a { font-size: 14px; text-decoration: none; }
.footer-column a:hover { color: white; }
.footer-column p { margin: 0; font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 24px; }
.footer-bottom a { text-decoration: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.service-card:nth-child(2) { transition-delay: .06s; }
.service-card:nth-child(3) { transition-delay: .12s; }
.service-card:nth-child(5) { transition-delay: .06s; }
.service-card:nth-child(6) { transition-delay: .12s; }

/* Rechtliche Unterseiten */
.legal-page { background: var(--paper); }
.legal-header { position: relative; height: 86px; background: var(--paper); border-bottom: 1px solid var(--line); }
.legal-header .site-header { position: relative; }
.legal-main { padding: 80px 0 110px; }
.legal-hero { max-width: 830px; margin-bottom: 55px; }
.legal-hero .eyebrow { color: var(--forest-700); }
.legal-hero h1 { margin-bottom: 20px; font-size: clamp(46px, 6vw, 72px); }
.legal-hero p { color: var(--muted); }
.legal-content { max-width: 830px; padding: 48px; background: white; border: 1px solid var(--line); border-radius: 8px 28px 8px 28px; box-shadow: 0 20px 60px rgba(9,35,24,.08); }
.legal-content h2 { margin: 42px 0 12px; font-size: 25px; letter-spacing: -.02em; line-height: 1.2; text-transform: uppercase; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 27px 0 7px; font-size: 18px; }
.legal-content p, .legal-content li { color: #4f5b53; font-size: 15px; }
.legal-content ul { padding-left: 20px; }
.legal-content a { color: var(--forest-700); font-weight: 700; overflow-wrap: anywhere; }
.legal-note { padding: 17px 19px; background: var(--cream); border-left: 4px solid var(--leaf); }
.back-link { display: inline-flex; gap: 8px; align-items: center; margin-bottom: 35px; color: var(--forest-700); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }

/* Danke / Fehler */
.message-page { display: grid; min-height: 100vh; place-items: center; padding: 30px; background: radial-gradient(circle at 85% 10%, rgba(136,189,82,.25), transparent 28%), var(--cream); }
.message-card { width: min(100%, 680px); padding: 55px; background: white; border: 1px solid var(--line); border-radius: 10px 34px 10px 34px; box-shadow: var(--shadow); text-align: center; }
.message-card__icon { display: grid; width: 74px; height: 74px; margin: 0 auto 24px; place-items: center; color: white; background: var(--forest-700); border-radius: 50%; font-size: 32px; }
.message-card h1 { margin-bottom: 17px; font-size: clamp(40px, 8vw, 62px); }
.message-card p { max-width: 500px; margin: 0 auto 28px; color: var(--muted); }

@media (max-width: 1050px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .hero-visual { min-height: 460px; }
  .hero-stamp { right: -5px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { gap: 50px; }
  .contact-grid { gap: 45px; }
}

@media (max-width: 820px) {
  .site-header, .site-header.is-scrolled {
    height: 72px;
    background: var(--paper);
    border-bottom-color: var(--line);
    box-shadow: 0 6px 24px rgba(9, 35, 24, .07);
    backdrop-filter: none;
  }
  .brand { width: 125px; height: 57px; }
  .menu-toggle { display: flex; align-items: center; gap: 10px; padding: 9px; cursor: pointer; }
  .menu-toggle__label { font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
  .menu-toggle__icon { display: grid; width: 24px; gap: 6px; }
  .menu-toggle__icon i { display: block; height: 2px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] i:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: fixed; z-index: -1; inset: 0; display: flex; padding: 120px 25px 40px; flex-direction: column; align-items: stretch; gap: 5px; visibility: hidden; opacity: 0; background: var(--paper); transform: translateY(-15px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .main-nav a { padding: 13px 7px; font-size: 20px; }
  .main-nav .nav-cta { margin-top: 15px; padding: 18px; color: white; text-align: center; }
  .hero { padding-top: 125px; background: radial-gradient(circle at 86% 20%, rgba(136,189,82,.22), transparent 26%), var(--paper); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero-visual { min-height: 540px; }
  .hero-card { inset-inline: 8%; }
  .hero-stamp { right: 3%; }
  .section { padding: 80px 0; }
  .section-heading, .area-inner, .contact-grid { grid-template-columns: 1fr; gap: 25px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading > p { margin: 0; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-visual { min-height: 530px; }
  .area-inner { gap: 30px; }
  .contact-grid { gap: 55px; }
  .footer-top { grid-template-columns: 1.3fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .hero { padding: 115px 0 75px; }
  h1 { font-size: clamp(43px, 14vw, 62px); }
  h1 br { display: none; }
  .hero-intro { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 17px; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 6px; }
  .hero-visual { min-height: 400px; margin-top: 15px; }
  .hero-card { inset: 0 5px; border-width: 6px; border-radius: 120px 18px 100px 18px; }
  .hero-stamp { right: -5px; bottom: 17px; width: 108px; height: 108px; }
  .hero-stamp strong { font-size: 32px; }
  .logo-frame { top: 32%; right: 5%; left: 5%; padding: 9px; }
  .hero-card__caption { bottom: 8px; left: 20px; }
  .sun { top: 38px; right: 32px; width: 55px; height: 55px; }
  .section { padding: 68px 0; }
  .section-heading h2, .approach h2, .contact h2 { font-size: clamp(38px, 12vw, 52px); }
  .area-inner > * { min-width: 0; }
  .area h2 { font-size: clamp(34px, 10vw, 40px); }
  .area-copy > p { max-width: 100%; overflow-wrap: break-word; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; }
  .service-card--request { min-height: 365px; grid-template-columns: 1fr; }
  .approach-grid { gap: 30px; }
  .approach-visual { min-height: 430px; }
  .wood-panel { inset: 10px 10px 20px 0; padding: 30px; border-width: 6px; border-radius: 120px 15px 105px 15px; }
  .wood-rings { top: 45px; left: 30px; width: 200px; height: 200px; }
  .wood-panel p { font-size: 27px; }
  .quality-card { right: -4px; max-width: 260px; }
  .process-list li { grid-template-columns: 45px 1fr; gap: 12px; }
  .area { padding: 65px 0; }
  .form-wrap::before { inset: 12px -5px -10px 12px; }
  .contact-form { padding: 24px 18px; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 3px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-details a { overflow-wrap: anywhere; }
  .footer-top { grid-template-columns: 1fr; gap: 35px; padding-top: 55px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .legal-main { padding: 55px 0 80px; }
  .legal-content { padding: 28px 19px; }
  .message-card { padding: 42px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
