:root {
  --ink: #17231f;
  --muted: #68736e;
  --forest: #17392f;
  --forest-deep: #0d241e;
  --forest-soft: #e4ebe7;
  --cream: #f5f0e5;
  --paper: #fffdf8;
  --gold: #c99a54;
  --gold-soft: #e6c681;
  --wine: #6d2837;
  --tea: #6e7d50;
  --coffee: #654231;
  --water: #4f7f83;
  --line: rgba(20, 52, 42, .15);
  --shadow: 0 26px 75px rgba(12, 39, 31, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.wrap { width: min(1180px, calc(100% - 2.5rem)); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  transform: translateY(-180%);
  padding: .7rem 1rem;
  color: #fff;
  border-radius: 8px;
  background: var(--forest-deep);
}
.skip-link:focus { transform: none; }

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.site-header.inner-header { position: relative; background: var(--forest-deep); }
.header-inner { min-height: 80px; display: flex; align-items: center; gap: 2rem; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
  font-size: 1.22rem;
  font-weight: 850;
  letter-spacing: -.03em;
  line-height: 1.05;
  text-decoration: none;
}
.brand > span:last-child { display: grid; }
.brand small {
  margin-top: .25rem;
  color: rgba(255,255,255,.59);
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.brand-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
}
.brand-mark svg { width: 29px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.main-nav { display: flex; gap: clamp(1rem, 3vw, 2.4rem); margin-left: auto; }
.main-nav a { color: rgba(255,255,255,.72); font-size: .8rem; font-weight: 750; text-decoration: none; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: #fff; }
.header-cta {
  padding: .62rem .9rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 850;
  text-decoration: none;
}
.header-cta:hover { background: rgba(255,255,255,.1); }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,25,20,.96) 0%, rgba(10,31,25,.86) 37%, rgba(7,26,21,.22) 66%, rgba(7,26,21,.08) 100%),
    linear-gradient(0deg, rgba(7,22,18,.47), transparent 52%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 690px) 310px;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  padding-block: 150px 105px;
}
.hero-copy { align-self: center; }
.eyebrow, .kicker, .mini-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7.3vw, 7rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .88;
}
.hero h1 em { color: var(--gold-soft); font-weight: 400; }
.hero-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 1.8rem 0 2.2rem;
  color: rgba(255,255,255,.72);
  font-size: clamp(.98rem, 1.4vw, 1.12rem);
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.4rem; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .78rem 1.1rem;
  border: 0;
  border-radius: 9px;
  font-size: .84rem;
  font-weight: 850;
  text-decoration: none;
}
.button-cream { color: var(--forest-deep); background: var(--cream); }
.button-cream:hover { background: #fff; }
.hero-link { color: rgba(255,255,255,.87); font-size: .81rem; font-weight: 800; text-decoration: none; }
.hero-link:hover { color: var(--gold-soft); }
.hero-note {
  padding: 1.45rem;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(7,29,23,.53);
  backdrop-filter: blur(9px);
}
.hero-note span { display: block; margin-bottom: .8rem; color: var(--gold-soft); font-size: .61rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.hero-note strong { font-family: Georgia, serif; font-size: 1.35rem; font-weight: 400; }
.hero-note p { margin: .75rem 0 0; color: rgba(255,255,255,.65); font-size: .78rem; }
.ai-image-label {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0;
  padding: .35rem .55rem;
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  background: rgba(7,25,20,.76);
  backdrop-filter: blur(7px);
  font-size: .63rem;
  font-weight: 800;
}
.ai-image-label span { width: 1.35rem; height: 1.35rem; display: grid; place-items: center; color: var(--forest-deep); border-radius: 50%; background: var(--gold-soft); font-size: .5rem; font-weight: 950; }

.search-section { position: relative; z-index: 4; margin-top: -46px; }
.search-panel {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  align-items: center;
  gap: 1.2rem 2rem;
  padding: 1.45rem 1.6rem 1.2rem;
  border-top: 4px solid var(--gold);
  background: #fff;
  box-shadow: var(--shadow);
}
.search-panel h2 { margin: 0; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 400; line-height: 1.1; }
.mini-kicker { margin-bottom: .35rem; font-size: .57rem; }
.product-search {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: .35rem;
  padding: .34rem;
  border: 1px solid #cbd2ce;
  border-radius: 9px;
  background: #fafaf7;
}
.product-search label { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); }
.product-search input { min-width: 0; min-height: 47px; padding: .65rem .8rem; color: var(--ink); border: 0; outline: 0; background: transparent; }
.product-search button { padding: .7rem 1rem; color: #fff; border: 0; border-radius: 7px; background: var(--forest); font-size: .79rem; font-weight: 850; cursor: pointer; }
.product-search button:hover { background: var(--forest-deep); }
.quick-searches { grid-column: 2; display: flex; flex-wrap: wrap; gap: .4rem .85rem; color: var(--muted); font-size: .68rem; }
.quick-searches a { color: var(--forest); font-weight: 800; text-underline-offset: 3px; }

.section { padding: 110px 0; }
.section-head { margin-bottom: 3rem; }
.section-head-split { display: grid; grid-template-columns: 1.15fr .7fr; align-items: end; gap: 5rem; }
.section-head-split > p { margin: 0; color: var(--muted); font-size: .9rem; }
.section-head h2,
.compass h2,
.facts h2,
.closing h2,
.inner-hero h1,
.article-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.7vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1;
}
.world-grid { display: grid; grid-template-columns: repeat(6,1fr); grid-auto-rows: 295px; gap: 1rem; }
.world-card {
  position: relative;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 1.4rem;
  color: #fff;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}
.world-card:nth-child(4), .world-card:nth-child(5) { grid-column: span 3; }
.world-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(18,41,33,.2); }
.world-card::before { content: ""; position: absolute; inset: 0; opacity: .28; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.7), transparent 32%), repeating-linear-gradient(125deg, transparent 0 17px, rgba(255,255,255,.08) 18px); }
.world-card > * { position: relative; z-index: 1; }
.world-card.coffee { background: var(--coffee); }
.world-card.tea { background: var(--tea); }
.world-card.wine { background: var(--wine); }
.world-card.whisky { background: #8b5b2d; }
.world-card.alcoholfree { background: var(--water); }
.world-no { position: absolute; top: 1rem; right: 1.1rem; color: rgba(255,255,255,.55); font-size: .63rem; font-weight: 800; }
.world-symbol { color: rgba(255,255,255,.7); font-family: Georgia, serif; font-size: 2.1rem; }
.world-card small { font-size: .57rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; opacity: .7; }
.world-card h3 { margin: .25rem 0 .4rem; font-family: Georgia, serif; font-size: 2rem; font-weight: 400; }
.world-card p { max-width: 300px; margin: 0; color: rgba(255,255,255,.7); font-size: .76rem; }
.world-card b { font-size: .69rem; }

.compass { color: #fff; background: var(--forest-deep); }
.compass-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(4rem,9vw,8rem); }
.compass-intro > p:not(.kicker) { margin: 1.5rem 0 0; color: rgba(255,255,255,.63); font-size: .91rem; }
.compass-steps { display: grid; }
.compass-steps article { display: grid; grid-template-columns: 50px 1fr; gap: 1.2rem; padding: 1.65rem 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.compass-steps article:first-child { padding-top: 0; }
.compass-steps article > span { color: var(--gold); font-family: Georgia, serif; font-size: 1.1rem; }
.compass-steps h3 { margin: 0 0 .4rem; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 400; }
.compass-steps p { margin: 0; color: rgba(255,255,255,.6); font-size: .8rem; }

.facts { background: var(--cream); }
.facts-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7rem; align-items: center; }
.fact-quote { position: relative; padding: 3.5rem 2rem 2rem; border: 1px solid rgba(23,57,47,.15); background: rgba(255,255,255,.5); }
.fact-quote span { position: absolute; top: -.2rem; left: 1.2rem; color: var(--gold); font-family: Georgia, serif; font-size: 5rem; line-height: 1; }
.fact-quote p { margin: 0; font-family: Georgia, serif; font-size: clamp(1.8rem,3.2vw,2.8rem); line-height: 1.1; }
.facts-copy > p:not(.kicker) { color: var(--muted); }
.fact-links { margin: 1.5rem 0 0; padding: 0; list-style: none; }
.fact-links a { display: flex; justify-content: space-between; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--line); font-size: .78rem; font-weight: 800; text-decoration: none; }
.fact-links a:hover { color: var(--forest); }

