/* ============================================================
   PUB HARLEKIN — style.css
   Mobile-First | WCAG 2.1 AA | Custom Properties
   ============================================================ */

/* ---------- FONTS (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('fonts/lato-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('fonts/lato-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('fonts/lato-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  /* Colours */
  --c-bg:          #0f0d08;
  --c-bg-alt:      #1a1610;
  --c-bg-card:     #22190f;
  --c-bg-header:   #080604;
  --c-accent:      #c8922a;
  --c-accent-h:    #e8b84b;
  --c-accent-dark: #8b6914;
  --c-text:        #f2e8d5;
  --c-text-muted:  #9a8870;
  --c-border:      #2d2518;
  --c-white:       #ffffff;
  --c-black:       #000000;

  /* Typography */
  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body:    'Lato', system-ui, sans-serif;
  --fs-xs:   0.75rem;   /* 12px */
  --fs-sm:   0.875rem;  /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-md:   1.125rem;  /* 18px */
  --fs-lg:   1.375rem;  /* 22px */
  --fs-xl:   1.75rem;   /* 28px */
  --fs-2xl:  2.25rem;   /* 36px */
  --fs-3xl:  3rem;      /* 48px */
  --fs-4xl:  3.75rem;   /* 60px */

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --max-w: 1200px;
  --radius: 4px;
  --radius-lg: 12px;

  /* Header */
  --header-h: 70px;
  --logo-protrude: 28px; /* how far logo extends below nav */
}

/* ---------- RESET ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-accent);
  text-decoration: none;
}
a:hover, a:focus-visible {
  color: var(--c-accent-h);
  text-decoration: underline;
}
ul { list-style: none; }
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-text);
}

/* ---------- SKIP NAV ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  background: var(--c-accent);
  color: var(--c-black);
  font-weight: 700;
  padding: var(--sp-3) var(--sp-6);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  text-decoration: none;
}

/* ---------- FOCUS STYLES ---------- */
:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}
@media (min-width: 768px) {
  .container { padding-inline: var(--sp-8); }
}

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-3);
}
.section-title {
  font-size: clamp(var(--fs-xl), 4vw, var(--fs-2xl));
  margin-bottom: var(--sp-6);
}
.section-title--center { text-align: center; }
.section-desc {
  font-size: var(--fs-md);
  color: var(--c-text-muted);
  max-width: 65ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  text-decoration: none;
  min-height: 48px;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:focus-visible { outline-offset: 4px; }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--c-accent);
  color: var(--c-black);
  border-color: var(--c-accent);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--c-accent-h);
  border-color: var(--c-accent-h);
  color: var(--c-black);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--c-accent);
  border-color: var(--c-accent);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--c-accent);
  color: var(--c-black);
  text-decoration: none;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-bg-header);
  border-bottom: 1px solid var(--c-border);
}
/* Beer fill — rises from bottom as user scrolls */
.site-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--beer-fill, 0%);
  background: linear-gradient(180deg,
    rgba(210,145,25,0.88) 0%,
    rgba(175,100,12,0.92) 55%,
    rgba(130,65,5,0.95)   100%
  );
  z-index: 0;
  pointer-events: none;
  transition: height 0.07s ease-out;
}

/* Foam layer — floats on top of the beer fill */
.site-header::after {
  content: '';
  position: absolute;
  bottom: var(--beer-fill, 0%);
  left: 0;
  right: 0;
  height: 14px;
  opacity: var(--beer-foam-opacity, 0);
  background:
    radial-gradient(ellipse 40px 7px at  8% 55%, rgba(255,255,255,0.55) 0%, transparent 100%),
    radial-gradient(ellipse 55px 9px at 28% 45%, rgba(255,255,255,0.50) 0%, transparent 100%),
    radial-gradient(ellipse 45px 7px at 50% 60%, rgba(255,255,255,0.52) 0%, transparent 100%),
    radial-gradient(ellipse 50px 8px at 72% 40%, rgba(255,255,255,0.48) 0%, transparent 100%),
    radial-gradient(ellipse 38px 6px at 92% 55%, rgba(255,255,255,0.50) 0%, transparent 100%),
    linear-gradient(180deg, rgba(255,252,235,0.92) 0%, rgba(245,215,130,0.75) 100%);
  z-index: 0;
  pointer-events: none;
  transition: bottom 0.07s ease-out, opacity 0.15s ease;
  transform: translateY(0);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  position: relative;
  z-index: 1;
}

