/* ============================================================
   RSM ART — Gothic Style Website
   WCAG 2.1 AA konform | Responsive | DE/EN bilingual
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --bg-primary:    #0a0a0a;
  --bg-secondary:  #141414;
  --bg-card:       #1c1c1c;
  --bg-nav:        rgba(8, 8, 8, 0.97);
  --text-primary:  #e8e0d5;
  --text-secondary:#a89880;
  --text-muted:    #6b6055;
  --accent-gold: #c40c34;
  --accent-gold-h: #c12c4c;
  --accent-purple: #7b3fa0;
  --accent-purple-h:#9b5fc0;
  --border:        rgba(201, 168, 76, 0.2);
  --border-strong: rgba(201, 168, 76, 0.5);
  --shadow:        0 4px 24px rgba(0,0,0,0.6);
  --shadow-card:   0 2px 16px rgba(0,0,0,0.5);
  --radius:        4px;
  --radius-lg:     8px;
  --nav-height:    70px;
  --max-width:     1200px;
  --transition:    0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-gold); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus { color: var(--accent-gold-h); }
ul { list-style: none; }

/* ── Accessibility: Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent-gold);
  color: #000;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

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

/* ── Top Bar ── */
.top-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 0.4rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar__social { display: flex; gap: 1rem; align-items: center; }
.top-bar__social a {
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.top-bar__social a:hover { color: var(--accent-gold); }
.top-bar__social svg { width: 18px; height: 18px; fill: currentColor; }

/* ── Language Switcher ── */
.lang-switcher {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}
.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.lang-btn:hover,
.lang-btn[aria-pressed="true"] {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #000;
}

/* ── Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-logo span {
  display: none; /* shown as fallback via alt */
}

.nav-menu {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav-menu a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.08);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero / Page Header ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(123,63,160,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    var(--bg-primary);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__content {
  position: relative;
  max-width: 800px;
}
.hero__eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
}
.hero__title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.8);
}
.hero__title span { color: var(--accent-gold); }
.hero__quote {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.6rem;
  font-weight: 300;
}
.hero__quote-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.hero__text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 640px;
  margin: 1.5rem auto 2.5rem;
  line-height: 1.9;
}
.hero__dark-quote {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--accent-purple-h);
  margin: 1.5rem 0 2.5rem;
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--accent-purple);
  text-align: left;
  background: rgba(123,63,160,0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.hero__cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent-gold);
  color: #000;
}
.btn-primary:hover {
  background: var(--accent-gold-h);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  color: var(--accent-gold-h);
  transform: translateY(-1px);
}
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.8rem; }

/* ── Section Basics ── */
section { padding: 5rem 1.5rem; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* Divider */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 1.2rem auto;
}

/* ── About Section ── */
.about { background: var(--bg-secondary); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__text h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}
.about__text h2 span { color: var(--accent-gold); }
.about__text p {
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.9;
}
.about__list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.about__list li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding-left: 1.4rem;
  position: relative;
}
.about__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 0.65rem;
  top: 0.35em;
}
.about__image {
  position: relative;
}
.about__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  background: var(--bg-card);
}
.about__image::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) + 4px);
  pointer-events: none;
}

/* ── Categories Grid ── */
.categories { background: var(--bg-primary); }
.categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.category-card__img {
  height: 200px;
  overflow: hidden;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover .category-card__img img { transform: scale(1.05); }
.category-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.category-card__label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.category-card__title {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.category-card__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  flex: 1;
  line-height: 1.7;
}
.category-card__footer {
  margin-top: 1.2rem;
}

/* ── Product Grid (subpages) ── */
.products { background: var(--bg-primary); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}
.product-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__img--placeholder {
  color: var(--text-muted);
  font-size: 3rem;
}
.product-card__body { padding: 1.2rem 1.4rem 1.4rem; }
.product-card__title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.product-card__desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ── Gallery Grid ── */
.gallery { background: var(--bg-secondary); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.07); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 5000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.lightbox__close:hover { background: var(--accent-gold); color: #000; border-color: var(--accent-gold); }

/* ── Page Hero (Subpages) ── */
.page-hero {
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(123,63,160,0.12) 0%, transparent 70%),
    var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.page-hero__title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.page-hero__subtitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.page-hero__desc {
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.9;
}

/* Breadcrumb */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent-gold); }
.breadcrumb span { color: var(--text-muted); }

