/* ═══════════════════════════════════════════════════
   DAR ANDALOUS — style.css
   Zwart · Goud · Modern · Marokkaans getint
   Mobile-first, geen layout-conflicts
═══════════════════════════════════════════════════ */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Cormorant+Garamond:ital,wght@0,400;1,400&family=Cinzel:wght@400;500&display=swap');

/* ── VARIABELEN ── */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e2c47a;
  --gold-dim:    rgba(201,168,76,0.12);
  --gold-border: rgba(201,168,76,0.20);
  --black:       #0a0a08;
  --surface:     #111009;
  --surface2:    #161410;
  --text:        #c8bfa0;
  --text-dim:    rgba(200,191,160,0.50);
  --white:       #f2ead6;

  --f-ar:    'Amiri', serif;
  --f-serif: 'Cormorant Garamond', serif;
  --f-caps:  'Cinzel', serif;

  --nav-h:   72px;
  --ease:    cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--f-serif);
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a    { text-decoration: none; color: inherit; }
img  { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── CONTAINER ──
   Eén breedte, één padding, overal consistent */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════
   REVEAL ANIMATIE
═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity  .6s var(--ease),
    transform .6s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   HEADER
   Logo links · Nav midden · Taal + burger rechts
═══════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background .35s, border-color .35s;
}

.header.scrolled {
  background: rgba(10,10,8,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-border);
}

/* Flex rij: logo | nav | rechts */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 16px;
}

/* ── LOGO (altijd links) ── */
.logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 8px rgba(201,168,76,.25));
  transition: filter .3s;
}
.logo-img:hover {
  filter: drop-shadow(0 0 16px rgba(201,168,76,.50));
}

.logo-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-ar {
  font-family: var(--f-ar);
  color: var(--gold);
  font-size: 20px;
  letter-spacing: .5px;
}
.logo-sub {
  font-family: var(--f-caps);
  color: var(--gold);
  font-size: 8.5px;
  letter-spacing: 3.5px;
  opacity: .65;
  margin-top: 3px;
}

/* ── DESKTOP NAV (midden) ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--f-caps);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  padding-bottom: 2px;
  transition: color .25s;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-link:hover          { color: var(--gold); }
.nav-link:hover::after   { width: 100%; }

/* ── HEADER RECHTS ── */
.header-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── TAALSWITCH ── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--gold-border);
  border-radius: 40px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 30px;
  font-family: var(--f-caps);
  font-size: 9.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.lang-btn:hover  { color: var(--gold); background: rgba(201,168,76,.08); }
.lang-btn.active {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
}

.lang-flag { font-size: 13px; line-height: 1; }
.lang-code { font-size: 9px; }

/* ── BURGER ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}
.burger span {
  display: block;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .3s var(--ease), opacity .25s;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   MOBIEL OVERLAY MENU
═══════════════════════════════════════════════════ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(10,10,8,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  /* verborgen standaard */
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s var(--ease);
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mobile-link {
  font-family: var(--f-caps);
  font-size: 18px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color .2s;
}
.mobile-link:hover { color: var(--gold); }

.mobile-lang {
  display: flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--gold-border);
  border-radius: 40px;
}
.mobile-lang .lang-btn { padding: 7px 14px; font-size: 10px; }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

/* Subtiel achtergrondpatroon */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 2 L54 28 L28 54 L2 28 Z M28 10 L46 28 L28 46 L10 28 Z M28 2 L28 54 M2 28 L54 28' fill='none' stroke='%23c9a84c' stroke-width='0.35' opacity='0.18'/%3E%3C/svg%3E");
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, black 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, black 100%);
}

/* Gloedeffect midden */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 50% at 50% 50%, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
  max-width: 700px;
  width: 100%;
}

.hero-eyebrow {
  display: block;
  font-family: var(--f-caps);
  font-size: 10px;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .75;
  margin-bottom: 32px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-arabic {
  font-family: var(--f-ar);
  font-size: 58px;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 60px rgba(201,168,76,.22);
}

.hero-rule {
  display: block;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .55;
}

.hero-latin {
  font-family: var(--f-caps);
  font-size: 30px;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.hero-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 30%, var(--gold) 70%, transparent 95%);
  opacity: .15;
}

