/* =========================================================
   Zeydler GmbH · Stylesheet
   ========================================================= */

:root {
  --navy: #0B1D3A;
  --navy-soft: #142A56;
  --gold: #C89A43;
  --gold-light: #D7B36C;
  --gold-deep: #A07A2E;
  --beige: #EBDCC9;
  --ivory: #F7F4EF;
  --alabaster: #FFFFFF;
  --stone: #DCD6CC;
  --line: #DCD6CC;
  --muted: #7A7A7A;
  --text: #2A2D34;
  --text-soft: #4A4D54;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: italic; color: var(--gold); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.gold-line {
  width: 56px; height: 2px;
  background: var(--gold);
  margin: 16px 0 22px;
}
.gold-line.center { margin: 16px auto 22px; }

/* ============= TOP BAR ============= */
.topbar {
  background: var(--navy);
  color: var(--ivory);
  padding: 9px 0;
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.topbar-info { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.topbar-info a {
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0.85; transition: opacity 0.2s, color 0.2s;
  color: var(--alabaster);
}
.topbar-info a:hover { opacity: 1; color: var(--gold-light); }
.topbar-info .ic { color: var(--gold); }
.topbar-cta { display: flex; align-items: center; gap: 18px; }
.topbar-cta a { opacity: 0.85; color: var(--alabaster); }
.topbar-cta a:hover { opacity: 1; color: var(--gold-light); }
@media (max-width: 720px) {
  .topbar-info a:nth-child(3) { display: none; }
  .topbar-cta a:not(.topbar-lang-link) { display: none; }
}

/* ============= HEADER / NAV ============= */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,244,239,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; gap: 32px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 58px; width: auto; }
.nav-menu {
  display: flex; gap: 28px; align-items: center;
  list-style: none;
}
.nav-menu a {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text); transition: color 0.2s;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute; bottom: -6px; left: 0; right: 0;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.nav-menu a:hover { color: var(--gold-deep); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }

.nav-shops { display: flex; gap: 10px; }
.nav-shop {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 20px 11px 18px;
  font-weight: 700; letter-spacing: 0.06em;
  transition: all 0.25s ease;
  box-shadow: 0 3px 0 rgba(0,0,0,0.18);
}
.nav-shop-primary { background: var(--gold); color: var(--navy); }
.nav-shop-primary:hover { background: var(--gold-deep); color: var(--alabaster); }
.nav-shop-rewe { background: var(--navy); color: var(--gold); border: 1px solid var(--gold); }
.nav-shop-rewe:hover { background: var(--gold); color: var(--navy); }
.nav-shop .shop-icon { width: 22px; height: 22px; flex-shrink: 0; }
.nav-shop-stack { display: flex; flex-direction: column; gap: 3px; }
.nav-shop-text { font-size: 13px; text-transform: uppercase; }
.nav-shop-sub { font-size: 9px; opacity: 0.75; letter-spacing: 0.1em; }

.mobile-toggle {
  display: none; background: transparent; border: 0;
  cursor: pointer; padding: 8px;
  position: relative; z-index: 200;
}
.mobile-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--navy); margin: 6px 0;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-menu {
    position: fixed; top: 0; right: -100%;
    flex-direction: column; align-items: flex-start;
    width: 320px; max-width: 88vw; height: 100vh;
    background: var(--alabaster);
    padding: 90px 36px 36px;
    box-shadow: -20px 0 60px rgba(11,29,58,0.18);
    transition: right 0.35s ease;
    z-index: 150; overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-menu li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav-menu a { display: block; padding: 16px 0; font-size: 13px; }
  .nav-menu a::after { display: none; }
  .mobile-toggle { display: block; }
  .nav-shop { padding: 10px 16px; font-size: 11px; }
  body.menu-open { overflow: hidden; }
}
@media (max-width: 600px) {
  .nav-shop .nav-shop-text, .nav-shop .nav-shop-sub { display: none; }
  .nav-shop { padding: 10px 12px; gap: 0; }
  .nav-shops { gap: 6px; }
  .nav-logo-img { height: 42px; }
}