/* Logo — centered, extends below nav */
.header-logo-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(-1 * var(--logo-protrude));
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@keyframes logo-shimmer {
  0%   { box-shadow: 0 4px 24px rgba(0,0,0,0.6), 0 0 0 3px var(--c-accent), 0 0 12px 2px rgba(200,146,42,0.0); }
  50%  { box-shadow: 0 4px 24px rgba(0,0,0,0.6), 0 0 0 3px var(--c-accent-h), 0 0 22px 8px rgba(200,146,42,0.45); }
  100% { box-shadow: 0 4px 24px rgba(0,0,0,0.6), 0 0 0 3px var(--c-accent), 0 0 12px 2px rgba(200,146,42,0.0); }
}
.header-logo-bg {
  background: var(--c-white);
  border-radius: 50%;
  padding: var(--sp-2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.6), 0 0 0 3px var(--c-accent);
  animation: logo-shimmer 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin-top: var(--logo-protrude);
  transition: box-shadow 0.2s;
}
.header-logo-bg img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* Nav links */
.main-nav {
  display: none;
  width: 100%;
}
.main-nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--c-bg-header);
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-4) 0;
  z-index: 99;
}
.main-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}
.main-nav a {
  display: block;
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  padding: var(--sp-3) var(--sp-4);
  min-height: 44px;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.2s;
  border-radius: var(--radius);
}
.main-nav a:hover, .main-nav a:focus-visible {
  color: var(--c-accent);
  text-decoration: none;
}
.main-nav .nav-spacer { display: none; } /* hidden on mobile */

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  color: var(--c-text);
  border-radius: var(--radius);
  z-index: 101;
  transition: color 0.2s;
  margin-left: auto;
}
@media (min-width: 900px) {
  .nav-toggle { display: none; margin-left: 0; }
}
.nav-toggle:hover { color: var(--c-accent); }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Contact CTA in header (mobile hidden) */
.header-cta { display: none; }

/* Desktop nav */
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .header-cta {
    display: flex;
    align-items: center;
  }
  .main-nav {
    display: flex !important;
    position: static;
    background: transparent;
    border: none;
    padding: 0;
    width: auto;
    flex: 1;
  }
  .main-nav ul {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0;
  }
  .main-nav .nav-spacer {
    display: block;
    width: 120px; /* space for logo */
  }
  .main-nav a {
    font-size: var(--fs-xs);
    padding: var(--sp-2) var(--sp-3);
    min-height: 44px;
  }
  .header-logo-bg {
    width: 110px;
    height: 110px;
    top: calc(-1 * var(--logo-protrude));
    margin-top: var(--logo-protrude);
  }
  .header-logo-bg img { width: 86px; height: 86px; }
  :root { --logo-protrude: 36px; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}
