:root {
  --color-cream: #f8f6f1;
  --color-beige: #e8e2d3;
  --color-earth-light: #d4c5ae;
  --color-green-soft: #8da48d;
  --color-green-deep: #5f7862;
  --color-green-darker: #48604b;
  --color-text: #2a332c;
  --color-text-muted: #5b645d;
  --color-white: #ffffff;
  --color-alert: #8f503d;
  --color-success: #45654b;
  --shadow-soft: 0 20px 45px rgba(30, 38, 31, 0.08);
  --shadow-card: 0 14px 30px rgba(30, 38, 31, 0.06);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1120px, 92vw);
  --header-height: 78px;
  --transition: 250ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--color-text);
  background: linear-gradient(180deg, #fbfaf7 0%, #f5f2e9 100%);
  line-height: 1.6;
}

body.page-home {
  padding-bottom: 0;
}

#particles-js {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

.site-content {
  position: relative;
  z-index: 1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

p {
  margin-top: 0;
  color: var(--color-text-muted);
}

.eyebrow {
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-green-deep);
  margin-bottom: 0.85rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-green-deep);
  color: var(--color-white);
  padding: 0.75rem 1rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 2000;
}

.skip-link:focus-visible {
  left: 0;
}

:focus-visible {
  outline: 2px solid rgba(95, 120, 98, 0.42);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(248, 246, 241, 0.9);
  border-bottom: 1px solid rgba(95, 120, 98, 0.15);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-lockup {
  display: grid;
  gap: 0.1rem;
}

.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.1;
  color: var(--color-text);
}

.brand-tag {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.brand-logo-footer {
  height: 8rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.9rem;
}

.primary-nav ul {
  list-style: none;
  display: flex;
  gap: clamp(1rem, 2vw, 1.8rem);
  margin: 0;
  padding: 0;
}

.primary-nav a {
  position: relative;
  font-weight: 600;
  color: var(--color-text);
  padding-bottom: 0.2rem;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--color-green-deep);
  transition: transform var(--transition);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(95, 120, 98, 0.4);
  border-radius: 10px;
  background: var(--color-white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle-line {
  width: 20px;
  height: 2px;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  position: relative;
  min-height: min(90vh, 840px);
  display: grid;
  align-items: center;
  padding-top: calc(var(--header-height) + 1rem);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(47, 66, 50, 0.28), rgba(95, 120, 98, 0.22)),
    url("images/sheepman.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 44, 35, 0.2), rgba(34, 44, 35, 0.5));
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.hero-content {
  max-width: 640px;
  margin-left: auto;
  margin-right: 6%;
  text-align: left;
  color: var(--color-white);
}

.hero-content .eyebrow,
.hero-content p {
  color: rgba(255, 255, 255, 0.92);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  max-width: 54ch;
  margin-bottom: 1rem;
}

.hero-trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
  padding: 0;
}

.hero-trust-list li {
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.92rem;
  color: var(--color-white);
  backdrop-filter: blur(4px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

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

.btn-primary {
  background: var(--color-white);
  color: var(--color-green-deep);
  box-shadow: 0 12px 30px rgba(31, 40, 33, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #f0efe8;
}

.btn-prominent {
  min-width: 12.5rem;
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.product-grid,
.footer-grid {
  display: grid;
}

.story-content,
.section-head,
.camping-content,
.order-page-intro,
.patenschaft-content,
.legal-content {
  background: rgba(248, 246, 241, 0.62);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-lg);
}

.section-head,
.story-content,
.camping-content,
.order-page-intro,
.patenschaft-content,
.legal-content {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  box-shadow: 0 14px 32px rgba(30, 38, 31, 0.04);
}

.section-head-compact {
  max-width: 760px;
  margin-bottom: 1.8rem;
}

.section-story {
  background: rgba(248, 246, 241, 0.92);
}

.story-layout,
.camping-layout,
.patenschaft-layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.story-layout,
.camping-layout {
  grid-template-columns: 1fr 1fr;
}

.patenschaft-layout {
  grid-template-columns: 1.1fr 1fr;
}

.story-content p {
  max-width: 60ch;
}

.story-highlights {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0 0;
  padding: 0;
}

.story-highlights li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--color-text);
  font-weight: 600;
}

.story-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--color-green-deep);
}

.story-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.story-image,
.patenschaft-image,
.camping-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.story-image-large {
  grid-column: 1 / -1;
  height: 300px;
}

.story-image-small {
  height: 180px;
}

.section-products {
  background:
    radial-gradient(circle at 0% 0%, rgba(141, 164, 141, 0.2), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(212, 197, 174, 0.28), transparent 36%),
    linear-gradient(180deg, rgba(247, 244, 237, 0.94) 0%, rgba(242, 236, 223, 0.94) 100%);
}

.section-teasers {
  background:
    radial-gradient(circle at 0% 10%, rgba(141, 164, 141, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(248, 246, 241, 0.84) 0%, rgba(243, 238, 228, 0.92) 100%);
}

.teaser-grid {
  display: grid;
  gap: 1.2rem;
}

.teaser-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  align-items: center;
  gap: 1.2rem;
  padding: 1rem;
  min-height: 100%;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(95, 120, 98, 0.14);
  box-shadow: var(--shadow-card);
}

.teaser-media {
  aspect-ratio: 4 / 3;
  min-height: 250px;
  border-radius: 18px;
  overflow: hidden;
}

.teaser-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teaser-media-products img {
  object-position: center 42%;
}

.teaser-media-camping img {
  object-position: center 50%;
}

.teaser-content {
  display: grid;
  align-content: center;
  gap: 0.65rem;
}

.teaser-content p:last-of-type {
  max-width: 33ch;
}

.teaser-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.35rem;
}