/* ============= HERO ============= */
.hero {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--beige) 100%);
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  font-size: clamp(54px, 9vw, 120px);
  line-height: 0.95;
  margin: 24px 0;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  display: inline;
}
.hero .dot { color: var(--gold); }
.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 24px 0 36px;
}
.hero-lead {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
@media (max-width: 720px) {
  .hero { padding: 60px 0 70px; }
  .hero h1 { font-size: 48px; }
  .hero-tagline { font-size: 11px; letter-spacing: 0.3em; }
  .hero-lead { font-size: 15px; }
}

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  transition: all 0.25s ease;
  border: none; cursor: pointer;
}
.btn-primary { background: var(--navy); color: var(--gold); }
.btn-primary:hover { background: var(--gold); color: var(--navy); gap: 16px; }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--gold); gap: 16px; }

/* ============= INTRO ============= */
.intro {
  padding: 100px 0;
  background: var(--alabaster);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.intro-grid h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 16px 0;
}
.intro p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}
.intro strong { color: var(--navy); }
@media (max-width: 880px) {
  .intro { padding: 60px 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============= BRANDS ============= */
.brands {
  padding: 100px 0;
  background: var(--ivory);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 16px 0;
}
.section-head p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.6;
}
.brands-row {
  margin-bottom: 56px;
}
.brands-row-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.brands-row-head h3 {
  font-size: 24px;
  font-style: italic;
}
.brands-row-head .row-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.brands-grid-3 { grid-template-columns: repeat(3, 1fr); }
.brand-card {
  background: var(--alabaster);
  border: 1px solid var(--line);
  padding: 32px 24px 28px;
  display: flex; flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.brand-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(11,29,58,0.12);
}
.brand-logo {
  height: 80px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  padding: 8px;
}
.brand-logo img { max-height: 70px; max-width: 100%; width: auto; }
.brand-logo.bg-white {
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.brand-card h4 {
  font-size: 22px;
  margin-bottom: 4px;
  color: var(--navy);
}
.brand-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.brand-card p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.brand-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.25s, color 0.25s;
}
.brand-link:hover { gap: 10px; color: var(--navy); }
@media (max-width: 1024px) {
  .brands-grid, .brands-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .brands-grid, .brands-grid-3 { grid-template-columns: 1fr; }
  .brands { padding: 60px 0; }
}

/* ============= AWARDS ============= */
.awards {
  padding: 100px 0;
  background: var(--navy);
  color: var(--alabaster);
}
.awards .section-head h2, .awards .section-head { color: var(--alabaster); }
.awards .section-head h2 { color: var(--alabaster); }
.awards .section-head p { color: rgba(255,255,255,0.75); }
.awards-year {
  margin-bottom: 48px;
}
.awards-year-head {
  display: flex; align-items: baseline; gap: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(200,154,67,0.3);
  padding-bottom: 14px;
}
.awards-year-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 48px;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.awards-year-info {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.award-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,154,67,0.25);
  padding: 24px;
  transition: border-color 0.3s, background 0.3s;
}
.award-card:hover {
  border-color: var(--gold);
  background: rgba(200,154,67,0.08);
}
.award-medal {
  font-size: 28px;
  margin-bottom: 8px;
}
.award-tier {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.award-card h4 {
  font-size: 18px;
  color: var(--alabaster);
  margin-bottom: 6px;
  font-style: italic;
  font-weight: 500;
}
.award-card .category {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.award-card .meta {
  font-size: 11px;
  color: rgba(200,154,67,0.85);
}
@media (max-width: 768px) {
  .awards { padding: 60px 0; }
  .awards-grid { grid-template-columns: 1fr; }
  .awards-year-num { font-size: 36px; }
}

/* ============= QUALITY STRIP ============= */
.quality {
  padding: 100px 0;
  background: var(--beige);
}
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.quality-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin: 16px 0;
}
.quality-text p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}
.quality-text strong { color: var(--navy); }
.quality-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quality-logo-card {
  background: var(--alabaster);
  border: 1px solid var(--line);
  padding: 20px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 12px;
}
.quality-logo-card img {
  height: 70px; width: auto; object-fit: contain;
}
.quality-logo-card .label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 880px) {
  .quality { padding: 60px 0; }
  .quality-grid { grid-template-columns: 1fr; gap: 36px; }
  .quality-logos { grid-template-columns: repeat(2, 1fr); }
}

