/* Farbpalette
 * Primary:   #2D5016 (Waldgrün)
 * Secondary: #FF9900 (Amazon Orange)
 * Accent:    #8B6914 (Sand/Gold)
 * Background:#FAFAF5 (Warmweiß)
 * Text:      #1A1A1A (Fast-Schwarz)
 * Light:     #F0EDE5 (warmes Hellgrau)
 */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #1a1a1a;
  background-color: #fafaf5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Innenseiten: Abstand unter fixem Header */
.page-main {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5.5rem 0;
  }
}

.section-header {
  text-align: left;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 2rem;
  margin: 0 0 0.75rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

.section-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Kompaktere Leseabstände für die Über-uns-Seite */
.about-content .section {
  padding: 0.5rem 0;
}

.about-content .section-header {
  margin-bottom: 0.5rem;
}

.about-content .section p + p {
  margin-top: 0.45rem;
}

@media (min-width: 768px) {
  .about-content .section {
    padding: 0.7rem 0;
  }
}

/* Kompakter Lesefluss für Ratgeber-Artikel */
.ratgeber-article .section {
  padding: 0;
}

.ratgeber-article .section + .section {
  margin-top: 0.9rem;
}

.ratgeber-article .section h2 {
  margin: 0 0 0.5rem;
}

.ratgeber-article .section p {
  margin: 0;
}

.ratgeber-article .section p + p {
  margin-top: 0.45rem;
}

.eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8b6914;
  margin: 0 0 0.75rem;
}

.eyebrow--accent {
  color: #ff9900;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1.75rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #2d5016;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: #fafaf5;
  color: #2d5016;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
  text-decoration: none;
}

.btn-secondary {
  background-color: #2d5016;
  color: #fafaf5;
}

.btn-secondary:hover {
  background-color: #244012;
  text-decoration: none;
}

.btn-cta {
  background-color: #ff9900;
  color: #1a1a1a;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.btn-cta:hover {
  background-color: #e68a00;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}

.cta-note {
  margin: 0;
  font-size: 0.85rem;
  color: #555;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.stars {
  letter-spacing: 0.12em;
  color: #ffb300;
}

.rating-text {
  font-size: 0.9rem;
  color: #333;
}

.rating-text strong {
  font-weight: 600;
}

/* Header & Navigation */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(10, 20, 8, 0.9), transparent);
  color: #fafaf5;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  pointer-events: auto;
  position: relative;
}

/* Hamburger-Button (nur Mobil) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  color: #fafaf5;
  cursor: pointer;
  z-index: 22;
  pointer-events: auto;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  height: 28px;
}

@media (min-width: 768px) {
  .logo img {
    height: 34px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fafaf5;
  opacity: 0.9;
}

.nav-link:hover {
  opacity: 1;
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 5rem 1.5rem 2rem;
    background: linear-gradient(180deg, rgba(4, 8, 4, 0.98) 0%, rgba(10, 20, 8, 0.97) 100%);
    z-index: 21;
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
  }

  .site-header.nav-open .nav {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
  }

  .nav-link {
    font-size: 1.25rem;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .nav {
    gap: 1.25rem;
  }

  .nav-link {
    font-size: 1.1rem;
  }
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  color: #fafaf5;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("./assets/hero-forest-hikers.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .hero-media {
    /* für schmalere Bildschirme etwas höher zentrieren */
    background-position: center 35%;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(250, 250, 245, 0.18),
      transparent 55%
    ),
    linear-gradient(to bottom, rgba(4, 8, 4, 0.9), rgba(4, 8, 4, 0.35));
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 7rem 1.5rem 3rem;
}

.hero-text {
  max-width: 520px;
}

.hero-logo {
  margin-bottom: 1.25rem;
}

