/* Schrift lokal eingebunden (kein Google-Fonts-Abruf, DSGVO-freundlich) */
/* Libre Caslon Text: historische Antiqua, gewählt aus der Schriftauswahl (Kandidat 5) */
@font-face { font-family: "Libre Caslon Text"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("/fonts/librecaslontext-latin-400.woff2") format("woff2"); }
@font-face { font-family: "Libre Caslon Text"; font-style: italic; font-weight: 400; font-display: swap;
  src: url("/fonts/librecaslontext-latin-400-italic.woff2") format("woff2"); }
@font-face { font-family: "Libre Caslon Text"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("/fonts/librecaslontext-latin-700.woff2") format("woff2"); }

:root {
  --bg: #fffdfa;
  --bg-alt: #f5efe4;
  --ink: #2a1c14;
  --ink-soft: #6b5a4d;
  --accent: #970201;         /* Buttons, Links (Marke: Bordeaux) */
  --accent-strong: #7a0101;
  --deep: #2a0a02;           /* Verlauf Hero/CTA, dunkles Bordeaux-Braun */
  --rust: #993300;           /* Akzentfarbe (Marke) */
  --rust-on-dark: #d98a5f;   /* Rostbraun, aufgehellt für dunklen Grund */
  --line: #e5dccc;
  --maxw: 1240px;
  --gutter: clamp(16px, 4vw, 48px);
  --font-head: "Libre Caslon Text", Georgia, "Times New Roman", serif;
  --font-body: "Libre Caslon Text", Georgia, "Times New Roman", serif;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #16110d; --bg-alt: #1f1712; --ink: #f2ece2; --ink-soft: #b8a99a; --line: #35281f; --accent-strong: #d84a48;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 400 clamp(16px, 1.1vw, 18px)/1.65 var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 8px; top: 8px; background: var(--ink); color: var(--bg); padding: 8px 12px; z-index: 100; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  /* Grau = obere Kante des Hero-Banners, geht nahtlos ins Banner über; feste Farben auch im Dark Mode */
  --bg: #c3c3c3; --ink: #2a1c14; --accent-strong: #7a0101; --line: #a9a9a9;
  background: var(--bg); color: var(--ink);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
/* Header-Schrift größer als Footer (1.25rem = 15pt): Logo 19pt, Menü 17pt (wirkt optisch gleich groß) */
.site-header .logo { font-size: calc(1.25rem + 4pt); }
.site-header .nav a { font-size: calc(1.25rem + 2pt); }
.logo { font-weight: 400; font-size: 1.25rem; letter-spacing: -.02em; text-decoration: none; color: #970201; }
.logo { display: inline-flex; align-items: center; }
.logo span { color: inherit; }
.nav { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); }
.nav a { text-decoration: none; font-weight: 500; font-size: 1.25rem; position: relative; padding: 4px 0; transition: color .25s; }
.nav a:hover { color: #970201; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--accent); transition: width .25s; }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.lang { display: flex; gap: 6px; font-size: 1.25rem; font-weight: 600; margin-left: 8px; }
.lang a { opacity: .45; } .lang a[aria-current="true"], .lang a:hover { opacity: 1; }
.lang a::after { display: none; }
.burger { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; color: var(--ink); }
.burger span, .burger span::before, .burger span::after { display: block; width: 22px; height: 2px; background: currentColor; position: relative; content: ""; margin: auto; }
.burger span::before { position: absolute; top: -7px; } .burger span::after { position: absolute; top: 7px; }
@media (max-width: 760px) {
  .burger { display: block; }
  .nav { position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 18px;
    padding: 24px var(--gutter) 32px; background: var(--bg); border-bottom: 1px solid var(--line); display: none; }
  .nav.open { display: flex; }
}

/* Screenreader-only (SEO/Barrierefreiheit, visuell versteckt) */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Hero-Banner (ersetzt den Farbverlauf-Hero durch ein Bild) */
.hero-banner { padding: 0; }
.hero-banner img { width: 100%; height: auto; display: block; }

/* Hero */
.hero { padding: clamp(64px, 12vw, 160px) 0 clamp(48px, 8vw, 100px); color: #fff;
  background: radial-gradient(circle at center, #970201 0%, #5c0603 50%, #1a0500 100%); }
.hero.compact { padding: clamp(48px, 7vw, 96px) 0; }
.hero .lead { color: rgb(255 255 255 / .85); }
.hero .btn { background: #fff; color: var(--deep); }
.hero .btn:hover { background: var(--rust); color: #fff; }
.eyebrow { font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: var(--rust-on-dark); font-weight: 700; margin: 0 0 20px; }
h1, h2, h3, .logo, .eyebrow, .numbers strong { font-family: var(--font-head); }
h1 { font-size: clamp(2.4rem, 7vw, 6rem); line-height: 1.02; letter-spacing: -.035em; margin: 0 0 28px; font-weight: 400; max-width: 16ch; }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1.1; letter-spacing: -.025em; margin: 0 0 20px; font-weight: 400; }
h3 { font-size: 24px; line-height: 1.2; margin: 0 0 8px; letter-spacing: -.01em; font-weight: 400; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.4rem); color: var(--ink-soft); max-width: 46ch; margin: 0 0 36px; }
.btn {
  display: inline-block; background: var(--accent); color: #fff; text-decoration: none; font-weight: 600;
  padding: 16px 30px; border-radius: 999px; border: 0; cursor: pointer; font-size: 1rem; font-family: var(--font-head); transition: transform .2s, background .2s;
}
.btn:hover { background: var(--deep); color: #fff; transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--bg); }
.btn-gold { background: linear-gradient(135deg, #f5d68c 0%, #c9861f 35%, #8a5a0a 55%, #d9a53c 75%, #f5d68c 100%); border-radius: 26px; color: #fff; }
.btn-gold:hover { background: #970201; color: #fff; }

/* Sections */
section { padding: clamp(56px, 9vw, 120px) 0; }
section.alt { background: var(--bg-alt); }
section.alt + section.alt { padding-top: 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }

/* Cards / Fundstücke */
.grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card { display: block; box-sizing: border-box; padding: 4px; border-radius: 26px; text-decoration: none; transition: transform .3s, box-shadow .3s;
  background: linear-gradient(135deg, #f5d68c 0%, #c9861f 35%, #8a5a0a 55%, #d9a53c 75%, #f5d68c 100%); }
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgb(0 0 0 / .10); }
.card-inner { background: #7e7e7e; border-radius: 20px; overflow: hidden; }
.card .media { aspect-ratio: 1/1; overflow: hidden; }
.card .media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.card:hover .media img { transform: scale(1.04); }
.card .body { padding: 24px; }
.card .body h3 { color: #fff; }
.card .body h3:not(.price) { min-height: 2.4em; } /* immer 2 Zeilen Platz, damit Preise auf gleicher Höhe stehen */
.card p { color: var(--ink-soft); margin: 0; }
.card .body h3.price { margin: 0; font-weight: 700; color: #ffd27a; }

/* Numbers */
.numbers { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.numbers strong { display: block; font-size: clamp(2.6rem, 6vw, 4.5rem); letter-spacing: -.04em; line-height: 1; }
.numbers span { color: var(--ink-soft); }

/* CTA */
.cta { background: var(--deep); color: #fff; text-align: left; }
.cta h2 { max-width: 18ch; }
.cta .btn { background: #fff; color: var(--deep); }
.cta .btn:hover { background: var(--rust); color: #fff; }

/* Footer */
.site-footer { padding: 32px 0; font-size: 1.25rem;
  /* Grauverlauf wie im Hero-Banner; feste Farben, damit es auch im Dark Mode lesbar bleibt */
  background: linear-gradient(#c3c3c3, #979797);
  --ink: #2a1c14; --accent-strong: #7a0101; color: var(--ink); }
/* alles in einer Zeile; auf schmalen Bildschirmen bricht es um */
.site-footer .wrap, .site-footer .cols, .site-footer .cols > div { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 32px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--accent-strong); }
.site-footer .copy { margin: 0 0 0 auto; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* Kontaktformular */
.contact-grid { display: grid; gap: 56px; grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr); align-items: start; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
form.contact { display: grid; gap: 18px; max-width: 640px; }
form.contact label { display: grid; gap: 6px; font-size: 1.1rem; }
input, textarea {
  width: 100%; font: inherit; font-size: 1.2rem; color: var(--ink); background: var(--bg);
  padding: 12px 16px; border: 1.5px solid var(--line); border-radius: 14px;
}
input:focus, textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
textarea { min-height: 180px; resize: vertical; }
.check { display: flex !important; gap: 10px; align-items: start; }
.check input { width: auto; margin-top: 6px; accent-color: var(--accent); }
.check a { color: var(--accent); }
.hp { position: absolute; left: -9999px; }
.notice { padding: 14px 18px; border-radius: 14px; background: var(--bg); border-left: 4px solid #c9861f; margin-bottom: 18px; }
.contact-grid aside a:not(.btn) { color: var(--accent); }
