@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a264;
  --gold-light: #e8c88a;
  --gold-dark: #8a6d35;
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --text: #e8e8e8;
  --muted: #888888;
  --border: #2a2a2a;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent);
  transition: background 0.3s;
}
nav.scrolled {
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-logo.visible {
  opacity: 1;
  pointer-events: auto;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-logo span {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.nav-social a {
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.nav-social a:hover { color: var(--gold); }

.nav-tel {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold-dark);
  padding: 0.45rem 1.1rem;
  transition: all 0.2s;
}
.nav-tel:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/photo_12.jpg');
  background-size: cover;
  background-position: center 20%;
  filter: grayscale(30%) brightness(0.45);
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.6) 80%,
    rgba(0,0,0,0.92) 100%
  );
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 2rem;
}
.hero-logo {
  width: 140px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(201,162,100,0.25));
}
.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(232,232,232,0.8);
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.5rem;
  font-weight: 500;
  transition: all 0.2s;
}
.hero-cta:hover {
  background: var(--gold-light);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse-line 2s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── SECTION BASICS ── */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-title em {
  font-style: normal;
  color: var(--gold);
}
.section-desc {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 540px;
  line-height: 1.8;
}

/* ── WALK-IN BANNER ── */
.walkin-banner {
  background: var(--gold);
  padding: 2rem;
  text-align: center;
}
.walkin-banner p {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
}
.walkin-banner strong {
  font-weight: 700;
}

/* ── SERVICES ── */
.services { background: var(--bg-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5px;
  margin-top: 3.5rem;
  border: 1.5px solid var(--border);
}
.service-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.service-card:hover {
  border-color: var(--gold-dark);
  background: var(--bg-3);
}
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--gold);
}
.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── GALLERY ── */
.gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  grid-template-rows: 1fr 1fr auto;
  gap: 6px;
  margin-top: 3.5rem;
}
.gallery-item {
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition: transform 0.5s ease, filter 0.3s;
  position: absolute;
  inset: 0;
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.gi-1 { grid-column: 1; grid-row: 1 / span 2; aspect-ratio: 3/4; }
.gi-2 { grid-column: 2; grid-row: 1; }
.gi-3 { grid-column: 2; grid-row: 2; }
.gi-4 { grid-column: 1 / -1; grid-row: 3; aspect-ratio: 16/7; }

/* ── ABOUT ── */
.about { background: var(--bg-2); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
  display: block;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--gold-dark);
  z-index: -1;
}
.about-img-wrap::after {
  display: none;
}
.about-text .section-title { margin-bottom: 1.5rem; }
.about-text p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.85;
}
.about-text p strong {
  color: var(--text);
  font-weight: 500;
}
.about-stat {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* ── GOOGLE BADGE ── */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 0.85rem 1.4rem;
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: border-color 0.2s, background 0.2s;
}
.google-badge:hover {
  border-color: var(--gold-dark);
  background: #222;
}
.google-badge-logo { display: flex; align-items: center; }
.google-badge-rating {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}
.google-badge-stars { color: #fbbc04; font-size: 0.9rem; letter-spacing: 0.05em; }
.google-badge-count { font-size: 0.82rem; color: var(--muted); }
.google-badge-arrow { color: var(--gold); font-size: 0.9rem; margin-left: auto; }

/* ── REVIEWS HEADER: badge + CTA in one row ── */
.reviews-header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.reviews-header-row .google-badge {
  margin-bottom: 0;
}
/* Desktop: show inline CTA, hide mobile CTA */
.reviews-cta-mobile { display: none; }
.reviews-cta-desktop { display: inline-block; }

/* ── REVIEW AUTHOR ROW: avatar + name ── */
.review-author-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.review-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #111;
  letter-spacing: 0;
  flex-shrink: 0;
}

/* ── REVIEW CTAs ── */
.reviews-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.cta-outline, .cta-gold {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  transition: all 0.2s;
  display: inline-block;
}
.cta-outline {
  border: 1px solid var(--border);
  color: var(--muted);
}
.cta-outline:hover { border-color: var(--gold-dark); color: var(--text); }
.cta-gold {
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
}
.cta-gold:hover { background: var(--gold-light); }
/* Re-declare after .cta-gold so cascade wins on desktop */
.reviews-cta-mobile { display: none; }

/* ── MAPS EMBED ── */
.maps-embed {
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid var(--border);
  filter: grayscale(40%) brightness(0.85);
  transition: filter 0.3s;
}
.maps-embed:hover { filter: grayscale(0%) brightness(1); }