.hero-logo img {
  display: block;
  max-width: 1200px;
  width: 100%;
  /* leicht nach links ziehen, um den transparenten Rand im Logo auszugleichen */
  margin-left: -3.2rem;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 5.5rem 1.25rem 2.5rem;
    min-height: 100vh;
    justify-content: flex-start;
    padding-top: 5rem;
  }

  .hero-logo {
    display: none;
  }

  .hero h1 {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .hero-scroll-indicator {
    margin-top: 1.5rem;
  }
}

@media (min-width: 769px) {
  .hero-text {
    max-width: 780px;
  }
  .hero-logo img {
    margin-left: -3.2rem;
  }
}

.hero .eyebrow {
  color: #f0ede5;
}

.hero h1 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 2.25rem;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-subtitle {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #f0ede5;
  max-width: 32rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }
}

.hero-scroll-indicator {
  margin-top: 2.5rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 250, 245, 0.7);
  background: transparent;
  color: #fafaf5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: bounce 1.6s infinite;
}

.hero-scroll-icon {
  font-size: 1.1rem;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* Section Grids */

.section-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .section-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 3.5rem;
  }

  .section-grid--reverse {
    grid-auto-flow: dense;
  }

  .section-grid--reverse .section-media {
    order: 2;
  }
}

.section-media {
  position: relative;
}

.section-content h2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.7rem;
  margin: 0 0 0.75rem;
}

.section-content p {
  margin: 0;
}

.section-content .section-lead {
  margin-bottom: 0.25rem;
}

/* Produktbilder */

.product-figure {
  margin: 0 0 1rem;
  border-radius: 1.4rem;
  overflow: hidden;
  background: #101810;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease-out;
}

.product-image--hero:hover {
  transform: scale(1.03);
}

.product-figcaption {
  padding: 0.9rem 1.2rem 1.1rem;
  font-size: 0.85rem;
  color: #f0ede5;
  background: linear-gradient(
    to right,
    rgba(10, 20, 8, 0.96),
    rgba(10, 20, 8, 0.88)
  );
}

.product-thumbs {
  display: flex;
  gap: 0.75rem;
  overflow: visible;
}

.product-thumb {
  flex: 1;
  border-radius: 0.9rem;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.94;
  position: relative;
  z-index: 1;
  transition: opacity 0.15s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-thumb:hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.8);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

/* Outdoor Bags */

.section-eva {
  background: radial-gradient(
      circle at 0 0,
      rgba(255, 244, 214, 0.7),
      transparent 55%
    ),
    #fafaf5;
}

.section-outdoor {
  background-color: #f0ede5;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.1rem;
  margin-bottom: 1.6rem;
}

.color-card {
  background-color: #fafaf5;
  border-radius: 1rem;
  padding: 0.9rem;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.color-card--bestseller {
  border: 1px solid rgba(255, 153, 0, 0.7);
}

.color-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}

.color-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge--bestseller {
  background-color: rgba(255, 153, 0, 0.1);
  color: #8b6914;
}

.color-card-image {
  border-radius: 0.7rem;
  margin-bottom: 0.3rem;
}

.color-card-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: #2d5016;
}

.color-card-link:hover {
  text-decoration: underline;
}

/* Laufgürtel */

.section-belt {
  background-color: #fafaf5;
}