/* ── PRIMAIRE KNOP ── */
.btn-primary {
  display: inline-block;
  padding: 13px 38px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--f-caps);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color .3s var(--ease);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s var(--ease);
  z-index: 0;
}
.btn-primary:hover          { color: var(--black); }
.btn-primary:hover::before  { transform: scaleX(1); }
.btn-primary > *            { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════
   SECTIES — GEDEELD
═══════════════════════════════════════════════════ */
.section      { padding: 96px 0; }
.section--alt { background: var(--surface); }

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.eyebrow {
  display: block;
  font-family: var(--f-caps);
  font-size: 9.5px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--f-ar);
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-intro {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 460px;
  margin: 0 auto;
}

/* Dunne goudlijn separator */
.gold-sep {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: .45;
  margin: 16px auto 0;
}

/* ═══════════════════════════════════════════════════
   MENU — TABS
═══════════════════════════════════════════════════ */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--gold-border);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab {
  padding: 11px 28px;
  font-family: var(--f-caps);
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  border-right: 1px solid var(--gold-border);
  transition: background .22s, color .22s;
}
.tab:last-child  { border-right: none; }
.tab:hover       { color: var(--gold); background: rgba(201,168,76,.05); }
.tab.active      { background: var(--gold); color: var(--black); font-weight: 600; }

.tab-panel          { display: none; }
.tab-panel.active   { display: block; }

/* ── CARDS ── */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.card {
  padding: 32px 28px;
  border: 1px solid var(--gold-border);
  background: var(--gold-dim);
  transition: border-color .28s, background .28s;
}
.card:hover {
  border-color: rgba(201,168,76,.38);
  background: rgba(201,168,76,.07);
}

.card-icon {
  font-size: 26px;
  margin-bottom: 14px;
  display: block;
}

.card h3 {
  font-family: var(--f-ar);
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.card p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.72;
  margin-bottom: 18px;
}

.badge {
  display: inline-block;
  font-family: var(--f-caps);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.30);
  padding: 4px 12px;
  border-radius: 20px;
  opacity: .85;
}

/* ═══════════════════════════════════════════════════
   MENU — ITEMS (echte kaart)
═══════════════════════════════════════════════════ */

/* Centred single-column wrapper (ontbijt) */
.menu-grid {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Two-column wrapper (fast food / dranken / plats) */
.menu-grid--2col {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 64px;
  align-items: start;
}

/* Full-width item inside 2-col (e.g. hoofdgerechten header) */
.menu-section--full {
  grid-column: 1 / -1;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

/* ── Section block ── */
.menu-section {
  display: flex;
  flex-direction: column;
  min-width: 0; /* prevent grid blowout */
}

.menu-section-title {
  font-family: var(--f-caps);
  font-size: 9.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold-border);
}

/* ── Item list ── */
.menu-items {
  display: flex;
  flex-direction: column;
}

/* Each menu entry = stacked block, not a grid row */
.menu-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,168,76,.07);
}

/* Name + price on one line using flexbox */
.menu-item-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
}

.menu-name {
  font-family: var(--f-serif);
  font-size: 15px;
  color: var(--white);
  flex-shrink: 0;
  min-width: 0;
}

.menu-dots {
  flex: 1;
  min-width: 10px;
  border-bottom: 1px dotted rgba(201,168,76,.20);
  margin-bottom: 3px;
  align-self: flex-end;
}

