/* ── Fürstliches Waldecker – Subpage Styles ──────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #C9A84C;
  --gold-light:  #E2C87A;
  --gold-dark:   #9A7232;
  --forest:      #1A2E1E;
  --forest-mid:  #2C4A30;
  --cream:       #F5F0E8;
  --cream-dark:  #EDE7D9;
  --dark:        #0D1810;
  --text:        #2A2A2A;
  --text-light:  #5A5A5A;
  --white:       #FFFFFF;

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', system-ui, sans-serif;
  --container:    1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Utility ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-2 { transition-delay: 0.25s; }

/* ── Navigation ──────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13,24,16,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.2);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
  text-decoration: none;
}
.nav-logo .logo-top {
  font-family: var(--font-elegant);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.nav-logo .logo-main {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }

/* ── Mobile Nav ───────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 1;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }

  nav.menu-open {
    z-index: 500;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav-toggle { display: flex; z-index: 101; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* ── Product Hero ─────────────────────────────────────────── */
.product-hero {
  position: relative;
  height: 90vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.product-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,24,16,0.35) 0%,
    rgba(13,24,16,0.55) 50%,
    rgba(13,24,16,0.92) 100%
  );
}

.urtyp-overlay {
  background: linear-gradient(
    to bottom,
    rgba(5,12,8,0.40) 0%,
    rgba(5,12,8,0.62) 50%,
    rgba(5,12,8,0.96) 100%
  );
}

.hero-bottle-float {
  position: absolute;
  right: 10%;
  bottom: 0;
  height: 80%;
  width: auto;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(-12px 0 40px rgba(0,0,0,0.7));
  animation: bottleFloat 6s ease-in-out infinite alternate;
}

@keyframes bottleFloat {
  from { transform: translateY(0px); }
  to   { transform: translateY(-12px); }
}

.product-hero-content {
  position: relative;
  z-index: 3;
  padding: clamp(3rem,6vw,5rem);
  max-width: 680px;
}

.product-animal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.product-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.product-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.product-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.product-tagline {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

.hero-scroll-line {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
  z-index: 3;
}

@keyframes scrollPulse {
  0%,100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

/* ── Product Intro ────────────────────────────────────────── */
.product-intro {
  background: var(--cream);
  padding: clamp(5rem,9vw,8rem) 0;
}

.dark-intro {
  background: var(--dark);
}

.product-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.product-intro-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.dark-intro .product-intro-text h2 {
  color: var(--white);
}

.product-intro-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.product-intro-text p {
  font-family: var(--font-elegant);
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.dark-intro .product-intro-text p {
  color: rgba(255,255,255,0.7);
}

.product-specs {
  background: var(--forest);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dark-intro .product-specs {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
}

.spec-block {
  display: flex;
  flex-direction: column;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  gap: 0.2rem;
}

.spec-label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.spec-value {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  color: var(--white);
}

.btn-product {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--gold);
  color: var(--dark);
  padding: 1rem 2rem;
  transition: background 0.3s;
  align-self: flex-start;
}

.btn-product:hover { background: var(--gold-light); }

/* ── Product Visual ──────────────────────────────────────── */
.product-visual {
  position: relative;
  height: 65vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.urtyp-visual img {
  object-position: center 20%;
  filter: brightness(0.7) saturate(0.85);
}

.product-visual-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,24,16,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

blockquote {
  font-family: var(--font-elegant);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  text-align: center;
  max-width: 700px;
  line-height: 1.6;
  position: relative;
}

blockquote::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: -1.5rem;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  font-family: var(--font-serif);
}

/* ── Taste Section ────────────────────────────────────────── */
.product-taste {
  background: var(--cream);
  padding: clamp(4rem,8vw,7rem) 0;
}

.dark-taste {
  background: var(--forest);
}

.taste-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.taste-item {
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  background: var(--white);
}

.dark-taste .taste-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}

.taste-icon {
  font-size: 1rem;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.8rem;
}

.taste-item h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.6rem;
}

.dark-taste .taste-item h4 { color: var(--white); }

.taste-item p {
  font-family: var(--font-elegant);
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
}

.dark-taste .taste-item p { color: rgba(255,255,255,0.6); }

/* ── CTA Section ──────────────────────────────────────────── */
.product-cta {
  background: var(--cream-dark);
  padding: clamp(4rem,8vw,7rem) 0;
  text-align: center;
}

.dark-cta {
  background: var(--dark);
}

.cta-inner {
  max-width: 540px;
  margin: 0 auto;
}

.cta-logo {
  width: 80px;
  margin-bottom: 1.5rem;
  filter: brightness(0) saturate(100%) invert(65%) sepia(50%) saturate(400%) hue-rotate(15deg);
}

.product-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.8rem;
}

.dark-cta h2 { color: var(--white); }

.product-cta p {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 2rem;
}

.dark-cta p { color: rgba(255,255,255,0.6); }

.btn-outline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--forest);
  color: var(--forest);
  padding: 1rem 2.2rem;
  transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
}

.dark-cta .btn-outline {
  border-color: var(--gold);
  color: var(--gold-light);
}

.dark-cta .btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-top {
  font-family: var(--font-elegant);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
}

.footer-brand .logo-main {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-family: var(--font-elegant);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul a {
  font-family: var(--font-elegant);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .product-intro-inner { grid-template-columns: 1fr; gap: 3rem; }
  .taste-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .nav-links { display: none; }
  .hero-bottle-float { height: 55%; right: 0; }
}

@media (max-width: 600px) {
  .taste-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .product-hero { height: 80vh; }
}

/* ── WCAG 2.4.7 – Focus Visible ──────────────────────────── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ── WCAG 1.4.3 – Kontrastkorrekturen ────────────────────── */

/* Subpage product tagline war 0.7 opacity */
.product-tagline { color: rgba(255,255,255,0.88); }

/* dark-intro Fließtext war 0.7 */
.dark-intro .product-intro-text p { color: rgba(255,255,255,0.88); }

/* ── WCAG 2.3.1 – prefers-reduced-motion ─────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal.revealed, .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  @keyframes bottleFloat { from { transform: none; } to { transform: none; } }
  @keyframes scrollPulse  { 0%, 100% { opacity: 1; } }
}