.color-picker {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.color-picker-label {
  font-size: 0.9rem;
  font-weight: 500;
}

.color-dots {
  display: flex;
  gap: 0.5rem;
}

.color-dot {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  background-color: var(--dot-color, #1a1a1a);
  cursor: pointer;
  padding: 0;
}

.color-dot.is-active {
  border-color: #2d5016;
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.18);
}

.color-dot:focus-visible {
  outline: 2px solid #2d5016;
  outline-offset: 2px;
}

/* Warum MAHAWORLD */

.section-why {
  background-color: #f0ede5;
}

.why-grid {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.why-card {
  background-color: #fafaf5;
  border-radius: 1rem;
  padding: 1.2rem 1.1rem 1.3rem;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
}

.why-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.8rem;
  background-color: #2d5016;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.why-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.founder-quote {
  border-radius: 1.2rem;
  padding: 1.6rem 1.4rem;
  background: linear-gradient(
    135deg,
    rgba(45, 80, 22, 0.95),
    rgba(45, 80, 22, 0.82)
  );
  color: #fafaf5;
}

.founder-text p {
  margin: 0 0 0.9rem;
}

.founder-signature {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* FAQ-Seite */
.faq-list { margin: 0; }
.faq-list dt { margin-top: 1.25rem; margin-bottom: 0.25rem; font-size: 1rem; }
.faq-list dd { margin: 0; padding-left: 0; line-height: 1.6; color: #333; }
.faq-list dt:first-of-type { margin-top: 0; }

/* Footer */

.site-footer {
  background-color: #101810;
  color: #f0ede5;
  padding-top: 2.5rem;
}

.footer-main {
  display: grid;
  gap: 2.2rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 800px) {
  .footer-main {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1.1fr);
  }
}

.logo--footer {
  letter-spacing: 0.2em;
  font-size: 0.95rem;
}

.footer-tagline {
  margin: 0.7rem 0 1rem;
  font-size: 0.9rem;
}

.footer-address {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact {
  margin: 0;
  font-size: 0.9rem;
}

.footer-links h3,
.footer-follow h3 {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
}

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

.footer-links a {
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(240, 237, 229, 0.16);
  padding: 0.9rem 0 1.3rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(240, 237, 229, 0.8);
}

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

/* ===== Lost Places ===== */
.lp-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fafaf5;
  overflow: hidden;
  margin: -2rem -1.5rem 2rem;
  padding: 0 1.5rem;
}
.lp-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("./assets/hero-forest-hikers.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4, 8, 4, 0.85), rgba(4, 8, 4, 0.6));
}
.lp-hero-content {
  position: relative;
  text-align: center;
  max-width: 560px;
}
.lp-hero h1 {
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.lp-hero p {
  margin: 0;
  font-size: 0.95rem;
  color: #e8e6e0;
}
@media (min-width: 768px) {
  .lp-hero { min-height: 38vh; margin: -2rem auto 2rem; padding: 0; }
  .lp-hero h1 { font-size: 2.1rem; }
}

.lp-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e8e6e0;
}
.lp-filters label { font-size: 0.85rem; font-weight: 600; margin-right: 0.25rem; }
.lp-filters select {
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.9rem;
  background: #fff;
}
.lp-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.lp-filter-chips button {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #2d5016;
  background: transparent;
  color: #2d5016;
  font-size: 0.85rem;
  cursor: pointer;
}
.lp-filter-chips button:hover,
.lp-filter-chips button.is-active { background: #2d5016; color: #fafaf5; }
.lp-sort { margin-left: auto; }
.lp-sort select { padding: 0.4rem 0.6rem; border-radius: 6px; border: 1px solid #ccc; font-size: 0.9rem; background: #fff; }

.lp-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .lp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .lp-grid { grid-template-columns: repeat(3, 1fr); } }

/* Karten wie „Weitere Lost Places in der Nähe“: Bild oben, darunter Region, Titel, Kurztext */
.lp-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.lp-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.14); text-decoration: none; color: inherit; }
.lp-card.is-disabled { cursor: default; }
.lp-card.is-disabled:hover { transform: none; box-shadow: 0 6px 18px rgba(0,0,0,0.1); }
.lp-card-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: #101810;
  overflow: hidden;
  flex-shrink: 0;
}
.lp-card-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-card-badges {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.lp-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(0,0,0,0.75);
  color: #fafaf5;
}
.lp-badge--new { background: #ff9900; color: #1a1a1a; }
.lp-card-stars {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  color: #ffb300;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.lp-card-body {
  padding: 1rem 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.lp-card-body h2 { margin: 0 0 0.35rem; font-size: 1.1rem; line-height: 1.3; font-weight: 700; color: #1a1a1a; }
.lp-card-region { font-size: 0.8rem; color: #666; margin: 0 0 0.25rem; }
.lp-card-body p { margin: 0; font-size: 0.9rem; color: #555; line-height: 1.5; }
.lp-card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lp-card-hint { margin-top: 0.5rem !important; font-size: 0.78rem !important; color: #8b6914 !important; }
.lp-card-credit { margin: 0.5rem 0 0 !important; font-size: 0.75rem !important; color: #666 !important; flex: none !important; }
.lp-card-credit a { color: #2d5016; text-decoration: underline; }

.lp-credits { margin-top: 2rem; padding: 1rem 0; border-top: 1px solid rgba(0,0,0,0.08); }
.lp-credits-intro { margin: 0 0 0.5rem; font-size: 0.9rem; color: #555; }
.lp-credits-list { margin: 0; padding-left: 1.2rem; font-size: 0.85rem; color: #555; line-height: 1.6; }
.lp-credits-list a { color: #2d5016; }

.lp-image-credit { margin: 1rem 0 1.5rem; font-size: 0.85rem; color: #555; }
.lp-image-credit a { color: #2d5016; }

.lp-cta-box {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.08), rgba(139, 105, 20, 0.08));
  border-radius: 1rem;
  border: 1px solid rgba(45, 80, 22, 0.2);
  text-align: center;
}
.lp-cta-box h2 { margin: 0 0 0.5rem; font-size: 1.2rem; }
.lp-cta-box p { margin: 0 0 1rem; font-size: 0.95rem; color: #333; }
.lp-cta-box .btn { margin-top: 0.5rem; }

/* Lost Place Detail */
.lp-detail-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  color: #fafaf5;
  overflow: hidden;
  margin: -2rem -1.5rem 2rem;
  padding: 0 1.5rem 2rem;
}
.lp-detail-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.03); }
.lp-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,8,4,0.95) 0%, rgba(4,8,4,0.4) 50%, transparent 100%);
}
.lp-detail-hero-content { position: relative; width: 100%; max-width: 1120px; margin: 0 auto; }
.lp-detail-hero h1 { font-size: 1.6rem; margin: 0 0 0.25rem; }
.lp-detail-hero .lp-badge { margin-right: 0.5rem; }
@media (min-width: 768px) {
  .lp-detail-hero { margin: -2rem auto 2rem; padding: 0 1.5rem 2rem; }
  .lp-detail-hero h1 { font-size: 2rem; }
}

.lp-quick-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: #f0ede5;
  border-radius: 1rem;
}
.lp-quick-facts dt { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: #666; margin-bottom: 0.2rem; }
.lp-quick-facts dd { margin: 0; font-weight: 600; font-size: 0.95rem; }

.lp-equipment-box {
  padding: 1.25rem;
  background: #fafaf5;
  border-radius: 1rem;
  border-left: 4px solid #2d5016;
  margin: 2rem 0;
}
.lp-equipment-box h3 { margin: 0 0 0.75rem; font-size: 1.1rem; }
.lp-equipment-box ul { margin: 0; padding-left: 1.25rem; }
.lp-equipment-box li { margin-bottom: 0.35rem; }
.lp-equipment-box .product-link { margin-top: 0.75rem; font-weight: 600; color: #2d5016; }

.lp-legal-box {
  padding: 1rem 1.25rem;
  background: #fff8e6;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 153, 0, 0.3);
  margin: 2rem 0;
  font-size: 0.9rem;
}
.lp-legal-box h3 { margin: 0 0 0.5rem; font-size: 1rem; }
.lp-related { margin-top: 2.5rem; }
.lp-related h2 { margin-bottom: 1rem; font-size: 1.25rem; }
.lp-gallery { display: grid; gap: 0.75rem; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); margin: 1.5rem 0; }
.lp-gallery img { border-radius: 0.75rem; width: 100%; height: 180px; object-fit: cover; }