@media (min-width: 768px) {
  .hero { min-height: 92vh; }
}
.hero-img {
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  object-fit: cover;
  object-position: center;
  filter: blur(6px);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,6,4,0.85) 0%,
    rgba(15,13,8,0.65) 50%,
    rgba(8,6,4,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--sp-24);
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-4);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--c-accent);
}
.hero h1 {
  font-size: clamp(var(--fs-2xl), 7vw, var(--fs-4xl));
  color: var(--c-white);
  margin-bottom: var(--sp-6);
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.hero-desc {
  font-size: clamp(var(--fs-base), 2.5vw, var(--fs-lg));
  color: var(--c-text);
  margin-bottom: var(--sp-8);
  max-width: 55ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}
.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: var(--c-text-muted);
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@media (max-width: 767px) {
  .hero-scroll { bottom: var(--sp-4); }
  .hours-row { font-size: var(--fs-base); }
}

/* ---------- SECTION SPACINGS ---------- */
.section {
  padding-block: var(--sp-16);
}
.section--dark { background: var(--c-bg); }
.section--alt { background: var(--c-bg-alt); }

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  gap: var(--sp-12);
  align-items: center;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid var(--c-accent);
  flex-direction: column;
  margin-bottom: var(--sp-6);
  color: var(--c-accent);
}
.about-badge .badge-num {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 1;
}
.about-badge .badge-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-text p { color: var(--c-text-muted); margin-bottom: var(--sp-4); font-size: var(--fs-md); }
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.about-image-wrap:hover img { transform: scale(1.04); }
.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--c-accent);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  pointer-events: none;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- OPENING HOURS ---------- */
.hours-grid {
  display: grid;
  gap: var(--sp-6);
}
.hours-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
}
.hours-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-accent);
}
.hours-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-4);
  color: var(--c-accent);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--sp-2);
  border-bottom: 1px solid var(--c-border);
  font-size: var(--fs-sm);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--c-text-muted); }
.hours-time { font-weight: 700; color: var(--c-text); }
.hours-time.closed { color: var(--c-text-muted); font-weight: 400; font-style: italic; }
.hours-note {
  margin-top: var(--sp-6);
  padding: var(--sp-4);
  background: rgba(200,146,42,0.1);
  border-left: 3px solid var(--c-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}
@media (min-width: 600px) {
  .hours-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .hours-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- GALLERY / SLIDESHOW ---------- */
.gallery-section { position: relative; overflow: hidden; }
.gallery-section .section-title--center { margin-bottom: var(--sp-4); }
.gallery-section .section-desc { text-align: center; margin-inline: auto; margin-bottom: var(--sp-8); }

/* Slideshow */
.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--sp-6);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slideshow-controls {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--sp-2);
  z-index: 5;
}
.slideshow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
  min-width: 10px;
  min-height: 10px;
}
.slideshow-dot.active,
.slideshow-dot:hover {
  background: var(--c-accent);
  transform: scale(1.3);
}
.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: var(--c-white);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s;
  border: none;
}
.slideshow-btn:hover { background: var(--c-accent); color: var(--c-black); }
.slideshow-btn.prev { left: var(--sp-3); }
.slideshow-btn.next { right: var(--sp-3); }

