:root {
  --green-dark: #172d22;
  --green: #294733;
  --olive: #6f7d45;
  --olive-light: #9aa768;
  --anthracite: #1b1c1b;
  --cream: #f5efe3;
  --cream-soft: #fbf7ee;
  --wood: #8a5a34;
  --text: #242621;
  --muted: #686d61;
  --shadow: 0 18px 50px rgba(0,0,0,.18);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--cream-soft);
  line-height: 1.65;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 78px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 46px);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease, opacity .3s ease, transform .3s ease;
}

.site-header.visible,
.site-header.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header.scrolled,
.site-header.open {
  background: rgba(23,45,34,.96);
  box-shadow: 0 10px 35px rgba(0,0,0,.18);
  height: 70px;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.25));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 800;
  font-size: 15px;
}

.site-nav a { opacity: .94; }
.site-nav a:hover { opacity: 1; }

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--olive-light);
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
}

.intro {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--green-dark);
}

.intro-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23,45,34,.55), rgba(10,20,15,.82)),
    url("assets/images/intro-bg.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.intro-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 34px;
  padding: 40px 20px;
}

.intro-content img {
  width: min(430px, 78vw);
  filter: drop-shadow(0 22px 42px rgba(0,0,0,.42));
  animation: logoIn .9s ease both;
}

.scroll-cue {
  color: rgba(245,239,227,.86);
  display: grid;
  justify-items: center;
  gap: 6px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  animation: float 1.8s ease-in-out infinite;
}

.scroll-cue strong {
  font-size: 28px;
  line-height: 1;
}

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

@keyframes logoIn {
  from { opacity: 0; transform: translateY(18px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/images/hero-holzbuendel.jpg") center/cover no-repeat;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,23,17,.9), rgba(23,45,34,.56), rgba(0,0,0,.18)),
    linear-gradient(0deg, rgba(0,0,0,.38), transparent 45%);
}

.hero-content {
  position: relative;
  padding-top: 70px;
  max-width: 760px;
  margin-left: max(20px, calc((100vw - 1120px)/2));
  justify-self: start;
}

.hero-logo {
  width: 112px;
  margin-bottom: 22px;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.38));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--olive-light);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: 13px;
}

.hero h1,
h2,
.legal-page h1 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 10vw, 116px);
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 24px 0 0;
  max-width: 660px;
  font-size: clamp(20px, 2.5vw, 29px);
  line-height: 1.35;
  color: rgba(255,255,255,.92);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  background: var(--olive-light);
  color: var(--green-dark);
  box-shadow: 0 15px 30px rgba(0,0,0,.18);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,.65);
  color: #fff;
}

.btn-secondary.dark {
  border-color: rgba(23,45,34,.25);
  color: var(--green-dark);
  background: rgba(255,255,255,.38);
}

.trust-line {
  margin-top: 26px;
  color: rgba(255,255,255,.82);
  font-weight: 800;
  letter-spacing: .03em;
}

.trust-strip {
  background: var(--cream);
  padding: 28px 0;
  border-bottom: 1px solid rgba(23,45,34,.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-card {
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(23,45,34,.08);
  border-radius: 18px;
  padding: 22px;
}

.trust-card span {
  display: block;
  color: var(--green-dark);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 4px;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: clamp(76px, 10vw, 125px) 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.reverse {
  grid-template-columns: .95fr 1.05fr;
}

.copy h2,
.section-head h2,
.limited h2,
.contact h2,
.reviews h2,
.price-box h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 5vw, 58px);
  color: var(--green-dark);
}

.copy p,
.section-head p {
  font-size: 18px;
}

.image-card,
.large-photo,
.small-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--green-dark);
}

.image-card img {
  height: 520px;
  object-fit: cover;
}

.firewood {
  background: var(--green-dark);
  color: var(--cream);
}

.firewood .section-head {
  max-width: 820px;
  margin-bottom: 42px;
}

.firewood h2,
.firewood h3 { color: var(--cream); }

.firewood .section-head p { color: rgba(245,239,227,.86); }

.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 30px;
  align-items: stretch;
}

