@font-face {
  font-family: "Kavoon";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/Kavoon-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/Lora-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/Lora-600.woff2") format("woff2");
}

@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/Lora-700.woff2") format("woff2");
}

:root {
  --green-950: #0c211a;
  --green-900: #112b22;
  --green-800: #183b2f;
  --green-700: #255743;
  --brand-green: #07503b;
  --cream: #f5f2e9;
  --paper: #fffef9;
  --ink: #14251f;
  --muted: #607068;
  --line: #dce1dc;
  --gold: #d59a1d;
  --orange: #e87425;
  --shadow: 0 16px 46px rgba(13, 37, 29, .1);
  --radius: 24px;
  --content: min(1240px, calc(100% - 64px));
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Kavoon", Georgia, serif; font-weight: 400; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: white;
  color: var(--green-950);
}

.skip-link:focus { transform: translateY(0); }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: relative;
  z-index: 10;
  overflow: hidden;
  background: white;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--content);
  min-height: 150px;
  margin: 0 auto;
}

.brand { display: flex; align-items: center; gap: 18px; }
.brand img { width: 92px; height: 92px; object-fit: contain; }
.brand > span { display: block; }

.brand-name {
  display: block;
  color: #0b4a37;
  font-family: "Lora", Georgia, serif;
  font-size: 39px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: .98;
}

.brand-tagline {
  display: block;
  margin-top: 9px;
  color: #d38119;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.header-promise {
  display: grid;
  justify-items: end;
  margin: 0;
  color: #56615d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25em;
  line-height: 1.85;
  text-align: right;
  text-transform: uppercase;
}

.header-promise::after {
  width: 92px;
  height: 3px;
  margin-top: 9px;
  background: var(--gold);
  content: "";
}

.header-wave { height: 76px; background: white; line-height: 0; }
.header-wave svg { width: 100%; height: 76px; }
.nav-shell { background: var(--brand-green); color: white; }
.nav-inner { width: var(--content); margin: 0 auto; }

.main-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 8px 10px;
  width: 100%;
  min-height: 126px;
  padding: 14px 0;
}

.main-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 999px;
  color: white;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.main-nav a:hover,
.main-nav a:focus-visible { background: rgba(255, 255, 255, .12); }