.teaser-link {
  font-weight: 700;
  color: var(--color-green-deep);
}

.teaser-link:hover,
.teaser-link:focus-visible {
  text-decoration: underline;
}

.page-hero {
  padding-top: calc(var(--header-height) + 2rem);
}

.section-products-hero,
.section-camping-hero {
  background:
    radial-gradient(circle at 12% 10%, rgba(141, 164, 141, 0.18), transparent 34%),
    radial-gradient(circle at 90% 0%, rgba(212, 197, 174, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(248, 246, 241, 0.92) 0%, rgba(243, 238, 228, 0.96) 100%);
}

.page-hero-layout {
  display: grid;
  gap: 1.4rem;
}

.page-hero-layout-split {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: center;
}

.page-hero-content {
  max-width: 42rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: var(--radius-lg);
  background: rgba(248, 246, 241, 0.62);
  box-shadow: 0 14px 32px rgba(30, 38, 31, 0.04);
  backdrop-filter: blur(4px);
}

.page-hero-actions {
  margin-top: 0.7rem;
}

.page-btn-secondary {
  color: var(--color-green-deep);
  border-color: rgba(95, 120, 98, 0.24);
  background: rgba(255, 255, 255, 0.42);
}

.page-btn-secondary:hover,
.page-btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.68);
}