/* ---------- SOCIAL CARDS ---------- */
.social-grid {
  display: grid;
  gap: var(--sp-6);
}
@media (min-width: 600px) {
  .social-grid { grid-template-columns: 1fr 1fr; }
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: var(--sp-6) var(--sp-6);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  text-decoration: none;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  min-height: 180px;
}
@media (min-width: 768px) {
  .social-card {
    padding: var(--sp-12) var(--sp-8);
    min-height: 280px;
    gap: var(--sp-4);
  }
}
.social-card:hover {
  transform: translateY(-5px);
  text-decoration: none;
}
.social-card--ig {
  background: linear-gradient(145deg, #1a0f1a 0%, #221020 100%);
  border-color: #c13584;
}
.social-card--ig:hover {
  border-color: #e1306c;
  box-shadow: 0 8px 40px rgba(225, 48, 108, 0.25);
}
.social-card--fb {
  background: linear-gradient(145deg, #0f1520 0%, #101d30 100%);
  border-color: #1877f2;
}
.social-card--fb:hover {
  border-color: #4499ff;
  box-shadow: 0 8px 40px rgba(24, 119, 242, 0.25);
}
.social-card-icon {
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
}
.social-card:hover .social-card-icon { opacity: 1; transform: scale(1.1); }
.social-card--ig .social-card-icon { color: #e1306c; }
.social-card--fb .social-card-icon { color: #1877f2; }
.social-card-handle {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--c-text);
}
.social-card-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.social-card-cta {
  display: inline-block;
  margin-top: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.social-card--ig .social-card-cta {
  background: rgba(225, 48, 108, 0.15);
  color: #e1306c;
  border: 1px solid #c13584;
}
.social-card--ig:hover .social-card-cta {
  background: #e1306c;
  color: var(--c-white);
}
.social-card--fb .social-card-cta {
  background: rgba(24, 119, 242, 0.15);
  color: #4499ff;
  border: 1px solid #1877f2;
}
.social-card--fb:hover .social-card-cta {
  background: #1877f2;
  color: var(--c-white);
}


/* ---------- TEAM ---------- */
.team-grid {
  display: grid;
  gap: var(--sp-6);
}
.team-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.3s;
}
.team-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px);
}
.team-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
}
.team-card-body {
  padding: var(--sp-6);
}
.team-card-body h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-2);
}
.team-card-body p { color: var(--c-text-muted); font-size: var(--fs-sm); }
@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- NEWS ---------- */
.news-grid {
  display: grid;
  gap: var(--sp-6);
}
.news-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.3s;
}
.news-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px);
}
.news-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.news-card-body { padding: var(--sp-6); }
.news-date {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-3);
}
.news-card-body h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
}
.news-card-body p { color: var(--c-text-muted); font-size: var(--fs-sm); }
@media (min-width: 768px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding-block: var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-text);
  cursor: pointer;
  background: none;
  border: none;
  min-height: 44px;
  transition: color 0.2s;
}
.faq-question:hover, .faq-question:focus-visible { color: var(--c-accent); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--c-accent);
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding-bottom: var(--sp-6);
  color: var(--c-text-muted);
  font-size: var(--fs-md);
  line-height: 1.8;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  gap: var(--sp-8);
}
.contact-info-list { display: flex; flex-direction: column; gap: var(--sp-6); }
.contact-info-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200,146,42,0.15);
  border: 1px solid var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-accent);
}
.contact-info-item h3 {
  font-size: var(--fs-sm);
  font-family: var(--ff-body);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-1);
}
.contact-info-item p, .contact-info-item a {
  font-size: var(--fs-md);
  color: var(--c-text);
}
.contact-info-item a:hover { color: var(--c-accent-h); }
.map-placeholder {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-12) var(--sp-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  text-align: center;
  min-height: 300px;
}
.map-placeholder svg { color: var(--c-accent); opacity: 0.6; }
.map-placeholder p { color: var(--c-text-muted); font-size: var(--fs-sm); }
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; align-items: start; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--c-bg-header);
  border-top: 1px solid var(--c-border);
  padding-top: var(--sp-16);
}
.footer-top {
  display: grid;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--c-border);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  text-decoration: none;
}
.footer-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: var(--c-white);
  border-radius: 50%;
  padding: var(--sp-1);
}
.footer-brand-name {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--c-text);
}
.footer-tagline {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  max-width: 35ch;
  margin-bottom: var(--sp-6);
}
.footer-social {
  display: flex;
  gap: var(--sp-3);
}
.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: rgba(200,146,42,0.1);
  text-decoration: none;
}

.footer-nav h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-4);
}
.footer-nav ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-nav a {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-block: var(--sp-1);
}
.footer-nav a:hover { color: var(--c-accent); }

@media (min-width: 768px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: center;
  text-align: center;
  padding-block: var(--sp-6);
}
.footer-bottom p { font-size: var(--fs-xs); color: var(--c-text-muted); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  align-items: center;
  justify-content: center;
}
.footer-legal a, .footer-legal button {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2) 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
  font-family: inherit;
}
.footer-legal a:hover,
.footer-legal button:hover { color: var(--c-accent); text-decoration: underline; }
.footer-legal .sep {
  color: var(--c-border);
  font-size: var(--fs-xs);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer-legal { justify-content: flex-end; }
}