/* ── Intro Block (subpages) ── */
.intro-block {
  background: var(--bg-primary);
  padding: 3rem 1.5rem;
  text-align: center;
}
.intro-block__inner {
  max-width: 800px;
  margin: 0 auto;
}
.intro-block p {
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.9;
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

/* ── Contact Section ── */
.contact { background: var(--bg-secondary); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact__info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.contact__info p {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.contact__links { display: flex; flex-direction: column; gap: 0.75rem; }
.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.contact__link svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.contact__link:hover { color: var(--accent-gold); }

/* Form */
.form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.form-label .required { color: var(--accent-gold); margin-left: 2px; }
.form-input,
.form-textarea,
.form-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }
.form-checkbox-group {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.form-checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--accent-gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}
.form-checkbox-group label {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.form-checkbox-group label a { color: var(--accent-gold); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.form-error {
  font-size: 0.78rem;
  color: #e05555;
  display: none;
}
.form-success {
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  color: var(--accent-gold);
  display: none;
}

/* ── Footer ── */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand img {
  height: 44px;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social a svg { width: 16px; height: 16px; fill: currentColor; }
.footer-social a:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(201,168,76,0.08);
}
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--accent-gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-legal a {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.footer-legal a:hover { color: var(--accent-gold); }

/* ── Ornamental Elements ── */
.ornament {
  text-align: center;
  color: var(--accent-gold);
  opacity: 0.4;
  font-size: 1.2rem;
  letter-spacing: 0.5em;
  margin: 0.5rem 0;
}

/* ── Highlight Band ── */
.highlight-band {
  background: linear-gradient(135deg, rgba(123,63,160,0.15), rgba(201,168,76,0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.highlight-band blockquote {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-style: italic;
  color: var(--accent-purple-h);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Scroll-to-top ── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent-gold);
  color: #000;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 800;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-2px); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__image { order: -1; }
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  section { padding: 3.5rem 1rem; }

  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem;
    gap: 0.25rem;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 0.75rem 1rem; }

  .hero { min-height: 80vh; padding: 5rem 1rem 3rem; }
  .hero__cta-group { flex-direction: column; align-items: center; }

  .categories__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .products__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .categories__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .top-bar { flex-direction: column; align-items: flex-start; }
}

/* ── 4-Language Switcher (flags) ── */
.lang-switcher { gap: 0.25rem; }
.lang-btn { font-size: 0.75rem; padding: 0.2rem 0.55rem; }

/* ── Accessibility Widget ── */
.a11y-trigger {
  position: fixed;
  bottom: 50%;
  left: 1.5rem;
  z-index: 900;
  width: 36px; height: 36px;
  border-radius: 10%;
  background: var(--accent-purple);
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  transition: background var(--transition), transform var(--transition);
}
.a11y-trigger:hover { background: var(--accent-purple-h); transform: scale(1.05); }
.a11y-trigger[aria-expanded="true"] { background: var(--accent-gold); color: #000; }

.a11y-panel {
  position: fixed;
  bottom: 0; left: 0;
  width: min(360px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  background: #1a1a1a;
  border: 1px solid var(--border-strong);
  border-radius: 0 12px 0 0;
  z-index: 899;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 4px 0 40px rgba(0,0,0,0.7);
  padding-bottom: 1rem;
}
.a11y-panel.open { transform: translateY(0); }
.a11y-panel__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: #1a1a1a; z-index: 2;
}
.a11y-panel__title {
  font-family: 'Cinzel', serif; font-size: 0.95rem;
  color: var(--text-primary); letter-spacing: 0.05em;
}
.a11y-panel__close {
  background: none; border: 1px solid var(--border); color: var(--text-secondary);
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.a11y-panel__close:hover { background: var(--accent-gold); color: #000; border-color: var(--accent-gold); }
.a11y-section {
  padding: 0.9rem 1.25rem 0.5rem;
  border-bottom: 1px solid var(--border);
}
.a11y-section:last-child { border-bottom: none; }
.a11y-section__title {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-gold); margin-bottom: 0.7rem; font-weight: 600;
}
.a11y-options { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.a11y-btn {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-secondary); padding: 0.35rem 0.75rem;
  border-radius: var(--radius); cursor: pointer; font-size: 0.78rem;
  font-family: inherit; transition: all var(--transition); white-space: nowrap;
}
.a11y-btn:hover { border-color: var(--accent-purple); color: var(--accent-purple-h); }
.a11y-btn.active { background: var(--accent-purple); border-color: var(--accent-purple); color: #fff; }
.a11y-btn--gold.active { background: var(--accent-gold); border-color: var(--accent-gold); color: #000; }
.a11y-btn--reset {
  background: transparent; border-color: var(--text-muted); color: var(--text-muted);
  width: 100%; justify-content: center; margin-top: 0.5rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.a11y-btn--reset:hover { border-color: #e05555; color: #e05555; }

/* A11Y slider */
.a11y-slider-row {
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.4rem;
}
.a11y-slider-row label { font-size: 0.78rem; color: var(--text-secondary); flex: 1; }
.a11y-slider-row input[type=range] {
  flex: 2; accent-color: var(--accent-purple); cursor: pointer;
}

/* Reading Guide */
.a11y-reading-guide {
  position: fixed; left: 0; right: 0;
  height: 32px; pointer-events: none; z-index: 8999;
  background: rgba(123,63,160,0.18);
  border-top: 2px solid rgba(123,63,160,0.5);
  border-bottom: 2px solid rgba(123,63,160,0.5);
  display: none;
}
.a11y-reading-guide.active { display: block; }

/* ─── Body-level A11Y Classes ─── */
body.a11y-text-large  { font-size: 112%; }
body.a11y-text-xlarge { font-size: 128%; }
body.a11y-readable-font, body.a11y-readable-font * { font-family: Arial, Helvetica, sans-serif !important; }
body.a11y-underline-links a { text-decoration: underline !important; }
body.a11y-underline-links a:hover { text-decoration: none !important; }
body.a11y-high-contrast {
  filter: contrast(1.6) brightness(1.1);
}
body.a11y-monochrome { filter: grayscale(100%); }
body.a11y-saturate { filter: saturate(2); }
body.a11y-hide-images img { visibility: hidden !important; }
body.a11y-highlight-links a,
body.a11y-highlight-links h1,body.a11y-highlight-links h2,body.a11y-highlight-links h3 {
  outline: 2px solid var(--accent-gold) !important;
  outline-offset: 2px !important;
}
body.a11y-reduce-motion *, body.a11y-reduce-motion *::before, body.a11y-reduce-motion *::after {
  transition-duration: 0.01ms !important;
  animation-duration: 0.01ms !important;
}
body.a11y-letter-wide * { letter-spacing: 0.12em !important; }
body.a11y-word-wide   * { word-spacing: 0.25em !important; }
body.a11y-line-loose  * { line-height: 2.2 !important; }
body.a11y-align-left   main * { text-align: left !important; }
body.a11y-align-center main * { text-align: center !important; }
body.a11y-align-right  main * { text-align: right !important; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #1a1a1a;
  border-top: 1px solid var(--border-strong);
  z-index: 8000;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.6);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.cookie-banner__text { flex: 1 1 300px; }
.cookie-banner__text p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.cookie-banner__text a { color: var(--accent-gold); }
.cookie-banner__actions {
  display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; flex-shrink: 0;
}
.cookie-banner__actions .btn { padding: 0.5rem 1.1rem; font-size: 0.8rem; }
.cookie-btn-settings {
  background: none; border: 1px solid var(--border); color: var(--text-muted);
  padding: 0.5rem 1rem; border-radius: var(--radius); cursor: pointer;
  font-size: 0.8rem; font-family: inherit; transition: all var(--transition);
}
.cookie-btn-settings:hover { border-color: var(--accent-gold); color: var(--accent-gold); }

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.8);
  z-index: 9000; display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.cookie-modal-overlay.open { display: flex; }
.cookie-modal {
  background: #1c1c1c; border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); max-width: 560px; width: 100%;
  padding: 2rem; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}
.cookie-modal h2 {
  font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--text-primary); margin-bottom: 1rem;
}
.cookie-modal p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }
.cookie-category {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem; margin-bottom: 0.75rem;
}
.cookie-category__header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem;
}
.cookie-category__name { font-weight: 600; color: var(--text-primary); font-size: 0.9rem; }
.cookie-category__badge {
  font-size: 0.7rem; background: var(--bg-secondary); border: 1px solid var(--border);
  color: var(--text-muted); padding: 0.1rem 0.5rem; border-radius: 20px;
}
.cookie-category__desc { font-size: 0.8rem; color: var(--text-muted); }
/* Toggle switch */
.toggle-switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-switch .slider {
  position: absolute; inset: 0; background: var(--border);
  border-radius: 24px; cursor: pointer; transition: background var(--transition);
}
.toggle-switch .slider::before {
  content: ''; position: absolute; height: 18px; width: 18px; left: 3px; bottom: 3px;
  background: #fff; border-radius: 50%; transition: transform var(--transition);
}
.toggle-switch input:checked + .slider { background: var(--accent-gold); }
.toggle-switch input:checked + .slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .slider { opacity: 0.5; cursor: not-allowed; }
.cookie-modal__footer { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.cookie-modal__footer .btn { flex: 1; min-width: 120px; }

/* ── Legal pages ── */
.legal-content {
  max-width: 860px; margin: 0 auto; padding: 4rem 1.5rem 5rem;
}
.legal-content h1 {
  font-family: 'Cinzel', serif; font-size: clamp(1.8rem,4vw,2.8rem);
  color: var(--text-primary); margin-bottom: 0.5rem;
}
.legal-content .legal-updated {
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 2.5rem;
  display: block;
}
.legal-content h2 {
  font-family: 'Cinzel', serif; font-size: 1.15rem;
  color: var(--accent-gold); margin: 2rem 0 0.75rem;
}
.legal-content h3 {
  font-size: 1rem; color: var(--text-primary); margin: 1.25rem 0 0.5rem; font-weight: 600;
}
.legal-content p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.85; margin-bottom: 0.9rem; }
.legal-content a { color: var(--accent-gold); }
.legal-content ul { margin: 0.5rem 0 1rem 1.5rem; list-style: disc; }
.legal-content ul li { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }
.legal-content .legal-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem 1.5rem; margin: 1rem 0;
}
.legal-content .legal-box strong { color: var(--text-primary); }
.legal-content .legal-box p { margin: 0; }
/* Cookie table */
.cookie-table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.82rem; }
.cookie-table th {
  background: var(--bg-card); color: var(--accent-gold);
  padding: 0.6rem 0.8rem; text-align: left; border: 1px solid var(--border);
}
.cookie-table td { padding: 0.55rem 0.8rem; border: 1px solid var(--border); color: var(--text-secondary); }
.cookie-table tr:hover td { background: var(--bg-secondary); }

/* ── Print ── */
@media print {
  .nav-toggle, .scroll-top, .lightbox { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