.page-hero-visual {
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-grid-compact .product-card img {
  height: 200px;
}

.product-grid-compact .product-card {
  box-shadow: 0 12px 24px rgba(30, 38, 31, 0.05);
}

.product-grid-compact .product-body {
  gap: 0.35rem;
  padding: 0.95rem 0.95rem 0.45rem;
}

.product-grid-compact .product-body h2 {
  font-size: 1.18rem;
  margin-bottom: 0;
}

.product-grid-compact .product-actions {
  padding: 0 0.95rem 0.95rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head-actions {
  margin-top: 1.3rem;
}

.product-service-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.service-item {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(95, 120, 98, 0.14);
  box-shadow: var(--shadow-card);
}

.service-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.service-item a {
  color: var(--color-green-deep);
  font-weight: 700;
}

.product-filters {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.8rem;
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(95, 120, 98, 0.16);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(47, 66, 50, 0.08);
}

.filter-btn {
  border: 1px solid transparent;
  background: transparent;
  color: var(--color-text);
  border-radius: 999px;
  padding: 0.56rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.filter-btn:hover,
.filter-btn:focus-visible {
  border-color: rgba(95, 120, 98, 0.32);
  background: rgba(255, 255, 255, 0.7);
}

.filter-btn.is-active {
  background: var(--color-green-deep);
  color: var(--color-white);
  border-color: var(--color-green-deep);
  box-shadow: 0 10px 24px rgba(95, 120, 98, 0.24);
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
  transition: min-height 280ms ease;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 250, 246, 0.98));
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(95, 120, 98, 0.14);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    opacity 220ms ease,
    border-color var(--transition),
    visibility 220ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(30, 38, 31, 0.1);
  border-color: rgba(95, 120, 98, 0.24);
}

.product-card.is-hidden {
  display: none;
}

.product-card.is-fading {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.product-image {
  background: linear-gradient(150deg, rgba(212, 197, 174, 0.85), rgba(141, 164, 141, 0.6));
}

.product-body {
  display: grid;
  gap: 0.5rem;
  padding: 1.15rem 1.15rem 0.6rem;
  flex: 1;
}

.product-badge {
  justify-self: start;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(95, 120, 98, 0.12);
  color: var(--color-green-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0;
}

.product-body p {
  margin-bottom: 0;
}

.product-price {
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.02rem;
}

.product-meta {
  font-size: 0.95rem;
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
  padding: 0 1.15rem 1.15rem;
}

.product-actions-split {
  justify-content: space-between;
}

.product-link-text {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--color-green-deep);
}

.product-link-text:hover,
.product-link-text:focus-visible {
  text-decoration: underline;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 0.98rem;
  border-radius: 999px;
  background: rgba(95, 120, 98, 0.12);
  border: 1px solid rgba(95, 120, 98, 0.18);
  color: var(--color-green-deep);
  font-weight: 700;
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.product-cta:hover,
.product-cta:focus-visible {
  background: rgba(95, 120, 98, 0.18);
  border-color: rgba(95, 120, 98, 0.3);
  transform: translateY(-1px);
}

.section-camping {
  background: rgba(248, 246, 241, 0.92);
}

.camping-request-shell {
  margin-top: 1.6rem;
}

.camping-image {
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.camping-image img {
  height: 100%;
  min-height: inherit;
}

.camping-price-box {
  margin: 1.2rem 0;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(95, 120, 98, 0.14);
}

.camping-price-box strong {
  display: block;
  color: var(--color-text);
  margin-bottom: 0.25rem;
  font-size: 1.12rem;
}

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

.camping-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-text-muted);
}

.camping-list li + li {
  margin-top: 0.35rem;
}

.camping-request-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 250, 246, 0.98));
  border: 1px solid rgba(95, 120, 98, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.25rem, 3vw, 2rem);
}

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

.camping-info-grid {
  display: grid;
  gap: 1rem;
}

.camping-list-large li + li {
  margin-top: 0.45rem;
}

.camping-request-head {
  margin-bottom: 1.4rem;
}

.camping-request-head p {
  max-width: 62ch;
}

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

.camping-form-footer {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(95, 120, 98, 0.14);
}

.map-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(141, 164, 141, 0.16), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(212, 197, 174, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(247, 244, 237, 0.94) 0%, rgba(243, 238, 228, 0.96) 100%);
}

.map-section-head {
  margin-bottom: 1.6rem;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(95, 120, 98, 0.14);
  background: rgba(255, 255, 255, 0.7);
}

#hof-map,
.map-fallback-frame {
  width: 100%;
  min-height: 420px;
  height: 420px;
}

