/* ============ Basis (gemeinsam für HQF und Tiroler Pellets) ============ */
/* Lagerhaus-CI-Schrift CalibreLH (Klim Type Foundry) – Middle, Medium, Headline */
@font-face { font-family: "CalibreLH"; font-style: normal; font-weight: 300 450; font-display: swap; src: url(/fonts/calibrelh-middle.woff2) format("woff2"); }
@font-face { font-family: "CalibreLH"; font-style: normal; font-weight: 451 600; font-display: swap; src: url(/fonts/calibrelh-medium.woff2) format("woff2"); }
@font-face { font-family: "CalibreLH"; font-style: normal; font-weight: 601 900; font-display: swap; src: url(/fonts/calibrelh-headline.woff2) format("woff2"); }
:root { --f-body: "CalibreLH", "Helvetica Neue", Helvetica, Arial, sans-serif; --f-display: var(--f-body); --w-display: 700; --s-display: normal; }
/* Keine Kursivschrift: weder echte noch vom Browser nachgebildete */
html { font-synthesis: none; }
address, em, i, cite, dfn, var { font-style: normal; }
em, i { font-weight: 500; }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: 6rem; }
body {
  margin: 0; background: #fff; color: var(--c-ink);
  font-family: var(--f-body); font-size: 1.1875rem; line-height: 1.6;
  font-variant-numeric: lining-nums;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-brand-ink); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--c-deep); }