.menu-price {
  font-family: var(--f-caps);
  font-size: 10.5px;
  letter-spacing: 1px;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Description below name/price row */
.menu-desc {
  display: block;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-top: 4px;
}

/* ── Extra's blok ── */
.menu-extras {
  margin-top: 20px;
  padding: 16px 20px;
  border: 1px solid var(--gold-border);
  background: var(--gold-dim);
}

.extras-label {
  display: block;
  font-family: var(--f-caps);
  font-size: 8.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .75;
  margin-bottom: 8px;
}

.extras-items {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ── Kleine noot onder een sectie ── */
.menu-note {
  margin-top: 6px;
  font-family: var(--f-caps);
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .55;
}

/* ── Responsief ── */
@media (max-width: 760px) {
  .menu-grid--2col {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .menu-section--full {
    grid-column: 1;
    max-width: 100%;
    margin: 0;
  }
}

/* ═══════════════════════════════════════════════════
   OVER ONS
═══════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: center;
}

/* Visueel kader */
.about-visual {
  width: 100%;
}

.about-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(201,168,76,.05) 0%, transparent 65%);
}

.about-frame-inner {
  text-align: center;
  padding: 20px;
}

.frame-arabic {
  font-family: var(--f-ar);
  font-size: 34px;
  color: var(--gold);
  opacity: .55;
  line-height: 1.3;
}

.frame-city {
  font-family: var(--f-caps);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 10px;
}

/* Hoekaccenten */
.corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--gold);
  border-style: solid;
  opacity: .50;
}
.corner.tl { top: -1px;    left: -1px;    border-width: 1px 0 0 1px; }
.corner.tr { top: -1px;    right: -1px;   border-width: 1px 1px 0 0; }
.corner.bl { bottom: -1px; left: -1px;    border-width: 0 0 1px 1px; }
.corner.br { bottom: -1px; right: -1px;   border-width: 0 1px 1px 0; }

/* Tekst blok */
.about-text {
  display: flex;
  flex-direction: column;
}

.about-text .section-title {
  margin: 10px 0 20px;
}

.about-text p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 14px;
}

.pillars {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-caps);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.pillar-icon {
  font-size: 8px;
  opacity: .6;
}

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Info blok */
.contact-info {
  display: flex;
  flex-direction: column;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gold-border);
}
.info-row:first-child { border-top: 1px solid var(--gold-border); }

.info-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.info-label {
  font-family: var(--f-caps);
  font-size: 8.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .65;
  margin-bottom: 4px;
}

.info-val {
  font-family: var(--f-serif);
  font-size: 16px;
  color: var(--white);
}

.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

/* WhatsApp */
.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  background: #25D366;
  color: #fff;
  font-family: var(--f-caps);
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #25D366;
  transition: background .25s, transform .2s;
}
.btn-wa:hover { background: #1db855; transform: translateY(-1px); }

/* Maps */
.btn-maps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  background: transparent;
  color: var(--text-dim);
  font-family: var(--f-caps);
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--gold-border);
  transition: color .25s, border-color .25s, transform .2s;
}
.btn-maps:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-1px); }

/* Map decoratief blok */
.map-block {
  display: flex;
  align-items: stretch;
  min-height: 340px;
  border: 1px solid var(--gold-border);
  overflow: hidden;
  position: relative;
  transition: border-color .3s;
}
.map-block:hover { border-color: rgba(201,168,76,.35); }

.map-block iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  filter: grayscale(30%) brightness(0.88) sepia(10%);
  transition: filter .3s;
}
.map-block:hover iframe { filter: grayscale(10%) brightness(0.95) sepia(5%); }

/* ── Hero open badge ── */
.hero-open-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 24px;
  padding: 8px 20px;
  border: 1px solid rgba(201,168,76,.30);
  background: rgba(201,168,76,.07);
  font-family: var(--f-caps);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.open-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ecf6e;
  box-shadow: 0 0 0 0 rgba(62,207,110,.5);
  animation: dotpulse 1.8s ease-out infinite;
  flex-shrink: 0;
}

@keyframes dotpulse {
  0%   { box-shadow: 0 0 0 0 rgba(62,207,110,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(62,207,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(62,207,110,0); }
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--surface2);
  border-top: 1px solid var(--gold-border);
}

.footer-line {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold) 25%,
    var(--gold) 75%,
    transparent 100%);
  opacity: .14;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: .9;
}