.wood-gallery {
  display: grid;
  gap: 18px;
}

.large-photo img {
  height: 430px;
  object-fit: cover;
}

.small-photo img {
  height: 250px;
  object-fit: cover;
}

.bundle-visible img {
  object-fit: cover;
  object-position: center;
}

.lengths {
  background: rgba(245,239,227,.08);
  border: 1px solid rgba(245,239,227,.12);
  border-radius: var(--radius);
  padding: 30px;
}

.lengths h3 {
  margin-top: 0;
  font-size: 28px;
}

.length-card {
  background: rgba(245,239,227,.1);
  border-radius: 18px;
  padding: 18px;
  margin: 14px 0;
}

.length-card strong {
  display: block;
  font-size: 26px;
  color: var(--olive-light);
}

.length-card span { color: rgba(245,239,227,.85); }

.note {
  color: rgba(245,239,227,.74);
  font-weight: 800;
}

.nature-note {
  margin-top: 34px;
  background: rgba(245,239,227,.1);
  border: 1px solid rgba(245,239,227,.18);
  border-left: 6px solid var(--olive-light);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
}

.nature-note h3 {
  margin: 0 0 14px;
  color: var(--cream);
  font-size: clamp(25px, 3vw, 36px);
}

.nature-note p {
  color: rgba(245,239,227,.86);
  margin: 10px 0;
  font-size: 17px;
}

.price-section {
  background: linear-gradient(135deg, var(--cream) 0%, #efe1ce 100%);
  padding: clamp(70px, 9vw, 110px) 0;
}

.price-box {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
  background: var(--cream-soft);
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 54px);
  box-shadow: 0 22px 70px rgba(23,45,34,.12);
  border: 1px solid rgba(138,90,52,.18);
}

.price-box h2 {
  color: var(--wood);
}

.price-box p {
  font-size: 18px;
}


.meter-note {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(111,125,69,.12);
  border: 1px solid rgba(111,125,69,.22);
}

.meter-note strong {
  color: var(--green-dark);
}

.tax-note {
  color: var(--muted);
  font-size: 14px !important;
  font-weight: 700;
}

.price-facts {
  display: grid;
  gap: 14px;
}

.price-facts article {
  background: var(--green-dark);
  color: var(--cream);
  border-radius: 20px;
  padding: 22px;
}

.price-facts strong {
  display: block;
  color: var(--olive-light);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  margin-bottom: 8px;
}

.price-facts span {
  color: rgba(245,239,227,.86);
  font-weight: 800;
}

.dry { background: var(--cream); }

.badges,
.place-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.badges span,
.place-chips span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(111,125,69,.14);
  color: var(--green-dark);
  font-weight: 900;
  font-size: 14px;
}

.work-gallery {
  padding: clamp(76px, 10vw, 118px) 0;
  background: #243d2d;
  color: var(--cream);
}

.work-gallery h2 {
  color: var(--cream);
}

.work-gallery .section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.work-gallery .section-head p {
  color: rgba(245,239,227,.82);
}

.work-gallery .work-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
}

.delivery { 
  background: var(--cream-soft);
  border-top: 1px solid rgba(23,45,34,.08);
}

.delivery .btn { margin-top: 26px; }

.limited {
  padding: clamp(78px, 10vw, 120px) 0;
  background:
    linear-gradient(rgba(23,45,34,.86), rgba(23,45,34,.86)),
    url("assets/images/holz-buendel-sichtbar.jpg") center/cover;
  color: var(--cream);
}

.limited-inner {
  max-width: 830px;
  text-align: center;
}

.limited h2 { color: var(--cream); }

.limited p {
  font-size: 19px;
  color: rgba(245,239,227,.86);
}

.limited .strong {
  font-weight: 900;
  color: #fff;
}

.limited .btn { margin-top: 18px; }