/* ============= ABOUT / INKLUSION ============= */
.about {
  padding: 100px 0;
  background: var(--alabaster);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.about-block h3 {
  font-size: 26px;
  font-style: italic;
  margin: 12px 0;
}
.about-block p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 14px;
}
.about-block strong { color: var(--navy); }
.partner-logos {
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.partner-logos img {
  height: 40px; width: auto;
  opacity: 0.7; transition: opacity 0.3s;
  filter: grayscale(0.3);
}
.partner-logos img:hover { opacity: 1; filter: none; }
@media (max-width: 880px) {
  .about { padding: 60px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============= CONTACT ============= */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--alabaster);
  text-align: center;
}
.contact .section-head h2, .contact h2 { color: var(--alabaster); }
.contact .section-head p { color: rgba(255,255,255,0.8); }
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,154,67,0.3);
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.contact-card .ic {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 14px;
}
.contact-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-card p {
  font-size: 15px;
  color: var(--alabaster);
  line-height: 1.5;
}
.contact-card a { color: var(--alabaster); }
.contact-card a:hover { color: var(--gold); }
@media (max-width: 720px) {
  .contact { padding: 60px 0; }
  .contact-info { grid-template-columns: 1fr; }
}

/* ============= FOOTER ============= */
footer {
  padding: 70px 0 30px;
  background: #050E1F;
  color: var(--ivory);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 60px; margin-bottom: 20px; }
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-brand .address {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.footer-legal-links {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-legal-links a:hover { color: var(--gold); }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============= COOKIE BANNER ============= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy);
  color: var(--alabaster);
  border-top: 2px solid var(--gold);
  padding: 22px 0;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.18);
  transform: translateY(110%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px; align-items: center;
}
.cookie-text strong {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  display: block; margin-bottom: 4px;
}
.cookie-text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
}
.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.ck-btn {
  padding: 10px 18px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--alabaster);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; transition: background 0.25s, color 0.25s;
}
.ck-btn-decline:hover { background: rgba(200,154,67,0.18); }
.ck-btn-accept { background: var(--gold); color: var(--navy); }
.ck-btn-accept:hover { background: var(--alabaster); color: var(--navy); }
@media (max-width: 720px) {
  .cookie-content { grid-template-columns: 1fr; gap: 14px; }
  .cookie-actions { width: 100%; }
  .ck-btn { flex: 1; padding: 12px 10px; }
}

/* ============= LEGAL PAGES (Impressum, Datenschutz, AGB) ============= */
.legal-hero {
  background: var(--navy);
  color: var(--alabaster);
  padding: 80px 0 60px;
  text-align: center;
}
.legal-hero h1 {
  color: var(--alabaster);
  font-size: clamp(36px, 5vw, 64px);
  margin: 12px 0;
}
.legal-hero .eyebrow { color: var(--gold); }
.legal-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  letter-spacing: 0.08em;
}
.legal-content {
  padding: 80px 0 100px;
  background: var(--alabaster);
}
.legal-content h2 {
  font-size: 26px;
  font-style: italic;
  margin: 40px 0 14px;
  color: var(--navy);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 18px;
  margin: 24px 0 8px;
  color: var(--navy);
  font-weight: 500;
}
.legal-content p, .legal-content li {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-content ul, .legal-content ol {
  margin: 12px 0 16px 20px;
}
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--navy); font-weight: 600; }
.legal-content a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--navy); }
.legal-meta {
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  padding: 16px 22px;
  margin: 24px 0;
  font-size: 13px;
  color: var(--text-soft);
}
@media (max-width: 720px) {
  .legal-hero { padding: 60px 0 40px; }
  .legal-content { padding: 50px 0 70px; }
  .legal-content h2 { font-size: 22px; }
}