.footer-tag {
  font-family: var(--f-caps);
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: var(--f-caps);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color .22s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  color: var(--text-dim);
  transition: border-color .22s, color .22s, transform .2s;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-copy {
  font-family: var(--f-caps);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: .50;
}

/* ═══════════════════════════════════════════════════
   RTL — ARABISCH
═══════════════════════════════════════════════════ */
[dir="rtl"] .header-inner  { flex-direction: row-reverse; }
[dir="rtl"] .main-nav      { flex-direction: row-reverse; }
[dir="rtl"] .header-right  { flex-direction: row-reverse; }
[dir="rtl"] .mobile-overlay{ direction: rtl; }

[dir="rtl"] .about-grid    { direction: rtl; }
[dir="rtl"] .about-text    { text-align: right; }
[dir="rtl"] .pillars       { flex-direction: row-reverse; }
[dir="rtl"] .pillar        { flex-direction: row-reverse; }

[dir="rtl"] .contact-grid  { direction: rtl; }
[dir="rtl"] .info-row      { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .contact-btns  { direction: rtl; }
[dir="rtl"] .btn-wa,
[dir="rtl"] .btn-maps       { flex-direction: row-reverse; }

[dir="rtl"] .footer-inner  { flex-direction: row-reverse; }
[dir="rtl"] .footer-nav    { flex-direction: row-reverse; }
[dir="rtl"] .footer-right  { align-items: flex-start; }
[dir="rtl"] .section-head  { direction: rtl; }
[dir="rtl"] .tabs          { direction: rtl; }
[dir="rtl"] .cards         { direction: rtl; }

/* Arabische font-aanpassingen */
[dir="rtl"] .hero-arabic { font-size: 66px; }
[dir="rtl"] .hero-latin  { font-family: var(--f-ar); font-size: 38px; letter-spacing: 2px; }
[dir="rtl"] .section-title { font-size: 42px; }
[dir="rtl"] .card h3     { font-size: 24px; }
[dir="rtl"] .card p      { font-style: normal; font-size: 16px; }
[dir="rtl"] .about-text p { font-style: normal; font-size: 17px; }

/* ═══════════════════════════════════════════════════
   TABLET  ≤ 900px
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Nav verbergen, burger tonen */
  .main-nav { display: none; }
  .burger   { display: flex; }

  /* About: stacked */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual { display: none; }   /* frame verbergen op tablet */

  /* Contact: stacked */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Cards: 1 kolom */
  .cards {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  /* Tabs wrappen */
  .tabs {
    width: 100%;
    max-width: 500px;
  }
  .tab { flex: 1; text-align: center; padding: 11px 12px; }
}

/* ═══════════════════════════════════════════════════
   MOBIEL  ≤ 600px
═══════════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --nav-h: 64px; }

  .container { padding: 0 16px; }
  .section   { padding: 64px 0; }

  /* Hero */
  .hero-arabic  { font-size: 40px; }
  .hero-latin   { font-size: 20px; letter-spacing: 6px; }
  .hero-sub     { font-size: 15px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 3px; }

  /* Section titles */
  .section-title { font-size: 30px; }
  .section-head  { margin-bottom: 36px; }

  /* Tabs: scrollbaar */
  .tabs {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tab {
    flex: none;
    padding: 10px 18px;
    font-size: 8.5px;
    white-space: nowrap;
  }

  /* Taalswitch: code verbergen op smal scherm */
  .lang-code  { display: none; }
  .lang-btn   { padding: 5px 7px; gap: 0; }
  .lang-flag  { font-size: 14px; }

  /* Logo kleiner */
  .logo-img { height: 46px; }

  /* Footer stacked */
  .footer-inner  { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-right  { align-items: flex-start; flex-direction: row; gap: 14px; align-items: center; }
  .footer-nav    { gap: 16px; }

  /* RTL footer fix mobiel */
  [dir="rtl"] .footer-inner { align-items: flex-end; }
  [dir="rtl"] .footer-right { flex-direction: row-reverse; }
}