/* ---------- COOKIE CONSENT BANNER ---------- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(15, 13, 8, 0.97);
  border-top: 1px solid var(--c-border);
  padding: var(--sp-4) var(--sp-4);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1000px;
  margin-inline: auto;
  display: grid;
  gap: var(--sp-3);
}
.cookie-text h2 {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-1);
}
.cookie-text p {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  max-width: 70ch;
}
.cookie-text a { color: var(--c-accent); }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--c-border);
  background: transparent;
  color: var(--c-text-muted);
  min-height: 34px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.cookie-btn:hover { color: var(--c-text); border-color: var(--c-text-muted); }
.cookie-btn--accent {
  background: var(--c-accent);
  color: var(--c-black);
  border-color: var(--c-accent);
}
.cookie-btn--accent:hover { background: var(--c-accent-h); border-color: var(--c-accent-h); color: var(--c-black); }
.cookie-details {
  border-top: 1px solid var(--c-border);
  padding-top: var(--sp-4);
  display: none;
}
.cookie-details.open { display: block; }
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--sp-3);
  border-bottom: 1px solid var(--c-border);
  font-size: var(--fs-sm);
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category label { cursor: pointer; color: var(--c-text-muted); }
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute;
  inset: 0;
  background: var(--c-border);
  border-radius: 24px;
  transition: background 0.3s;
  cursor: pointer;
}
.cookie-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-white);
  transition: transform 0.3s;
}
.cookie-toggle input:checked + .cookie-slider { background: var(--c-accent); }
.cookie-toggle input:checked + .cookie-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-slider { opacity: 0.5; cursor: not-allowed; }
@media (min-width: 768px) {
  .cookie-inner { grid-template-columns: 1fr auto; align-items: center; }
  .cookie-actions { flex-direction: column; align-items: flex-end; }
}

/* ---------- SUBPAGES ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--c-bg-header) 0%, var(--c-bg-alt) 100%);
  padding-block: var(--sp-16) var(--sp-12);
  border-bottom: 1px solid var(--c-border);
}
.page-hero h1 { font-size: clamp(var(--fs-xl), 5vw, var(--fs-3xl)); margin-bottom: var(--sp-3); }
.page-hero p { color: var(--c-text-muted); font-size: var(--fs-md); }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-6);
}
.breadcrumb a { color: var(--c-text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb-sep { color: var(--c-border); }

.prose {
  max-width: 72ch;
  margin-inline: auto;
}
.prose h2 {
  font-size: clamp(var(--fs-lg), 3vw, var(--fs-xl));
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-4);
  color: var(--c-accent);
}
.prose h3 {
  font-size: var(--fs-md);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}
.prose p {
  color: var(--c-text-muted);
  margin-bottom: var(--sp-4);
  font-size: var(--fs-md);
}
.prose ul {
  list-style: disc;
  padding-left: var(--sp-6);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-4);
}
.prose li { margin-bottom: var(--sp-2); font-size: var(--fs-md); }
.prose a { color: var(--c-accent); }
.prose a:hover { color: var(--c-accent-h); }
.prose strong { color: var(--c-text); }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--sp-6);
  font-size: var(--fs-sm);
}
.prose th {
  background: var(--c-bg-card);
  color: var(--c-text);
  font-weight: 700;
  text-align: left;
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--c-border);
}
.prose td {
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
}

/* ---------- 404 PAGE ---------- */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-16) var(--sp-4);
}
.error-code {
  font-family: var(--ff-heading);
  font-size: 8rem;
  line-height: 1;
  color: var(--c-accent);
  opacity: 0.3;
  margin-bottom: var(--sp-4);
}
.error-page h1 { font-size: var(--fs-2xl); margin-bottom: var(--sp-4); }
.error-page p { color: var(--c-text-muted); margin-bottom: var(--sp-8); max-width: 45ch; margin-inline: auto; }
.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  margin-top: var(--sp-6);
}

/* ---------- DIVIDER ---------- */
.divider {
  border: none;
  border-top: 1px solid var(--c-border);
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