.contact { 
  background: linear-gradient(180deg, var(--cream) 0%, #efe4d3 100%);
}

.contact-box {
  max-width: 850px;
  text-align: center;
  background: var(--cream-soft);
  border: 2px solid rgba(23,45,34,.12);
  border-radius: var(--radius);
  padding: clamp(34px, 6vw, 64px);
  box-shadow: 0 26px 80px rgba(23,45,34,.15);
}

.contact-logo {
  width: 118px;
  margin: 0 auto 16px;
}

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

.contact-details {
  margin-top: 28px;
  color: var(--muted);
}

.contact-details a {
  color: var(--green-dark);
  font-weight: 900;
}

.reviews {
  padding: 90px 0;
  background: #1b1c1b;
}

.review-box {
  background: linear-gradient(135deg, var(--olive) 0%, var(--green-dark) 100%);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
}

.review-box h2 {
  color: var(--cream);
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 38px);
}

.review-box p {
  margin: 0;
  color: rgba(245,239,227,.82);
}

.review-box .btn {
  flex: 0 0 auto;
  color: var(--cream);
  border-color: rgba(245,239,227,.35);
}

.site-footer {
  background: #101b15;
  color: rgba(245,239,227,.82);
  padding: 44px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.site-footer img {
  width: 88px;
  margin-bottom: 14px;
}

.site-footer a { color: var(--cream); }

.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 900;
}

.legal-page {
  background: var(--cream);
}

.legal-page .section {
  padding-top: 70px;
}

.legal-page .container {
  max-width: 880px;
  background: var(--cream-soft);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 20px 60px rgba(23,45,34,.08);
}

.legal-page h1 {
  margin-top: 0;
  font-size: clamp(38px, 6vw, 62px);
  color: var(--green-dark);
}

.legal-page h2 {
  margin-top: 34px;
  font-family: inherit;
  letter-spacing: 0;
  font-size: 24px;
}

.legal-page a {
  color: var(--green-dark);
  font-weight: 800;
}

.legal-page .btn {
  color: var(--green-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


.about-mini {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 10px 14px 10px 10px;
  border-radius: 999px;
  background: rgba(23,45,34,.06);
  border: 1px solid rgba(23,45,34,.09);
  color: var(--green-dark);
  font-weight: 900;
  font-size: 14px;
}

.about-mini img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  object-position: 55% 42%;
  box-shadow: 0 8px 18px rgba(23,45,34,.16);
}

.work-gallery .work-grid .wide {
  grid-column: 1 / -1;
}

.work-gallery .work-grid .wide img {
  height: 440px;
  object-fit: cover;
  object-position: center 52%;
}

@media (max-width: 980px) {
  .site-nav {
    gap: 14px;
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    top: 70px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: rgba(23,45,34,.98);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .site-header.open .site-nav { display: flex; }
  .site-nav a { padding: 13px 12px; }

  .nav-cta {
    text-align: center;
    margin-top: 10px;
  }

  .nav-toggle { display: block; }

  .hero-content {
    margin-left: 0;
    justify-self: center;
    text-align: left;
  }

  .trust-grid,
  .two-col,
  .reverse,
  .feature-grid,
  .footer-grid,
  .work-gallery .work-grid,
  .price-box {
    grid-template-columns: 1fr;
  }

  .image-card img,
  .large-photo img {
    height: 380px;
  }

  .small-photo img {
    height: 290px;
  }

  .review-box { display: block; }
  .review-box .btn { margin-top: 22px; }
}

@media (max-width: 560px) {

  .about-mini {
    font-size: 13px;
    padding-right: 12px;
  }

  .about-mini img {
    width: 56px;
    height: 56px;
  }

  .work-gallery .work-grid .wide img {
    height: 320px;
  }

  .container { width: min(100% - 28px, 1120px); }
  .brand span { display: none; }
  .intro-content img { width: min(330px, 82vw); }
  .hero { min-height: 92svh; }

  .hero-actions,
  .contact-actions { display: grid; }

  .btn { width: 100%; }
  .trust-grid { gap: 12px; }
  .trust-card { padding: 18px; }
  .section { padding: 66px 0; }

  .image-card img,
  .large-photo img,
  .small-photo img {
    height: 320px;
  }

  .price-section,
  .work-gallery,
  .reviews {
    padding: 66px 0;
  }
}
