:root {
  color-scheme: light;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #10130f;
  background: #f7f8f0;
  --ink: #10130f;
  --muted: #5f6658;
  --paper: #fffef7;
  --soft: #edf3dd;
  --green: #4f8f24;
  --deep-green: #244b18;
  --lime: #bde64b;
  --tomato: #e75035;
  --line: rgba(16, 19, 15, 0.13);
  --shadow: 0 28px 70px rgba(20, 31, 12, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(16, 19, 15, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 19, 15, 0.035) 1px, transparent 1px),
    #f7f8f0;
  background-size: 42px 42px;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 254, 247, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.8rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 230px;
}

.brand-logo {
  width: 128px;
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(36, 75, 24, 0.18));
}

.brand-name {
  display: block;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-subtitle {
  display: block;
  max-width: 13rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.nav-logo {
  display: none;
}

.main-nav a {
  padding: 0.65rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #343b2d;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--lime);
  border-color: rgba(16, 19, 15, 0.2);
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: white;
  box-shadow: 10px 10px 0 var(--lime);
}

.button-secondary {
  background: var(--tomato);
  color: white;
  box-shadow: 10px 10px 0 rgba(16, 19, 15, 0.9);
}

.button-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 84vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 38%;
  background: var(--lime);
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 100%);
  opacity: 0.86;
}

.hero::after {
  content: "WEISSES KREUZ";
  position: absolute;
  left: max(1rem, calc((100vw - 1180px) / 2));
  bottom: -0.3em;
  color: rgba(16, 19, 15, 0.045);
  font-size: clamp(5rem, 16vw, 15rem);
  font-weight: 900;
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 24%, rgba(231, 80, 53, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 254, 247, 0.2), rgba(79, 143, 36, 0.09));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 680px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  background: var(--ink);
  color: #fffef7;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: 0 0 1rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(16, 19, 15, 0.22);
  border-radius: 8px;
  background: #fffef7;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 rgba(16, 19, 15, 0.12);
}

.section-label.light {
  background: white;
  color: var(--deep-green);
}

.hero h1 {
  margin: 0 0 1.25rem;
  max-width: 12.5ch;
  color: var(--ink);
  font-size: clamp(2.8rem, 5.2vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.hero p {
  margin: 0 0 2rem;
  max-width: 39rem;
  color: #2f3629;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-highlights div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 247, 0.82);
  box-shadow: 8px 8px 0 rgba(16, 19, 15, 0.08);
}

.hero-highlights strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-size: 1rem;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
  z-index: 1;
  min-height: clamp(380px, 52vw, 650px);
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 20px 20px 0 var(--deep-green);
  transform: rotate(1.2deg);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04) rotate(-1.2deg);
}

.hero-stamp {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(240px, calc(100% - 2rem));
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(16, 19, 15, 0.83);
  color: white;
  backdrop-filter: blur(12px);
}

.hero-stamp strong,
.hero-stamp span {
  display: block;
}

.hero-stamp strong {
  font-size: 1.15rem;
  text-transform: uppercase;
}

.hero-stamp span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.section {
  padding: 5rem 0;
}

.section-card-grid {
  padding-top: 4rem;
}

.grid-2 {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reverse {
  direction: rtl;
}

.reverse > * {
  direction: ltr;
}

.feature-card,
.contact-card,
.highlight-panel {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 247, 0.93);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 100%;
}

.feature-card:first-child,
.reverse .feature-card:last-child {
  background: var(--paper);
  box-shadow: 12px 12px 0 rgba(79, 143, 36, 0.25);
}

.feature-card h2,
.feature-card h3,
.contact-card h2,
.highlight-panel h2 {
  margin-top: 0;
  color: var(--ink);
  letter-spacing: 0;
}

.feature-card h2 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 1rem 0 0.7rem;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
}

.feature-card p,
.highlight-panel p,
.contact-card p {
  color: var(--muted);
  font-size: 1rem;
}

.feature-card ul {
  margin: 1.4rem 0;
  padding-left: 1.25rem;
  color: #343b2d;
}

.feature-card ul li {
  margin-bottom: 0.75rem;
}

.glass-card {
  position: relative;
  overflow: hidden;
  background: #dff1b0;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: var(--lime);
  opacity: 0.55;
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}

.glass-card > * {
  position: relative;
}

.glass-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 2px solid var(--ink);
  border-radius: 8px;
  object-fit: cover;
}

.section-highlight {
  padding: 5rem 0 4rem;
  background: var(--ink);
}

.highlight-panel {
  background:
    linear-gradient(120deg, rgba(189, 230, 75, 0.2), rgba(231, 80, 53, 0.17)),
    var(--deep-green);
  color: white;
  box-shadow: 16px 16px 0 var(--lime);
}

.highlight-panel h2 {
  max-width: 12ch;
  color: white;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.highlight-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.highlight-grid div {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.highlight-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  color: white;
  font-size: 1rem;
}

.highlight-panel p,
.highlight-grid p {
  color: rgba(255, 255, 255, 0.94);
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.05fr 0.95fr;
}

.contact-card {
  min-height: 100%;
}

.contact-card a {
  color: var(--deep-green);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.map-card {
  padding: 0;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.site-footer {
  padding: 2rem 0;
  background: #10130f;
  color: white;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-brand-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.footer-copy p {
  margin: 0;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.footer-copy p:first-child {
  color: white;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.footer-nav a {
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  background: var(--lime);
  color: var(--ink);
}

@media (max-width: 1040px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .highlight-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .reverse {
    direction: ltr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1,
  .feature-card h2,
  .highlight-panel h2 {
    max-width: none;
  }

  .hero-media {
    transform: none;
  }

  .hero-media img {
    transform: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1rem, 1180px);
  }

  .brand {
    min-width: 0;
    width: 100%;
  }

  .brand-logo {
    width: 112px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .brand-subtitle {
    font-size: 0.72rem;
  }

  .main-nav {
    width: 100%;
    gap: 0.3rem;
  }

  .main-nav a {
    flex: 1 1 calc(50% - 0.3rem);
    text-align: center;
  }

  .header-inner > .button {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 3.5rem 0 3rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.3rem);
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 330px;
    box-shadow: 10px 10px 0 var(--deep-green);
  }

  .section {
    padding: 3.5rem 0;
  }

  .feature-card,
  .contact-card,
  .highlight-panel {
    padding: 1.2rem;
  }

  .footer-brand-group {
    align-items: flex-start;
    flex-direction: column;
  }
}