.main-nav a.active { background: var(--gold); color: #0b2b21; }
.main-nav a.contact-link { color: #f7dca9; }

.menu-button {
  display: none;
  width: 100%;
  padding: 15px 0;
  border: 0;
  background: transparent;
  color: white;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.menu-button span { margin-right: 7px; font-size: 20px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 22%, rgba(224, 168, 76, .2), transparent 27%),
    linear-gradient(135deg, var(--green-950), #183a2e 72%, #204f3c);
  color: white;
}

.hero::after {
  position: absolute;
  right: -170px;
  bottom: -280px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(227, 168, 75, .28);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(227, 168, 75, .05), 0 0 0 145px rgba(227, 168, 75, .025);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 76px;
  align-items: center;
  width: var(--content);
  min-height: 610px;
  margin: 0 auto;
  padding: 72px 0 78px;
}

.eyebrow,
.section-kicker,
.panel-label,
.card-tag {
  color: #efc985;
  font-family: "Lora", Georgia, serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.eyebrow::before { width: 28px; height: 2px; background: var(--orange); content: ""; }

.hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(48px, 5vw, 68px);
  letter-spacing: 0;
  line-height: 1.08;
}

.hero-intro { max-width: 720px; margin-bottom: 34px; color: #dce8e1; font-size: 20px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 9px 24px rgba(232, 116, 37, .24);
}

.button:hover,
.button:focus-visible { filter: brightness(1.08); transform: translateY(-1px); }
.button-ghost { border: 1px solid rgba(255, 255, 255, .36); background: transparent; box-shadow: none; }
.button-dark { background: var(--green-950); box-shadow: none; }

.hero-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 28px;
  background: rgba(7, 24, 18, .55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
  backdrop-filter: blur(8px);
}

.hero-panel h2 { margin: 10px 0 20px; font-size: 31px; line-height: 1.18; }
.check-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 36px; color: #e4eee8; font-size: 15px; }

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-950);
  content: "✓";
  font-size: 13px;
  font-weight: 900;
}

.topic-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 92px;
  padding: 18px 32px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.topic-nav a {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: #40534b;
  font-size: 14px;
  font-weight: 750;
}

.topic-nav a:hover,
.topic-nav a:focus-visible { border-color: var(--green-700); color: var(--green-700); }

.section { width: var(--content); margin: 0 auto; padding: 94px 0; }
.section-head { display: grid; grid-template-columns: .74fr 1.26fr; gap: 70px; margin-bottom: 45px; }
.section-kicker { margin-bottom: 8px; color: #a9682b; }
.section h2, .system-band h2, .final-cta h2 { margin-bottom: 0; font-size: clamp(39px, 4vw, 49px); letter-spacing: 0; line-height: 1.12; }
.section-head > p { max-width: 720px; margin: 7px 0 0; color: var(--muted); font-size: 18px; }

.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.compact-grid { margin: 24px 0; }

.card {
  overflow: hidden;
  border: 1px solid #e1e4e0;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.card-image {
  display: flex;
  height: 330px;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-bottom: 1px solid #edf0ec;
  background: white;
}

.card-image img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; }
.card-body { padding: 28px 30px 30px; }
.card-tag { margin-bottom: 7px; color: #a9682b; font-size: 14px; }
.card h3 { margin-bottom: 12px; font-size: 30px; line-height: 1.14; }
.card p { margin-bottom: 18px; color: var(--muted); }

.specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px; padding: 0; list-style: none; }
.specs li { padding: 7px 10px; border-radius: 9px; background: #edf3ef; color: #304a3f; font-size: 14px; font-weight: 750; }
.more { color: var(--green-700); font-size: 15px; font-weight: 900; }
.more::after { color: var(--orange); content: "  →"; }
.more:hover, .more:focus-visible { color: var(--orange); }

.system-band { padding: 82px 0; background: var(--green-900); color: white; }
.system-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; align-items: center; width: var(--content); margin: 0 auto; }
.system-band h2 { margin: 8px 0 20px; }
.system-band p:not(.section-kicker) { color: #d7e3dc; }
.system-band .button { margin-top: 12px; }
.solution-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }

.solution-list div {
  min-height: 108px;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 17px;
  background: rgba(255, 255, 255, .06);
  color: #e8efe9;
  font-size: 15px;
  font-weight: 700;
}

.solution-list strong { display: block; margin-bottom: 6px; color: var(--gold); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.equipment { background: #eef0eb; }

.feature-card { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 570px; }
.feature-card .feature-image { height: auto; min-height: 100%; padding: 28px; }
.feature-card .card-body { display: flex; flex-direction: column; justify-content: center; padding: 43px; }
.feature-card h3 { font-size: clamp(32px, 3.2vw, 41px); }
.detail-list { margin: 0 0 24px; padding: 0; list-style: none; }
.detail-list li { position: relative; margin: 9px 0; padding-left: 29px; color: #44564f; font-size: 16px; }
.detail-list li::before { position: absolute; top: 0; left: 0; color: var(--orange); content: "✓"; font-weight: 900; }

.price {
  align-self: flex-start;
  margin: 0 0 16px !important;
  padding: 9px 13px;
  border-radius: 10px;
  background: #f7e5c7;
  color: #7c4e1d !important;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.light-card { grid-template-columns: .95fr 1.05fr; background: var(--green-950); color: white; border-color: var(--green-950); }
.light-card .card-image { border-bottom: 0; background: #153d69; }
.light-card p, .light-card .detail-list li { color: #dbe5df; }
.light-card .card-tag { color: #efc985; }
.light-card .price { background: var(--orange); color: white !important; }
.light-card .button { align-self: flex-start; }

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  width: var(--content);
  margin: 0 auto;
  padding: 84px 0;
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.final-cta p { max-width: 760px; margin: 13px 0 0; color: #56665f; }
.final-cta .button { flex: 0 0 auto; }
.site-footer { background: var(--brand-green); color: #e0e9e4; }
.footer-wave { height: 62px; background: var(--paper); line-height: 0; }
.footer-wave svg { width: 100%; height: 62px; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 60px;
  width: var(--content);
  margin: 0 auto;
  padding: 42px 0 48px;
  font-size: 14px;
}

.footer-inner strong { display: block; margin-bottom: 12px; color: white; }
.footer-inner a { display: block; margin-bottom: 7px; }
.footer-inner a:hover, .footer-inner a:focus-visible { color: #f1ce86; }
.footer-motto { margin-bottom: 7px; color: #f1ce86; font-family: "Kavoon", Georgia, serif; font-size: 19px; font-weight: 400; }
.copyright { color: #a9bdb4; }

:focus-visible { outline: 3px solid #f3b243; outline-offset: 3px; }

@media (max-width: 980px) {
  :root { --content: min(100% - 42px, 760px); }
  .header-promise { display: none; }
  .hero-inner, .section-head, .system-inner, .feature-card { grid-template-columns: 1fr; }
  .hero-inner { gap: 36px; min-height: auto; }
  .card-grid { grid-template-columns: 1fr; }
  .feature-card .feature-image { min-height: 440px; }
  .light-card .card-body { order: 2; }
  .light-card .feature-image { order: 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --content: calc(100% - 32px); }
  html { scroll-padding-top: 58px; }
  body { font-size: 16px; }
  .brand-row { min-height: 118px; }
  .brand img { width: 67px; height: 67px; }
  .brand-name { font-size: 30px; }
  .brand-tagline { font-size: 10px; }
  .header-wave, .header-wave svg { height: 50px; }
  .nav-shell { position: sticky; top: 0; }
  .menu-button { display: block; }
  .main-nav { display: none; grid-template-columns: 1fr; min-height: 0; padding: 0 0 16px; }
  .main-nav.is-open { display: grid; }
  .main-nav a { width: 100%; border-radius: 8px; font-size: 16px; }
  .hero-inner { padding: 58px 0 64px; }
  .hero h1 { font-size: 44px; }
  .hero-intro { font-size: 18px; }
  .hero-panel { padding: 24px; }
  .topic-nav { justify-content: flex-start; padding: 18px 16px; }
  .section { padding: 70px 0; }
  .section-head { gap: 20px; }
  .section-head > p { font-size: 17px; }
  .card-image { height: 280px; }
  .card-body, .feature-card .card-body { padding: 27px 24px; }
  .feature-card .feature-image { min-height: 350px; }
  .solution-list { grid-template-columns: 1fr; }
  .final-cta { flex-direction: column; align-items: flex-start; padding: 66px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Shared branding for the complete website concept */
.brand-surface {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.brand-surface::before {
  position: absolute;
  right: clamp(-110px, -5vw, -42px);
  bottom: clamp(-230px, -13vw, -110px);
  z-index: -1;
  width: clamp(520px, 68vw, 1080px);
  aspect-ratio: 1;
  background: url('/assets/wildguard-wappen.png') center / contain no-repeat;
  content: "";
  opacity: .055;
  pointer-events: none;
  transform: rotate(-8deg);
}

.nav-shell.brand-surface::before {
  right: 4vw;
  bottom: -150px;
  width: 250px;
  opacity: .045;
}

.site-footer.brand-surface::before { right: 5vw; bottom: -135px; opacity: .06; }

.home-emblem-stage {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2422 / 1366;
  min-height: 0;
  overflow: hidden;
  background: #e8ecec;
}

.home-emblem-stage img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.route-loading {
  width: var(--content);
  min-height: 440px;
  margin: 0 auto;
  padding: 90px 0;
  color: var(--muted);
}

.page-hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(224, 168, 76, .18), transparent 28%),
    linear-gradient(135deg, var(--green-950), #183a2e 72%, #204f3c);
  color: white;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 68px;
  align-items: center;
  width: var(--content);
  min-height: 510px;
  margin: 0 auto;
  padding: 70px 0 78px;
}

.page-hero.no-media .page-hero-inner { grid-template-columns: minmax(0, 820px); min-height: 420px; }
.breadcrumb { margin-bottom: 22px; color: #efc985; font-size: 14px; font-weight: 800; }
.breadcrumb a:hover, .breadcrumb a:focus-visible { color: white; }

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 23px;
  font-size: clamp(47px, 5vw, 68px);
  letter-spacing: 0;
  line-height: 1.08;
}

.page-hero-copy > p:not(.eyebrow):not(.breadcrumb) { max-width: 760px; color: #dce8e1; font-size: 19px; }

.hero-media {
  display: flex;
  min-height: 360px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
}

.hero-media img { width: auto; height: auto; max-height: 330px; object-fit: contain; }
.hero-media.dark { background: #153d69; }

#bereiche .card-image {
  height: 380px;
  padding: 0;
  background: #10261e;
}

#bereiche .card-image img { width: 100%; height: 100%; max-width: none; max-height: none; object-fit: cover; }

.section.white-band {
  width: 100%;
  padding-right: max(32px, calc((100% - 1240px) / 2));
  padding-left: max(32px, calc((100% - 1240px) / 2));
  background: var(--paper);
}

.centered-head { max-width: 820px; margin: 0 auto 44px; text-align: center; }
.centered-head h2 { margin: 8px 0 16px; }
.centered-head p { color: var(--muted); font-size: 18px; }

.content-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: var(--content);
  margin: 0 auto;
  padding: 23px 0;
}

.content-nav a {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: #40534b;
  font-size: 14px;
  font-weight: 800;
}

.content-nav a:hover, .content-nav a:focus-visible { border-color: var(--orange); color: var(--orange); }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.split-section.reverse .image-frame { order: 2; }
.image-frame {
  display: flex;
  min-height: 440px;
  align-items: center;
  justify-content: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.image-frame img { width: auto; height: auto; max-height: 410px; object-fit: contain; }
.content-block h2 { margin: 7px 0 18px; font-size: clamp(37px, 4vw, 50px); line-height: 1.08; }
.content-block h3 { margin: 7px 0 14px; font-size: 31px; }
.content-block > p { color: var(--muted); }
.content-block .button { margin-top: 10px; }

.info-grid, .value-grid, .reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.info-card, .value-card, .reference-card, .legal-card, .form-card, .calculator-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(13, 37, 29, .07);
}

.info-card .number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: #efc985;
  font-weight: 900;
}

.info-card h3, .value-card h3, .reference-card h3 { margin-bottom: 11px; font-size: 25px; }
.info-card p, .value-card p, .reference-card p { margin: 0; color: var(--muted); }

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 62px;
  align-items: start;
}

.product-copy h2 { margin: 8px 0 18px; font-size: clamp(38px, 4vw, 52px); line-height: 1.08; }
.product-copy > p { color: var(--muted); font-size: 18px; }
.fact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 28px 0; }

.fact-grid div {
  padding: 17px;
  border-radius: 14px;
  background: #edf3ef;
  color: #304a3f;
  font-size: 15px;
  font-weight: 750;
}

.product-aside { position: sticky; top: 22px; }
.product-aside .image-frame { min-height: 390px; }
.price-box { margin-top: 18px; padding: 22px; border-radius: 18px; background: var(--green-900); color: white; }
.price-box strong { display: block; margin-bottom: 6px; color: #efc985; font-size: 21px; }
.price-box p { margin-bottom: 14px; color: #dce8e1; }

.product-gallery {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 14px;
  margin-top: 30px;
}

.product-gallery img {
  width: 100%;
  height: 250px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  object-fit: contain;
}

.inline-actions { margin-top: 22px; }
.related-link { margin-top: 24px; }

.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.category-grid .card-image { height: 250px; }
.category-grid .card-body { display: flex; min-height: 270px; flex-direction: column; }
.category-grid .more { margin-top: auto; }

.original-embed { width: 100%; margin: 0; background: #f3f1e9; }
.original-app-frame { display: block; width: 100%; border: 0; background: #f3f1e9; }
.original-embed-news .original-app-frame { height: 2550px; }

.interactive-page { width: 100%; background: #f3f1e9; }
.widget-mount { width: 100%; min-height: 780px; }
.widget-loading,
.widget-error { width: min(720px, calc(100% - 40px)); margin: 0 auto; padding: 90px 24px; text-align: center; }
.widget-loading { color: var(--green-700); font-weight: 850; }
.widget-error h2 { font-size: 34px; }

.contact-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(290px, .8fr); gap: 30px; align-items: start; }
.form-card h2, .calculator-card h2 { margin-bottom: 12px; font-size: 35px; }
.form-intro { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label, .checkbox-field { font-size: 14px; font-weight: 800; }

.field input, .field textarea, .field select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #bac5bf;
  border-radius: 10px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.field textarea { min-height: 150px; resize: vertical; }
.checkbox-field { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; color: #45574f; }
.checkbox-field input { width: 20px; height: 20px; margin-top: 2px; }
.form-status { margin: 16px 0 0; padding: 12px 14px; border-radius: 10px; background: #edf3ef; color: var(--green-700); font-weight: 800; }
.preview-note { margin-top: 16px; color: #7a6550; font-size: 14px; }

.contact-card { padding: 30px; border-radius: 22px; background: var(--green-900); color: white; }
.contact-card h2 { font-size: 31px; }
.contact-card a { display: block; margin: 11px 0; color: #f1ce86; font-weight: 800; }
.contact-card p { color: #dce8e1; }

.ionos-shop-page { width: min(1320px, calc(100% - 64px)); min-height: 860px; margin: 0 auto; padding: 54px 0 82px; }
.shop-loader {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 30px;
  border: 1px solid #d8dfda;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.shop-loader h3 { margin: 0; font-size: 30px; }
.shop-loader p { max-width: 760px; margin: 0; color: var(--muted); }
.shop-spinner { width: 34px; height: 34px; border: 4px solid #d8dfda; border-top-color: var(--green-700); border-radius: 50%; animation: shop-spin .8s linear infinite; }
@keyframes shop-spin { to { transform: rotate(360deg); } }
.ecwid-store { min-height: 720px; padding: 10px 0; background: white; }

.calculator-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(310px, .8fr); gap: 28px; align-items: start; }
.result-card { padding: 30px; border-radius: 22px; background: var(--green-900); color: white; }
.result-card h2 { font-size: 30px; }
.result-card strong { display: block; margin: 8px 0 2px; color: #efc985; font-family: "Kavoon", Georgia, serif; font-size: 42px; }
.result-card p { color: #dce8e1; }
.result-card .button { margin-top: 12px; }
.range-output { color: var(--orange); font-weight: 900; }

.legal-wrap { max-width: 880px; margin: 0 auto; }
.legal-card h2 { margin: 28px 0 10px; font-size: 28px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { color: #45574f; }

.image-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.image-pair img { width: 100%; height: 420px; border-radius: 22px; object-fit: cover; }
.reference-card .reference-place { margin-bottom: 10px; color: #a9682b; font-size: 14px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }

.reference-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 28px;
  padding: 30px 34px;
  border-radius: 22px;
  background: var(--green-900);
  color: white;
}

.reference-strip h3 { margin-bottom: 8px; font-size: 29px; }
.reference-strip p:not(.section-kicker) { max-width: 760px; margin: 0; color: #dce8e1; }
.reference-strip .button { flex: 0 0 auto; }

.homebase-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: 64px;
  align-items: center;
}

.homebase-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: stretch;
}

.homebase-gallery img {
  width: 100%;
  min-height: 360px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
  object-fit: contain;
}

.homebase-gallery .homebase-mark { background: #fff8e9; }
.homebase-gallery-single { grid-template-columns: 1fr; }
.homebase-gallery-single img { min-height: 430px; }

.reference-project { padding-bottom: 38px; }
.reference-project-head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 62px;
  align-items: end;
  margin-bottom: 34px;
}

.reference-project-head h2 { margin-top: 6px; }
.reference-project-head p:not(.section-kicker) { color: var(--muted); }

.liebenburg-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(260px, .72fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(213, 154, 29, .48);
  border-radius: 28px;
  background: linear-gradient(135deg, #fffef9, #eef3ef);
  box-shadow: var(--shadow);
}

.liebenburg-collage figure { min-width: 0; margin: 0; overflow: hidden; border-radius: 18px; background: #10261e; }
.liebenburg-collage .collage-main { grid-row: 1 / span 2; }
.liebenburg-collage img { width: 100%; height: 100%; object-fit: cover; }
.liebenburg-collage .collage-main img { object-position: center; }
.liebenburg-collage figure:last-child img { object-position: center 42%; }
.reference-card .more { display: inline-block; margin-top: 18px; }

.site-footer { position: relative; z-index: 0; }

@media (max-width: 980px) {
  .page-hero-inner, .split-section, .product-layout, .contact-layout, .calculator-layout { grid-template-columns: 1fr; }
  .page-hero-inner { gap: 34px; }
  .split-section.reverse .image-frame { order: initial; }
  .info-grid, .value-grid, .reference-grid, .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-aside { position: static; }
  .homebase-feature, .reference-project-head { grid-template-columns: 1fr; }
  .reference-strip { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 760px) {
  .home-emblem-stage { aspect-ratio: 2422 / 1366; }
  .page-hero-inner { min-height: auto; padding: 56px 0 64px; }
  .page-hero h1 { font-size: 43px; }
  .page-hero-copy > p:not(.eyebrow):not(.breadcrumb) { font-size: 18px; }
  .hero-media { min-height: 300px; }
  .hero-media img { max-height: 270px; }
  .info-grid, .value-grid, .reference-grid, .category-grid, .fact-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .image-frame { min-height: 320px; }
  .image-pair { grid-template-columns: 1fr; }
  .image-pair img { height: 330px; }
  .product-gallery, .homebase-gallery { grid-template-columns: 1fr; }
  .product-gallery img { height: 220px; }
  .homebase-gallery img { min-height: 280px; }
  .homebase-gallery-single img { min-height: 320px; }
  .liebenburg-collage { grid-template-columns: 1fr; grid-template-rows: 290px 230px 300px; }
  .liebenburg-collage .collage-main { grid-row: auto; }
  .ionos-shop-page { width: calc(100% - 32px); padding: 32px 0 64px; }
  .shop-loader { grid-template-columns: 1fr; }
}