#hof-map {
  border-radius: 20px;
}

.map-fallback-frame {
  border: 0;
  display: block;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}

.map-fallback-frame[hidden] {
  display: none !important;
}

.map-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(95, 120, 98, 0.14);
}

.map-address {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.map-address strong {
  color: var(--color-text);
}

.map-distance-box {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.map-distance-box span {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(95, 120, 98, 0.1);
  color: var(--color-green-deep);
  font-weight: 700;
}

.leaflet-container {
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: rgba(250, 248, 243, 0.98);
}

.leaflet-popup-content {
  color: var(--color-text);
  line-height: 1.5;
}

.map-fallback-note {
  margin: 0.85rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(95, 120, 98, 0.14);
}

.map-fallback-note a {
  color: var(--color-green-deep);
  font-weight: 700;
}

.section-order-page {
  background:
    radial-gradient(circle at 15% 12%, rgba(141, 164, 141, 0.18), transparent 34%),
    radial-gradient(circle at 90% 0%, rgba(212, 197, 174, 0.22), transparent 32%),
    linear-gradient(180deg, #f8f5ee 0%, #f2ecdf 100%);
}

.order-page-layout {
  display: grid;
  gap: 1.8rem;
}

.order-page-intro {
  max-width: 760px;
}

.order-intro-text {
  max-width: 64ch;
  margin-bottom: 1.1rem;
}

.order-inline-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.order-inline-trust span {
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  background: rgba(95, 120, 98, 0.1);
  color: var(--color-green-deep);
  font-size: 0.9rem;
  font-weight: 600;
}

.order-form {
  width: 100%;
}

.order-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 250, 246, 0.98));
  border: 1px solid rgba(95, 120, 98, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.order-card-head {
  margin-bottom: 1.8rem;
}

.order-card-head p {
  max-width: 62ch;
}

.order-group + .order-group {
  margin-top: 1.8rem;
}

.order-group-head {
  margin-bottom: 0.95rem;
}

.order-group-head .eyebrow {
  margin-bottom: 0.45rem;
}

.order-group-head h3 {
  margin-bottom: 0;
}

.order-list {
  display: grid;
  gap: 0.85rem;
}

.order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(95, 120, 98, 0.16);
  background: rgba(255, 255, 255, 0.7);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), background-color var(--transition);
}

.order-item.is-selected,
.order-item:focus-within {
  border-color: rgba(95, 120, 98, 0.34);
  box-shadow: 0 12px 26px rgba(30, 38, 31, 0.08);
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.9);
}

.order-item-main {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  flex: 1;
}

.order-item-aside {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 130px));
  gap: 0.8rem;
}

.order-item-main input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--color-green-deep);
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

.order-item-label {
  display: grid;
  gap: 0.18rem;
  cursor: pointer;
}

.order-item-name {
  font-weight: 700;
  color: var(--color-text);
}

.order-item-note {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.order-quantity-field {
  display: grid;
  gap: 0.4rem;
  min-width: 108px;
}

.order-quantity-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-green-deep);
}

.order-quantity,
.order-field input,
.order-field textarea {
  width: 100%;
  padding: 0.78rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(95, 120, 98, 0.2);
  background: var(--color-white);
  color: var(--color-text);
  resize: vertical;
}

.order-quantity:disabled {
  background: rgba(232, 226, 211, 0.42);
  color: rgba(42, 51, 44, 0.55);
  cursor: not-allowed;
}

.order-form-footer,
.order-contact-fields {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(95, 120, 98, 0.14);
}

.order-contact-fields h3 {
  margin-bottom: 0.3rem;
}

.order-contact-note {
  margin-bottom: 1rem;
}

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

.order-field {
  display: grid;
  gap: 0.45rem;
}

.order-field-full {
  grid-column: 1 / -1;
}

.order-field-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text);
}

.order-footnote {
  max-width: 60ch;
  margin-bottom: 0.6rem;
}