:focus-visible { outline: 3px solid var(--c-focus); outline-offset: 2px; border-radius: 2px; }
.icon { width: 1.1em; height: 1.1em; flex: none; }
p, ul, ol, dl, table, figure { margin: 0 0 1rem; }
h1, h2, h3, h4 {
  font-family: var(--f-display); font-weight: var(--w-display); font-style: var(--s-display);
  line-height: 1.1; margin: 0 0 .5em; color: var(--c-heading); letter-spacing: -.005em; text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
h3 { font-size: 1.5rem; line-height: 1.2; }
h4 { font-size: 1.25rem; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.wrap { width: 100%; max-width: 78rem; margin-inline: auto; padding-inline: 1rem; }
@media (min-width: 48em) { .wrap { padding-inline: 2rem; } }

.skip { position: absolute; left: 1rem; top: -4rem; z-index: 100; background: #fff; color: var(--c-ink); padding: .6rem 1rem; font-weight: 600; }
.skip:focus { top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem; min-height: 3rem; padding: .65rem 1.3rem;
  font: 600 1.0625rem/1.2 var(--f-body); text-decoration: none; border-radius: var(--radius-btn);
  border: 2px solid transparent; cursor: pointer; transition: background-color .15s, color .15s, border-color .15s;
}
.btn-primary { background: var(--c-brand-ink); color: #fff; }
.btn-primary:hover { background: var(--c-deep); color: #fff; }
.btn-light { background: #fff; color: var(--c-deep); }
.btn-light:hover { background: var(--c-accent); color: var(--c-deep); }
.btn-outline-light { border-color: rgba(255,255,255,.85); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--c-deep); }
.btn-ghost { background: var(--c-soft); color: var(--c-deep); border-color: var(--c-line); }
.btn-ghost:hover { background: #fff; border-color: var(--c-brand-ink); color: var(--c-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

/* ---------- Kopfbereich ---------- */
.topbar { background: var(--c-deep); color: rgba(255,255,255,.92); font-size: .95rem; }
.topbar .wrap { display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; align-items: center; min-height: 2.5rem; padding-block: .3rem; }
.topbar a { color: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: .45rem; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar .topbar-end { margin-left: auto; }
@media (max-width: 40em) { .topbar .topbar-mail, .topbar .topbar-end { display: none; } }

.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--c-line); }
.navbar { display: flex; align-items: center; gap: 1rem; min-height: 4.75rem; }
.brand { display: block; flex: none; margin-right: auto; padding-block: .5rem; }
.brand img { height: var(--logo-h); width: auto; }
.nav-toggle {
  display: inline-flex; align-items: center; gap: .5rem; min-height: 2.75rem; padding: .4rem .9rem;
  font: 600 1rem var(--f-body); color: var(--c-deep); background: var(--c-soft); border: 1px solid var(--c-line); border-radius: var(--radius-btn); cursor: pointer;
}
.nav-toggle .icon-close, .nav-open .nav-toggle .icon-menu { display: none; }
.nav-open .nav-toggle .icon-close { display: inline; }

.nav ul { list-style: none; margin: 0; padding: 0; }
.nav a { text-decoration: none; color: var(--c-ink); }
.nav a[aria-current="page"], .nav .is-active > a { color: var(--c-brand-ink); }

/* Mobil: Menü als Panel unter dem Kopf */
@media (max-width: 63.99em) {
  .js .nav { display: none; }
  .nav-open .nav {
    display: block; position: fixed; inset: var(--header-h, 4.8rem) 0 0 0; overflow-y: auto; background: #fff;
    padding: .5rem 1rem 3rem; border-top: 1px solid var(--c-line);
  }
  .nav > ul > li { border-bottom: 1px solid var(--c-line); }
  .nav > ul > li > a { display: flex; align-items: center; gap: .5rem; padding: .9rem 0; font: var(--s-display) var(--w-display) 1.45rem/1.2 var(--f-display); }
  .nav .sub { padding: 0 0 .8rem .9rem; }
  .nav .sub a { display: block; padding: .35rem 0; font-size: 1.05rem; color: var(--c-muted); }
  .nav .nav-cta { margin-top: 1.25rem; border: 0; }
  .nav .nav-cta a { justify-content: center; }
  .nav .caret { display: none; }
  body.nav-open { overflow: hidden; }
}
/* Desktop: horizontale Navigation mit Aufklappmenüs */
@media (min-width: 64em) {
  .nav-toggle { display: none; }
  .nav > ul { display: flex; align-items: center; gap: .25rem; }
  .nav > ul > li { position: relative; }
  .nav > ul > li > a { display: inline-flex; align-items: center; gap: .3rem; padding: .6rem .75rem; font-weight: 600; font-size: 1.0625rem; border-radius: 4px; }
  .nav > ul > li > a:hover { background: var(--c-soft); color: var(--c-deep); }
  .nav .caret { width: .9em; height: .9em; opacity: .6; }
  .nav .sub {
    position: absolute; left: 0; top: 100%; min-width: 17rem; padding: .5rem; background: #fff;
    border: 1px solid var(--c-line); border-radius: 6px; box-shadow: 0 12px 28px -12px rgba(10,40,20,.28);
    visibility: hidden; opacity: 0; transform: translateY(4px); transition: opacity .15s, transform .15s, visibility 0s .15s;
  }
  .nav li:hover > .sub, .nav li:focus-within > .sub { visibility: visible; opacity: 1; transform: none; transition-delay: 0s; }
  .nav .sub a { display: block; padding: .5rem .75rem; border-radius: 4px; font-size: 1rem; }
  .nav .sub a:hover { background: var(--c-soft); }
  .nav .nav-cta { margin-left: .5rem; }
  .nav .nav-cta a { padding-inline: 1.1rem; }
}

/* ---------- Abschnitte ---------- */
main { display: block; }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section-soft { background: var(--c-soft); }
.section-deep { background: var(--c-deep); color: rgba(255,255,255,.92); }
.section-deep h2, .section-deep h3 { color: #fff; }
.section-deep a:not(.btn) { color: #fff; }
.section-head { max-width: 46rem; margin-bottom: 2.25rem; }
.section-head p { font-size: 1.2rem; color: var(--c-muted); }
.section-deep .section-head p { color: rgba(255,255,255,.8); }
.prose { max-width: 42rem; }
.prose-wide { max-width: 50rem; }
.lead { font-size: 1.25rem; line-height: 1.55; }
.muted { color: var(--c-muted); }
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 56em) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } .split-60 { grid-template-columns: 3fr 2fr; } .split-40 { grid-template-columns: 2fr 3fr; } }
.split img { border-radius: var(--radius-img); }
.grid { display: grid; gap: 1.5rem; }
@media (min-width: 40em) { .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 60em) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.checklist { list-style: none; padding: 0; }
.checklist li { display: flex; gap: .6rem; align-items: baseline; margin-bottom: .45rem; }
.checklist .icon { color: var(--c-brand-ink); transform: translateY(.18em); }
.section-deep .checklist .icon { color: var(--c-accent); }

/* ---------- Seitenkopf für Unterseiten ---------- */
.page-head { position: relative; background: var(--c-deep); color: #fff; overflow: hidden; }
.page-head-media { position: absolute; inset: 0; }
.page-head-media img { width: 100%; height: 100%; object-fit: cover; }
.page-head-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,26,14,.86) 0%, rgba(6,26,14,.62) 55%, rgba(6,26,14,.25) 100%); }
.page-head .wrap { position: relative; padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 5vw, 3.5rem); }
.page-head h1 { color: #fff; max-width: 20ch; margin-bottom: .35em; }
.page-head p { max-width: 40rem; font-size: 1.2rem; color: rgba(255,255,255,.9); margin: 0; }
.crumbs { font-size: .95rem; margin-bottom: 1rem; }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .25rem .5rem; }
.crumbs li + li::before { content: "/"; margin-right: .5rem; opacity: .6; }
.crumbs a { color: rgba(255,255,255,.88); }
.crumbs [aria-current] { color: rgba(255,255,255,.7); }

/* ---------- Kacheln (Produktgruppen) ---------- */
.tiles { display: grid; gap: .75rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 56em) { .tiles { grid-template-columns: repeat(4, 1fr); gap: 1rem; } .tile-big { grid-column: span 2; grid-row: span 2; } }
.tile { position: relative; display: flex; align-items: flex-end; min-height: 11rem; overflow: hidden; border-radius: var(--radius-img); color: #fff; text-decoration: none; background: var(--c-deep); isolation: isolate; }
@media (min-width: 56em) { .tile { min-height: 14rem; } }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .4s ease; }
.tile::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(4,24,12,.82) 100%); }
.tile-body { padding: 1rem 1.1rem; }
.tile-title { display: block; font: var(--s-display) var(--w-display) 1.5rem/1.1 var(--f-display); }
.tile-big .tile-title { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.tile-text { display: block; font-size: .98rem; line-height: 1.4; color: rgba(255,255,255,.88); margin-top: .25rem; }
.tile:hover { color: #fff; }
.tile:hover img { transform: scale(1.04); }
@media (max-width: 36em) { .tile-text { display: none; } .tile-big { grid-column: span 2; } }

/* ---------- Produkttabellen ---------- */
.table-wrap { margin-bottom: .5rem; }
.products { width: 100%; border-collapse: collapse; font-size: 1.02rem; line-height: 1.45; }
.products caption { text-align: left; font: var(--s-display) var(--w-display) 1.5rem/1.2 var(--f-display); color: var(--c-heading); padding-bottom: .75rem; }
.products th, .products td { text-align: left; vertical-align: top; padding: .75rem .9rem; }
.products thead th { background: var(--c-deep); color: #fff; font-weight: 600; font-size: .95rem; white-space: nowrap; }
.products thead th:first-child { border-top-left-radius: 6px; }
.products thead th:last-child { border-top-right-radius: 6px; }
.products tbody tr { border-bottom: 1px solid var(--c-line); }
.products tbody tr:nth-child(even) { background: var(--c-soft); }
.products tbody th { font-weight: 600; color: var(--c-deep); min-width: 12.5rem; }
.products .num { white-space: nowrap; font-variant-numeric: tabular-nums; }
.products td[data-empty] { color: var(--c-muted); }
.table-note { font-size: .95rem; color: var(--c-muted); margin-top: .5rem; }
@media (max-width: 47.99em) {
  .products thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .products, .products tbody, .products tr, .products th, .products td { display: block; width: 100%; }
  .products tbody tr { border: 1px solid var(--c-line); border-radius: 8px; margin-bottom: .75rem; padding: .25rem 0 .5rem; background: #fff !important; }
  .products tbody th { font-size: 1.15rem; padding: .75rem 1rem .4rem; border-bottom: 1px solid var(--c-line); margin-bottom: .35rem; }
  .products td { display: grid; grid-template-columns: 7.5rem 1fr; gap: .75rem; padding: .3rem 1rem; white-space: normal; }
  .products td::before { content: attr(data-label); font-weight: 600; font-size: .9rem; color: var(--c-muted); }
  .products td[data-empty] { display: none; }
}
.product-block + .product-block { margin-top: 3rem; }
.product-block > h2 { margin-bottom: .3em; }
.product-block > p { max-width: 46rem; }

/* Produktliste (Milkivit) */
.product-list { display: grid; gap: 1rem; list-style: none; padding: 0; }
@media (min-width: 48em) { .product-list { grid-template-columns: repeat(2, 1fr); } }
.product-list > li { border: 1px solid var(--c-line); border-radius: 8px; padding: 1.25rem 1.35rem; background: #fff; break-inside: avoid; }
.product-list h3 { font-size: 1.35rem; margin-bottom: .15em; }
.product-list .claim { color: var(--c-brand-ink); font-weight: 500; margin-bottom: .6rem; }
.product-list ul { padding-left: 1.1rem; margin-bottom: .6rem; }
.product-list li li { margin-bottom: .2rem; }
.product-list .dose { font-size: .98rem; background: var(--c-soft); border-radius: 6px; padding: .55rem .75rem; margin: .5rem 0 0; }

/* ---------- Personen / Kontakt ---------- */
.people { display: grid; gap: 1rem; }
@media (min-width: 40em) { .people { grid-template-columns: repeat(auto-fit, minmax(18.5rem, 1fr)); } }
.person { background: #fff; border: 1px solid var(--c-line); border-left: 4px solid var(--c-brand); border-radius: 6px; padding: 1.1rem 1.25rem; }
.person-name { font: var(--s-display) var(--w-display) 1.4rem/1.15 var(--f-display); color: var(--c-heading); margin: 0 0 .15rem; }
.person-role { color: var(--c-muted); font-size: 1rem; margin: 0 0 .6rem; }
.person-contact { list-style: none; padding: 0; margin: 0; }
.person-contact { font-size: 1.02rem; }
.person-contact a { display: inline-flex; align-items: center; gap: .5rem; padding: .2rem 0; text-decoration: none; overflow-wrap: anywhere; }
.person-contact a:hover span { text-decoration: underline; }
.section-deep .person { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); border-left-color: var(--c-accent); }
.section-deep .person-name { color: #fff; }
.section-deep .person-role { color: rgba(255,255,255,.7); }
.section-deep .person-contact a { color: #fff; }

.places { display: grid; gap: 1rem; }
@media (min-width: 40em) { .places { grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr)); } }
.place { border-top: 3px solid var(--c-brand); padding-top: .9rem; }
.place h3 { font-size: 1.3rem; margin-bottom: .35rem; }
.place address { font-style: normal; margin-bottom: .5rem; }
.place ul { list-style: none; padding: 0; margin: 0; font-size: 1rem; }
.place li { display: flex; gap: .5rem; align-items: center; }
.place a { text-decoration: none; }
.place a:hover { text-decoration: underline; }

/* ---------- Video (2-Klick) ---------- */
.video { margin: 0; }
.video-frame { position: relative; aspect-ratio: 16 / 9; background: #000; border-radius: var(--radius-img); overflow: hidden; }
.video-frame img { width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: .6rem; padding: .9rem 1.4rem; border: 0; border-radius: 999px;
  background: #fff; color: var(--c-deep); font: 600 1.1rem var(--f-body); cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.video-play .icon { fill: currentColor; }
.video-play:hover { background: var(--c-accent); }
.video figcaption { font-size: .92rem; color: var(--c-muted); margin-top: .6rem; }
.section-deep .video figcaption { color: rgba(255,255,255,.7); }

/* ---------- Galerie ---------- */
.gallery { display: grid; gap: .75rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 48em) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-img); }
.gallery figure { margin: 0; }

/* ---------- Siegel / Downloads ---------- */
.seals { display: grid; gap: 1rem; }
@media (min-width: 40em) { .seals { grid-template-columns: repeat(2, 1fr); } }
.seal { display: grid; grid-template-columns: 6rem 1fr; gap: 1.1rem; align-items: center; background: #fff; border: 1px solid var(--c-line); border-radius: 8px; padding: 1rem 1.2rem; }
.seal img { width: 6rem; height: 6rem; object-fit: contain; }
.seal h3 { font-size: 1.3rem; margin-bottom: .2rem; }
.seal p { margin: 0 0 .4rem; font-size: 1rem; }
.seal a { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; }
.doc-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

/* ---------- Fußbereich ---------- */
.site-footer { background: var(--c-deep); color: rgba(255,255,255,.82); font-size: 1rem; }
.site-footer a { color: #fff; }
.footer-main { display: grid; gap: 2rem; padding-block: 3.5rem 2.5rem; }
@media (min-width: 48em) { .footer-main { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-main h2 { font-size: 1.35rem; color: #fff; margin-bottom: .6rem; }
.footer-main ul { list-style: none; padding: 0; margin: 0; }
.footer-main li { margin-bottom: .3rem; }
.footer-main li a { text-decoration: none; }
.footer-main li a:hover { text-decoration: underline; }
.footer-brand img { height: 4.5rem; width: auto; margin-bottom: 1rem; background: #fff; border-radius: 8px; padding: .45rem .7rem; }
.footer-brand address { font-style: normal; }
.footer-contact a { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); }
.footer-bottom .wrap { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; padding-block: 1.1rem; font-size: .92rem; color: rgba(255,255,255,.65); }
.footer-bottom .wrap > :last-child { margin-left: auto; }
.footer-bottom a { color: rgba(255,255,255,.85); }

/* ---------- Rechtstexte ---------- */
.legal h2 { font-size: 1.7rem; margin-top: 2.25rem; }
.legal h3 { font-size: 1.3rem; margin-top: 1.5rem; }
.legal dl { display: grid; grid-template-columns: minmax(9rem, max-content) 1fr; gap: .35rem 1.25rem; }
.legal dt { font-weight: 600; }
.legal dd { margin: 0; }
@media (max-width: 36em) { .legal dl { grid-template-columns: 1fr; } .legal dd { margin-bottom: .5rem; } }

/* ---------- Bewegung reduzieren ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* ---------- Druck ---------- */
@media print {
  @page { margin: 15mm 14mm; }
  body { font-size: 10.5pt; color: #000; }
  .topbar, .site-header .nav, .nav-toggle, .site-footer, .btn, .print-hide, .video, .skip, .tile img { display: none !important; }
  .site-header { position: static; border: 0; }
  .brand img { height: 2.2cm; }
  .page-head { background: none; color: #000; }
  .page-head-media { display: none; }
  .page-head h1, .page-head p, .crumbs a { color: #000; }
  .crumbs { display: none; }
  .section { padding-block: 0 1rem; }
  .section-soft, .section-deep { background: none; color: #000; }
  .products thead th { background: #eee !important; color: #000; }
  .products tr { break-inside: avoid; }
  a { color: #000; text-decoration: none; }
  .print-contact { display: block !important; }
}
.print-contact { display: none; border-top: 1px solid #999; padding-top: .5rem; margin-top: 1.5rem; font-size: 10pt; }

/* ---------- Weitere Bausteine ---------- */
.mt { margin-top: 2.5rem; }
.align-start { align-items: start; }
.rounded, .figure img { border-radius: var(--radius-img); }
.figure { margin: 0; }
.figure figcaption { font-size: .98rem; color: var(--c-muted); margin-top: .6rem; }
.more-link { margin-top: 1.5rem; font-weight: 600; }
.claim { color: var(--c-brand-ink); font-weight: 600; }
.products .sub { display: block; font-size: .86em; color: var(--c-muted); white-space: nowrap; }

.photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.photo-pair img { width: 100%; height: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius-img); }
.photo-pair img:nth-child(2) { margin-top: 2rem; }

.why { display: grid; gap: 2rem; }
@media (min-width: 56em) { .why { grid-template-columns: repeat(3, 1fr); gap: 0; } .why > div { padding-inline: 2rem; border-left: 1px solid var(--c-line); } .why > div:first-child { padding-left: 0; border-left: 0; } }
.why h2 { font-size: 1.75rem; }
.why p { margin: 0; color: var(--c-muted); }

.product-layout { display: grid; gap: 2.5rem; }
@media (min-width: 64em) { .product-layout { grid-template-columns: minmax(0, 1fr) 17.5rem; gap: 3rem; align-items: start; } .product-layout .aside-box { position: sticky; top: 6.5rem; } }
.product-main { min-width: 0; }
.intro { margin-bottom: 2.5rem; }
.intro p:first-child { font-size: 1.2rem; }
.aside-box { background: var(--c-soft); border-radius: 8px; padding: 1.4rem 1.5rem; border-top: 4px solid var(--c-brand); }
.aside-box h2 { font-size: 1.5rem; }
.aside-box p { font-size: 1.02rem; }
.aside-box > :last-child { margin-bottom: 0; }
.aside-hotline a { display: inline-flex; align-items: center; gap: .5rem; font: var(--s-display) var(--w-display) 1.45rem/1.2 var(--f-display); color: var(--c-deep); text-decoration: none; }
.aside-hotline a:hover span { text-decoration: underline; }

.chip-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.chip-list a { display: inline-block; padding: .55rem 1rem; background: #fff; border: 1px solid var(--c-line); border-radius: 999px; text-decoration: none; font-weight: 500; color: var(--c-deep); }
.chip-list a:hover { border-color: var(--c-brand-ink); }

.feature-product { margin-top: 3rem; padding: 1.75rem; border-radius: 10px; background: var(--c-soft); display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 48em) { .feature-product.has-media { grid-template-columns: 1fr 14rem; } }
.feature-product img { border-radius: var(--radius-img); aspect-ratio: 1; object-fit: cover; width: 100%; }
.feature-product h2 { margin-bottom: .2em; }
.feature-product > div > :last-child { margin-bottom: 0; }

.milk-cards { display: grid; gap: 1rem; }
@media (min-width: 48em) { .milk-cards { grid-template-columns: repeat(3, 1fr); } }
.milk-card { display: flex; flex-direction: column; gap: .5rem; padding: 1.4rem; border: 1px solid var(--c-line); border-radius: 10px; text-decoration: none; color: var(--c-ink); background: #fff; }
.milk-card:hover { border-color: var(--c-brand-ink); color: var(--c-ink); }
.milk-tag { align-self: flex-start; font-size: .9rem; font-weight: 600; color: var(--c-deep); background: var(--c-soft); border-radius: 4px; padding: .15rem .55rem; }
.milk-title { font: var(--s-display) var(--w-display) 1.45rem/1.15 var(--f-display); color: var(--c-heading); }
.milk-link { margin-top: auto; color: var(--c-brand-ink); font-weight: 600; text-decoration: underline; text-underline-offset: .18em; }

.alpenkorn-intro { display: grid; grid-template-columns: 8rem 1fr; gap: 1.25rem; align-items: start; margin-bottom: 1rem; }
.alpenkorn-intro img { width: 8rem; border-radius: 4px; }
@media (max-width: 30em) { .alpenkorn-intro { grid-template-columns: 5.5rem 1fr; } .alpenkorn-intro img { width: 5.5rem; } }

.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 56em) { .contact-grid { grid-template-columns: 1.2fr 1fr; } }
.contact-label { font-weight: 600; color: var(--c-muted); margin: 0 0 .1rem; font-size: 1rem; }
.contact-big { font: var(--s-display) var(--w-display) clamp(2rem, 5vw, 3rem)/1.1 var(--f-display); margin-bottom: 1.4rem; }
.contact-big a, .contact-mid a { text-decoration: none; color: var(--c-deep); }
.contact-big a:hover, .contact-mid a:hover { text-decoration: underline; }
.contact-mid { font-size: 1.35rem; font-weight: 500; margin-bottom: 1.4rem; word-break: break-word; }
.contact-main address { font-style: normal; margin-bottom: 1rem; }
.contact-main a .icon { vertical-align: -.15em; }
.link-list { list-style: none; padding: 0; margin: 0; }
.link-list a { display: block; padding: 1rem 0; border-bottom: 1px solid var(--c-line); text-decoration: none; color: var(--c-ink); }
.link-list li:first-child a { border-top: 1px solid var(--c-line); }
.link-list strong { display: block; color: var(--c-brand-ink); font-size: 1.15rem; }
.link-list span { color: var(--c-muted); font-size: 1rem; }
.link-list a:hover strong { text-decoration: underline; }

.people-compact { grid-template-columns: 1fr !important; }
.people-compact .person { padding: .75rem 1rem; }
.news-inner { display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; align-items: center; justify-content: space-between; }
.news-inner h2 { margin-bottom: .25em; }
.news-inner p { margin: 0; color: var(--c-muted); }
.news-band { padding-block: 2.5rem; }
.futter-legend { margin-top: 1.5rem; }
.aside-label { display: block; font-size: .95rem; font-weight: 600; color: var(--c-muted); }
.aside-hotline a { white-space: nowrap; }
@media (max-width: 47.99em) { .products td > span { min-width: 0; } }

/* ---------- Hero: Ortszeile in der Hauptüberschrift ---------- */
.hero-kicker {
  display: block; margin-bottom: .7rem; text-shadow: none; letter-spacing: .01em;
  font: 600 clamp(1.05rem, 1.7vw, 1.3rem)/1.3 var(--f-body); color: var(--c-accent);
}

/* ---------- Häufige Fragen ---------- */
.faq { max-width: 52rem; border-top: 1px solid var(--c-line); }
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { margin: 0; font-size: 1.35rem; }
.faq-item summary::after {
  content: ""; flex: none; width: .7rem; height: .7rem; margin-right: .3rem;
  border-right: 2px solid var(--c-brand-ink); border-bottom: 2px solid var(--c-brand-ink); transform: rotate(45deg) translateY(-3px); transition: transform .15s;
}
.faq-item[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq-item summary:hover h3 { color: var(--c-brand-ink); }
.faq-answer { padding: 0 0 1.2rem; max-width: 46rem; }
.faq-answer p { margin: 0; color: var(--c-muted); }
@media print { .faq-item { break-inside: avoid; } .faq-answer { display: block; } }

/* ============ HQF – Hopfgartner Qualitätsfutter ============ */

:root {
  --c-brand: #009140;      /* Logo-Grün */
  --c-brand-ink: #007a35;  /* Grün für Text und Buttons (Kontrast ≥ 5:1) */
  --c-deep: #0b3d22;       /* Tannengrün: Topbar, Footer, dunkle Flächen */
  --c-accent: #ffe500;     /* Maisgelb aus dem Logo-Schatten */
  --c-soft: #eef3ee;       /* Silo-Hellgrün für ruhige Flächen */
  --c-ink: #17241b;
  --c-heading: #0b3d22;
  --c-muted: #4d5d52;
  --c-line: #d5dfd6;
  --c-focus: #e0a800;
  --radius-btn: 4px;
  --radius-img: 6px;
  --logo-h: 3.6rem;
}
@media (min-width: 64em) { :root { --logo-h: 4.6rem; } }

/* ---------- Startseite: Hero ---------- */
.hero { position: relative; background: var(--c-deep); color: #fff; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,22,12,.88) 0%, rgba(5,22,12,.7) 42%, rgba(5,22,12,.15) 78%, rgba(5,22,12,0) 100%);
}
.hero-inner { min-height: min(78vh, 44rem); display: flex; flex-direction: column; justify-content: center; padding-block: 4rem 3rem; }
.hero-title {
  margin: 0 0 1.25rem; color: #fff;
  font: 700 clamp(2.9rem, 7vw, 5.4rem)/.98 var(--f-display); letter-spacing: -.015em;
}
.hero-lead { max-width: 34rem; font-size: clamp(1.15rem, 2vw, 1.35rem); line-height: 1.5; color: rgba(255,255,255,.92); margin: 0; }
@media (max-width: 40em) {
  .hero-media::after { background: linear-gradient(180deg, rgba(5,22,12,.55) 0%, rgba(5,22,12,.85) 60%, rgba(5,22,12,.92) 100%); }
  .hero-media img { object-position: 70% 50%; }
}

/* Hotline-Band wie auf den LKWs */
.hotline-band { display: block; background: var(--c-brand); color: #fff; text-decoration: none; border-top: 5px solid var(--c-accent); }
.hotline-inner { display: flex; flex-wrap: wrap; align-items: baseline; gap: .1rem 1.25rem; padding-block: .9rem 1rem; }
.hotline-label { font: 500 1.3rem/1 var(--f-body); opacity: .95; }
.hotline-number { font: 700 clamp(2rem, 4.6vw, 2.8rem)/1 var(--f-display); letter-spacing: -.005em; }
.hotline-note { font-size: 1.02rem; opacity: .92; margin-left: auto; }
.hotline-band:hover { background: #00863b; color: #fff; }
.hotline-band:hover .hotline-number { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: .12em; }
@media (max-width: 40em) { .hotline-note { margin-left: 0; width: 100%; } }

/* Kacheln: Alpenkorn in Biofarben */
.tile-bio::before { background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(20,30,10,.85) 100%); }

/* Seitenkopf: Maisgelbe Linie als Markenverweis */
.page-head { border-bottom: 5px solid var(--c-accent); }

.media-stack img { border-radius: var(--radius-img); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
@media (max-width: 55.99em) { .media-stack img { aspect-ratio: 16 / 10; } }
@media (max-width: 40em) {
  .hero-media::after { background: linear-gradient(180deg, rgba(5,22,12,.25) 0%, rgba(5,22,12,.55) 35%, rgba(5,22,12,.88) 75%); }
  .hero-inner { min-height: 0; padding-block: 9rem 2.5rem; justify-content: flex-end; }
}

.pos-heroTruck{object-position:62% 50%}
.pos-kidWheat{object-position:50% 40%}
.pos-kuh{object-position:55% 35%}
.pos-huehner{object-position:50% 45%}
.pos-kaninchen{object-position:50% 60%}
.pos-wild{object-position:55% 50%}
.pos-kaelberMilkivit{object-position:40% 60%}
.pos-bild5{object-position:50% 60%}
.pos-werk{object-position:50% 35%}
.pos-lkwLagerhaus{object-position:50% 60%}
.pos-kaelberAlm{object-position:50% 40%}
.pos-pute{object-position:50% 30%}
.pos-kuhAlpenkorn{object-position:75% 0%}
.pos-pferd{object-position:45% 40%}
.pos-schwein{object-position:55% 40%}