.responsibility { padding: 28px 0; color: rgba(255,255,255,.72); background: #261c17; }
.responsibility-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center; }
.responsibility strong { color: var(--gold-soft); font-family: Georgia, serif; font-size: 1.05rem; font-weight: 400; }
.responsibility p { margin: 0; font-size: .72rem; }
.responsibility a { color: #fff; font-size: .7rem; font-weight: 850; white-space: nowrap; }
.closing { padding: 75px 0; color: #fff; background: var(--forest); }
.closing-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.closing h2 { font-size: clamp(2.4rem,4.5vw,4rem); }
.button-gold { color: var(--forest-deep); background: var(--gold-soft); }
.button-gold:hover { background: #f1d799; }

.site-footer { padding: 58px 0 24px; color: rgba(255,255,255,.66); background: #081b16; }
.footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 4rem; }
.footer-nav { display: grid; align-content: start; gap: .45rem; font-size: .72rem; }
.footer-nav strong { margin-bottom: .35rem; color: #fff; font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-nav a { text-decoration: none; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 38px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); font-size: .63rem; }

/* Themenseiten */
.breadcrumb { padding: 18px 0; color: var(--muted); font-size: .7rem; }
.breadcrumb a { font-weight: 750; }
.inner-hero { padding: 90px 0 100px; color: #fff; background: var(--forest); }
.inner-hero.coffee-theme { background: linear-gradient(125deg,#3c261d,#75523c); }
.inner-hero.tea-theme { background: linear-gradient(125deg,#36452d,#73805b); }
.inner-hero.wine-theme { background: linear-gradient(125deg,#401724,#792f40); }
.inner-hero.whisky-theme { background: linear-gradient(125deg,#3b2514,#8c5c2d); }
.inner-hero.water-theme { background: linear-gradient(125deg,#21494d,#56858a); }
.inner-hero-grid { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 5rem; }
.inner-hero .kicker { color: rgba(255,255,255,.63); }
.inner-hero h1 { font-size: clamp(4rem,8vw,7.5rem); }
.inner-hero p:not(.kicker) { margin: 0; color: rgba(255,255,255,.72); font-size: 1rem; }
.page-search { margin-top: -35px; }
.article-section { padding: 95px 0; }
.article-section.alt { background: var(--cream); }
.article-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 6rem; }
.article-lead { color: var(--muted); }
.article-lead p { margin: 1.3rem 0 0; }
.knowledge-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.knowledge-card { padding: 1.5rem; border: 1px solid var(--line); background: #fff; }
.knowledge-card span { color: var(--gold); font-size: .64rem; font-weight: 900; letter-spacing: .12em; }
.knowledge-card h3 { margin: .7rem 0 .5rem; font-family: Georgia, serif; font-size: 1.3rem; font-weight: 400; }
.knowledge-card p { margin: 0; color: var(--muted); font-size: .79rem; }
.guide-list { display: grid; }
.guide-list article { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.guide-list article > span { color: var(--gold); font-family: Georgia, serif; }
.guide-list h3 { margin: 0 0 .35rem; font-family: Georgia, serif; font-size: 1.2rem; font-weight: 400; }
.guide-list p { margin: 0; color: var(--muted); font-size: .79rem; }
.source-box { padding: 1.4rem; border-left: 3px solid var(--gold); background: var(--forest-soft); }
.source-box strong { display: block; margin-bottom: .5rem; font-family: Georgia,serif; font-size: 1.15rem; font-weight: 400; }
.source-box a { font-size: .75rem; font-weight: 800; }
.related { padding: 65px 0; color: #fff; background: var(--forest-deep); }
.related-grid { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.related h2 { margin: 0; font-family: Georgia,serif; font-size: clamp(2rem,4vw,3.2rem); font-weight: 400; }
.related-links { display: flex; flex-wrap: wrap; gap: .6rem; }
.related-links a { padding: .6rem .8rem; border: 1px solid rgba(255,255,255,.25); border-radius: 8px; font-size: .72rem; font-weight: 800; text-decoration: none; }
.related-links a:hover { background: rgba(255,255,255,.09); }
.alcohol-note { margin-top: 1.5rem; padding: 1rem; color: #fff; background: #3b251f; font-size: .74rem; }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-cta { margin-left: auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-note { display: none; }
  .search-panel { grid-template-columns: 1fr; }
  .quick-searches { grid-column: 1; }
  .world-card, .world-card:nth-child(4), .world-card:nth-child(5) { grid-column: span 3; }
  .world-card:last-child { grid-column: 2 / span 4; }
  .facts-grid, .article-grid { gap: 4rem; }
  .responsibility-inner { grid-template-columns: 1fr; gap: .7rem; }
}

@media (max-width: 740px) {
  .wrap { width: min(100% - 1.5rem,1180px); }
  .header-inner { min-height: 72px; }
  .header-cta { display: none; }
  .brand-mark { width: 40px; height: 40px; }
  .hero, .hero-inner { min-height: 680px; }
  .hero-image { object-position: 68% center; }
  .hero-overlay { background: linear-gradient(90deg,rgba(7,25,20,.95),rgba(7,25,20,.55)); }
  .hero-inner { padding-block: 120px 100px; }
  .hero h1 { font-size: clamp(4rem,17vw,5.4rem); }
  .ai-image-label { right: .75rem; bottom: 2.2rem; }
  .search-section { margin-top: -28px; }
  .search-panel { padding: 1.1rem; }
  .product-search { grid-template-columns: 1fr; border: 0; padding: 0; background: transparent; gap: .55rem; }
  .product-search input { border: 1px solid #cbd2ce; border-radius: 7px; background: #fafaf7; }
  .product-search button { min-height: 48px; }
  .section { padding: 80px 0; }
  .section-head-split, .compass-grid, .facts-grid, .inner-hero-grid, .article-grid { grid-template-columns: 1fr; gap: 2rem; }
  .world-grid { grid-template-columns: 1fr; grid-auto-rows: 245px; }
  .world-card, .world-card:nth-child(4), .world-card:nth-child(5), .world-card:last-child { grid-column: 1; }
  .fact-quote { padding: 3rem 1.4rem 1.6rem; }
  .closing-inner, .related-grid { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-main .brand { grid-column: 1 / -1; }
  .inner-hero { padding: 65px 0 80px; }
  .inner-hero h1 { font-size: clamp(4rem,18vw,6rem); }
  .page-search { margin-top: -25px; }
  .article-section { padding: 75px 0; }
  .knowledge-grid { grid-template-columns: 1fr; }
}

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