.order-message {
  min-height: 1.5rem;
  margin: 0.7rem 0 1rem;
  font-weight: 600;
  color: var(--color-alert);
}

.order-message.is-success {
  color: var(--color-success);
}

.order-message.is-error {
  color: var(--color-alert);
}

.btn-order-submit {
  background: var(--color-green-deep);
  color: var(--color-white);
  border-color: var(--color-green-deep);
}

.btn-order-submit:hover,
.btn-order-submit:focus-visible {
  background: #526b56;
  border-color: #526b56;
}

.subpage-header .header-inner {
  justify-content: space-between;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(95, 120, 98, 0.26);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  transition: background-color var(--transition), border-color var(--transition);
}

.back-link:hover,
.back-link:focus-visible {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(95, 120, 98, 0.46);
}

.section-patenschaft {
  background: linear-gradient(180deg, rgba(248, 245, 238, 0.94) 0%, rgba(242, 236, 223, 0.94) 100%);
}

.patenschaft-image {
  min-height: 470px;
  max-height: 620px;
}

.patenschaft-content p {
  max-width: 62ch;
}

.patenschaft-list {
  margin: 1.1rem 0 0;
  padding-left: 1.1rem;
  color: var(--color-text-muted);
}

.patenschaft-list li + li {
  margin-top: 0.35rem;
}

.site-footer {
  background: #243028;
  color: rgba(246, 246, 240, 0.92);
  padding-top: 3rem;
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr 0.9fr 1fr;
  gap: 1.3rem;
}