/* ── REVIEWS ── */
.reviews { background: var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.review-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
}
.review-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold-dark);
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  opacity: 0.4;
}
.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.review-text {
  font-size: 0.9rem;
  color: rgba(232,232,232,0.8);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.review-author {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.review-author:hover { color: var(--gold); }

/* ── HOURS & CONTACT ── */
.contact { background: var(--bg-2); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
.hours-table tr {
  border-bottom: 1px solid var(--border);
}
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 0.9rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.hours-table td:first-child {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  width: 45%;
}
.hours-table tr.today td { color: var(--gold); }
.hours-table tr.today td:first-child { color: var(--gold); }
.hours-table .closed { color: var(--border); }

.contact-details { margin-top: 2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}
.contact-icon {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.contact-item-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.contact-item-text a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item-text a:hover { color: var(--gold); }
.contact-item-text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 0.1rem;
  margin-top: 0.5rem;
  transition: color 0.2s, border-color 0.2s;
}
.map-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* ── FOOTER ── */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo img { height: 52px; width: auto; }
.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-social-link:hover { color: var(--gold); }
.footer-social-link span { line-height: 1; }

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── IMPRESSUM PAGE ── */
.impressum-page {
  padding: 8rem 2rem 5rem;
  max-width: 760px;
  margin: 0 auto;
}
.impressum-page h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.impressum-page .page-sub {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.impressum-page h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin: 2.5rem 0 0.8rem;
  font-weight: 500;
}
.impressum-page p, .impressum-page li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 0.5rem;
}
.impressum-page ul { padding-left: 1.2rem; }
.impressum-page a {
  color: var(--gold);
  text-decoration: none;
}
.impressum-page a:hover { text-decoration: underline; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  transition: gap 0.2s;
}
.back-link:hover { gap: 0.8rem; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem;
}
.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-inner p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  min-width: 220px;
}
.cookie-inner a { color: var(--gold); text-decoration: none; }
.cookie-ok {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 0.55rem 1.6rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.cookie-ok:hover { background: var(--gold-light); }

/* ── LANG TOGGLE ── */
.lang-toggle {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-toggle:hover {
  border-color: var(--gold-dark);
  color: var(--gold);
}
html[dir="rtl"] .lang-toggle { font-family: 'Cairo', sans-serif; letter-spacing: 0; }

/* ── RTL SUPPORT ── */
html[dir="rtl"] body { font-family: 'Cairo', sans-serif; }
html[dir="rtl"] .section-label { flex-direction: row-reverse; }
html[dir="rtl"] .section-label::before { order: 1; }
html[dir="rtl"] .nav-logo { flex-direction: row-reverse; }
html[dir="rtl"] .nav-links { flex-direction: row-reverse; }
html[dir="rtl"] .nav-right { flex-direction: row-reverse; }
html[dir="rtl"] .about-inner { direction: rtl; }
html[dir="rtl"] .reviews-grid { direction: rtl; }
html[dir="rtl"] .contact-inner { direction: rtl; }
html[dir="rtl"] .footer-inner { direction: rtl; }
html[dir="rtl"] .hero-content { direction: rtl; }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3 { font-family: 'Cairo', sans-serif; letter-spacing: 0; }
html[dir="rtl"] .walkin-banner p { font-family: 'Cairo', sans-serif; letter-spacing: 0; }
/* Keep phone numbers and times reading left-to-right in RTL */
html[dir="rtl"] .nav-tel,
html[dir="rtl"] a[href^="tel:"],
html[dir="rtl"] .hours-table td:last-child { direction: ltr; unicode-bidi: embed; }
html[dir="rtl"] .hours-table td:last-child { text-align: left; }
/* Social handles are always LTR (Latin usernames) */
html[dir="rtl"] .footer-social-link { direction: ltr; }

/* ── FOOTER CREDIT ── */
.footer-credit {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding: 1.2rem 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.7rem;
  color: var(--border);
  letter-spacing: 0.05em;
}
.footer-credit a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-credit a:hover { color: var(--gold); }

/* ── LANG SWITCHER (fixed bottom pill) ── */
.lang-switcher {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  align-items: stretch;
  background: var(--bg-3);
  border: 1px solid var(--gold-dark);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.ls-opt {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 0.55rem 1.1rem;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.ls-opt:hover { color: var(--gold); }
.ls-opt.active {
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
}
.ls-opt.ls-ar {
  font-family: 'Cairo', sans-serif;
  letter-spacing: 0;
}
.ls-divider {
  width: 1px;
  background: var(--gold-dark);
  margin: 0.35rem 0;
}
html[dir="rtl"] .lang-switcher {
  right: auto;
  left: 2rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 480px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gi-1 { grid-column: span 2; grid-row: span 1; aspect-ratio: 3/2; }
  .gi-2, .gi-3 { grid-column: span 1; aspect-ratio: 1/1; }
  .gi-4 { grid-column: span 2; aspect-ratio: 3/1; }
  .footer-inner { justify-content: center; text-align: center; }
  /* Reviews: 1 col, only first 3 */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card:nth-child(n+4) { display: none; }
  /* CTA: hide inline, show below reviews */
  .reviews-cta-desktop { display: none; }
  .reviews-cta-mobile { display: block; margin-top: 2rem; }
}
@media (max-width: 540px) {
  section { padding: 4rem 1.2rem; }
  nav { padding: 1rem 1.2rem; }
  .nav-logo span { display: none; }
  .nav-tel { font-size: 0.78rem; padding: 0.4rem 0.8rem; }
  .gallery-grid { grid-template-columns: 1fr; gap: 4px; }
  .gi-1, .gi-2, .gi-3, .gi-4 { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }
  .about-stat { gap: 1.5rem; }
  .cookie-banner { padding: 1rem 1.2rem; }
  .lang-toggle { display: none; }
  /* Smaller CTA so hero heading stays in focus */
  .hero-cta { font-size: 0.75rem; padding: 0.65rem 1.5rem; letter-spacing: 0.15em; }
}

/* ── IMPRESSUM: prevent text overflow on narrow screens ── */
.impressum-page {
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.impressum-page a {
  overflow-wrap: break-word;
  word-break: break-all;
}
