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

/* Base */
*,
*::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;
}

/* PARTICLES BACKGROUND LAYER */
#particles-js {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  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;
}

.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.2rem, 5vw, 4.5rem);
  margin-bottom: 0.75rem;
}

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

h3 {
  font-size: 1.4rem;
  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;
}

/* Header + Navigation */
.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 {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--color-text);
}

.brand-mark {
  color: var(--color-green-soft);
  font-size: 1rem;
}

.brand-text {
  font-size: 0.98rem;
}

.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 {
  transform: scaleX(1);
}

.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 */
.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.45));
}

/* HERO TEXT POSITION ADJUSTED TO KEEP IMAGE SUBJECT VISIBLE */
.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

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

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

.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  margin-bottom: 1.7rem;
}

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

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

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

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }

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

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

.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);
}

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

.btn-primary {
  background: var(--color-white);
  color: var(--color-green-deep);
}

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

.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);
}

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

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

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

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

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

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

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

/* Products */
.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-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

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

.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.52rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color 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);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.product-card {
  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: 0 14px 30px rgba(30, 38, 31, 0.06);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition),
    border-color var(--transition);
}

.product-card:hover {
  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 {
  opacity: 0;
  transform: scale(0.98);
  pointer-events: none;
  display: none;
}

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

.product-card img,
.partnership-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.product-body {
  padding: 1.15rem;
}

.product-body h3 {
  font-size: 1.22rem;
}

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

.product-card-link .product-card-anchor {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
}

.product-card-link .product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-link-text {
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-green-deep);
}

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

/* Order Page */
.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.4rem;
}

.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);
}

.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);
}

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

.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 {
  width: 100%;
  padding: 0.72rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(95, 120, 98, 0.2);
  background: var(--color-white);
  color: var(--color-text);
  font: inherit;
}

.order-quantity:focus-visible {
  outline: 2px solid rgba(95, 120, 98, 0.22);
  outline-offset: 2px;
  border-color: rgba(95, 120, 98, 0.38);
}

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

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

.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: 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-field input,
.order-field textarea {
  width: 100%;
  padding: 0.82rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(95, 120, 98, 0.2);
  background: var(--color-white);
  color: var(--color-text);
  font: inherit;
  resize: vertical;
}

.order-field input:focus-visible,
.order-field textarea:focus-visible {
  outline: 2px solid rgba(95, 120, 98, 0.22);
  outline-offset: 2px;
  border-color: rgba(95, 120, 98, 0.38);
}

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

.order-message {
  min-height: 1.5rem;
  margin: 0.7rem 0 1rem;
  font-weight: 600;
  color: #9a4f3b;
}

.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;
}

/* Patenschaft Subpages */
.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-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.3rem, 4vw, 3rem);
  align-items: center;
}

.patenschaft-image {
  width: 100%;
  min-height: 470px;
  max-height: 620px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.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;
}

.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);
}

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

.camping-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
}

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

.camping-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

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

.camping-features li + li {
  margin-top: 0.4rem;
}

/* INTERAKTIVE KARTE */
.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 {
  width: 100%;
  min-height: 420px;
  height: 420px;
  border-radius: 20px;
}

.map-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  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);
}

.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;
}

.map-fallback-frame {
  width: 100%;
  min-height: 420px;
  height: 420px;
  border: 0;
  display: block;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}

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

@media (max-width: 768px) {
  .map-fallback-frame {
    min-height: 360px;
    height: 360px;
  }
}

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

.story-content,
.section-head,
.camping-content,
.order-page-intro,
.patenschaft-content {
  background: rgba(248, 246, 241, 0.56);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.story-content,
.section-head {
  box-shadow: 0 14px 32px rgba(30, 38, 31, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.footer-column h2,
.footer-column h3 {
  color: #f1f1e9;
}

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

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

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

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

.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;
}

/* Scroll-Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

/* Responsive */
@media (max-width: 960px) {
  .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);
    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.9rem 4vw 1rem;
  }

  .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.85rem 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .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 {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

  .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;
  }
}

@media (max-width: 768px) {
  #particles-js {
    opacity: 0.5;
  }

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

  #hof-map {
    min-height: 360px;
    height: 360px;
  }
}

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

  .brand-text {
    max-width: 180px;
    line-height: 1.25;
  }

  .hero {
    min-height: 80vh;
  }

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

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

  .filter-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.94rem;
  }

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

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

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

  .order-quantity-field {
    width: 100%;
    min-width: 0;
  }
}

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

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

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