.footer-column h2,
.footer-column h3 {
  color: #f1f1e9;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.footer-column p,
.footer-links a,
.footer-list,
.footer-list a {
  color: rgba(236, 239, 230, 0.82);
}

.footer-brand p {
  max-width: 30ch;
}

.footer-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li + li,
.footer-links li + li {
  margin-top: 0.45rem;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-list a:hover,
.footer-list a:focus-visible {
  color: #fff;
}

.footer-note {
  margin-top: 0.85rem;
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid rgba(241, 241, 233, 0.14);
  margin-top: 2.2rem;
  padding: 1rem 0 1.5rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(236, 239, 230, 0.78);
  font-size: 0.95rem;
}

.subpage-footer {
  background: #243028;
  color: rgba(236, 239, 230, 0.86);
  padding: 1.2rem 0 1.4rem;
}

.subpage-footer p {
  margin: 0;
  color: rgba(236, 239, 230, 0.84);
}

.mobile-sticky-cta {
  display: none;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .hero-layout {
    justify-content: center;
  }

  .hero-content {
    margin-inline: auto;
    text-align: center;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  .hero-trust-list,
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    background: rgba(248, 246, 241, 0.94);
  }

  .header-inner {
    min-height: var(--header-height);
    gap: 0.75rem;
    padding-block: 0.35rem;
  }

  .brand {
    gap: 0.7rem;
    max-width: calc(100% - 3.75rem);
  }

  .brand-logo {
    height: 48px;
  }

  .brand-lockup {
    gap: 0.05rem;
  }

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

  .brand-tag {
    font-size: 0.76rem;
  }

  .primary-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-height);
    background: rgba(248, 246, 241, 0.98);
    border-bottom: 1px solid rgba(95, 120, 98, 0.16);
    box-shadow: 0 16px 36px rgba(30, 38, 31, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.65rem 4vw 0.8rem;
  }

  .primary-nav li {
    border-bottom: 1px solid rgba(95, 120, 98, 0.14);
  }

  .primary-nav li:last-child {
    border-bottom: 0;
  }

  .primary-nav a {
    display: block;
    padding: 0.8rem 0;
  }

  .menu-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .story-layout,
  .camping-layout,
  .patenschaft-layout {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

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

  .product-service-box,
  .camping-columns,
  .camping-form-grid,
  .page-hero-layout-split,
  .camping-page-grid,
  .teaser-card {
    grid-template-columns: 1fr;
  }

  .teaser-media {
    aspect-ratio: 16 / 10;
    min-height: 220px;
  }

  .product-grid-compact .product-card img {
    height: 190px;
  }

  .product-filters {
    display: flex;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .filter-btn {
    flex: 1 1 auto;
    text-align: center;
  }

  .patenschaft-image {
    min-height: 340px;
  }

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

  .camping-image {
    min-height: 300px;
  }

  .order-item {
    align-items: flex-start;
  }

  .order-contact-grid {
    grid-template-columns: 1fr;
  }

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

  .order-item-aside {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 62px;
  }

  #particles-js {
    opacity: 0.42;
  }

  body {
    line-height: 1.55;
  }

  p {
    font-size: 0.97rem;
  }

  .brand-logo {
    height: 42px;
  }

  .brand-tag {
    display: none;
  }

  .header-inner {
    min-height: var(--header-height);
    gap: 0.6rem;
    padding-block: 0.25rem;
  }

  .brand {
    gap: 0.6rem;
  }

  .brand-name {
    font-size: 0.96rem;
    line-height: 1.05;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    gap: 4px;
  }

  .menu-toggle-line {
    width: 18px;
  }

  .hero {
    min-height: 76svh;
    padding-top: calc(var(--header-height) + 0.45rem);
    padding-bottom: 0.85rem;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(34, 44, 35, 0.16), rgba(34, 44, 35, 0.62));
  }

  .hero-layout {
    min-height: calc(76svh - var(--header-height));
    align-items: end;
  }

  .hero-content {
    width: 100%;
    max-width: 34rem;
    padding-inline: 0.2rem;
    padding-bottom: 0.1rem;
  }

  .hero-content .eyebrow {
    margin-bottom: 0.55rem;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8.3vw, 2.75rem);
    line-height: 1.03;
    margin-bottom: 0.65rem;
  }

  .hero-subtitle {
    max-width: 30ch;
    font-size: 0.98rem;
    line-height: 1.48;
    margin-bottom: 0.8rem;
  }

  .hero-trust-list {
    gap: 0.42rem;
    margin-bottom: 0.95rem;
  }

  .hero-trust-list li {
    padding: 0.36rem 0.62rem;
    font-size: 0.82rem;
    border-radius: 999px;
  }

  .story-content,
  .section-head,
  .camping-content,
  .order-page-intro,
  .patenschaft-content,
  .legal-content {
    padding: 0.95rem;
    backdrop-filter: blur(3px);
  }

  .section-head {
    margin-bottom: 1.35rem;
  }

  .section-head-compact {
    margin-bottom: 1.2rem;
  }

  .story-images {
    grid-template-columns: 1fr;
  }

  .story-image-large {
    grid-column: auto;
  }

  #hof-map,
  .map-fallback-frame {
    min-height: 320px;
    height: 320px;
  }

  body.page-home {
    padding-bottom: 4.8rem;
  }

  .section {
    padding: 2.75rem 0;
  }

  .btn {
    padding: 0.74rem 1.1rem;
    font-size: 0.96rem;
  }

  .btn-prominent {
    min-width: min(18rem, 100%);
    box-shadow: 0 18px 32px rgba(31, 40, 33, 0.22);
  }

  .hero-actions {
    position: relative;
    top: 0.8rem;
    display: grid;
    gap: 0.6rem;
    width: 100%;
    max-width: 21rem;
    margin-inline: auto;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.34);
  }

  .teaser-card {
    gap: 0.95rem;
    padding: 0.85rem;
    border-radius: 18px;
  }

  .teaser-media {
    aspect-ratio: 16 / 10;
    min-height: 180px;
    border-radius: 16px;
  }

  .teaser-content {
    gap: 0.45rem;
  }

  .teaser-content h2 {
    font-size: 1.45rem;
    margin-bottom: 0.2rem;
  }

  .teaser-actions {
    gap: 0.7rem;
    margin-top: 0.1rem;
  }

  .page-hero {
    padding-top: calc(var(--header-height) + 1.1rem);
  }

  .page-hero-content {
    padding: 1rem;
  }

  .page-hero-content h1 {
    font-size: clamp(1.9rem, 7.6vw, 2.6rem);
  }

  .page-hero-visual {
    min-height: 280px;
  }

  .product-grid-compact .product-card img {
    height: 172px;
  }

  .product-grid-compact .product-body {
    padding: 0.85rem 0.85rem 0.35rem;
  }

  .product-grid-compact .product-body h2 {
    font-size: 1.08rem;
  }

  .product-grid-compact .product-price,
  .product-grid-compact .product-meta {
    font-size: 0.93rem;
  }

  .product-grid-compact .product-actions {
    padding: 0 0.85rem 0.85rem;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 50%;
    bottom: 0.75rem;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(16rem, calc(100vw - 2.2rem));
    padding: 0.74rem 1rem;
    border-radius: 999px;
    background: rgba(95, 120, 98, 0.92);
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 14px 26px rgba(31, 40, 33, 0.18);
    z-index: 999;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 2.35rem 0;
  }

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

  .header-inner {
    padding-block: 0.2rem;
  }

  .product-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-filters {
    padding: 0.35rem;
    gap: 0.35rem;
  }

  .filter-btn {
    padding: 0.46rem 0.7rem;
    font-size: 0.9rem;
  }

  .story-image-large {
    height: 220px;
  }

  .hero {
    min-height: 72svh;
    padding-bottom: 0.6rem;
  }

  .hero-layout {
    min-height: calc(72svh - var(--header-height));
  }

  .hero-content h1 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .hero-subtitle {
    font-size: 0.94rem;
    margin-bottom: 0.72rem;
  }

  .hero-trust-list {
    gap: 0.38rem;
  }

  .hero-trust-list li {
    font-size: 0.78rem;
    padding: 0.34rem 0.56rem;
  }

  .hero-actions {
    top: 0.7rem;
    max-width: 100%;
  }

  .teaser-card {
    padding: 0.74rem;
  }

  .teaser-media {
    aspect-ratio: 16 / 10;
    min-height: 160px;
  }

  .teaser-content h2 {
    font-size: 1.28rem;
  }

  .teaser-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .teaser-link {
    font-size: 0.94rem;
  }

  .service-item {
    padding: 0.74rem 0.82rem;
  }

  .service-item p,
  .map-address,
  .footer-column p,
  .footer-list,
  .footer-links {
    font-size: 0.92rem;
  }

  .camping-image {
    min-height: 250px;
  }

  .page-hero-visual {
    min-height: 220px;
  }

  .product-grid-compact .product-card img {
    height: 154px;
  }

  .product-grid-compact .product-body h2 {
    font-size: 1rem;
  }

  #hof-map,
  .map-fallback-frame {
    min-height: 280px;
    height: 280px;
  }

  .map-meta {
    padding: 0.85rem 0.95rem;
    gap: 0.75rem;
  }

  .site-footer {
    padding-top: 2.35rem;
  }

  .footer-grid {
    gap: 0.8rem;
  }

  .footer-column h2,
  .footer-column h3 {
    margin-bottom: 0.5rem;
    font-size: 1.02rem;
  }

  .footer-bottom {
    margin-top: 1.4rem;
    padding: 0.8rem 0 1rem;
  }

  .order-item {
    flex-direction: column;
    align-items: stretch;
  }

  .order-item-aside {
    grid-template-columns: 1fr;
  }

  .order-quantity-field,
  .back-link {
    width: 100%;
  }

  .product-actions,
  .product-actions-split {
    flex-direction: column;
    align-items: stretch;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

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

  .mobile-sticky-cta {
    transform: translateX(-50%);
  }
}
