/* ════════════════════════════════════════════════════════════
   ALRASTAN.COM – Variante A (Staatlich-klassisch)
   ════════════════════════════════════════════════════════════ */

:root {
  /* ── Brand palette (2026 Refresh) ──
     Forest + Golden Wheat + Ivory + selective accents */
  --alr-forest:    rgba(5,66,57,var(--tw-bg-opacity,1));   /* primary brand — #054239 unified green */
  --alr-emerald:   rgba(5,66,57,var(--tw-bg-opacity,1));   /* secondary green (same brand green) */
  --alr-teal:      #428177;   /* mountain teal — fresh accent */
  --alr-gold:      #988561;   /* golden wheat — primary accent */
  --alr-sandLight: #B9A779;   /* antique sand — soft gold */
  --alr-ivory:     #EDEBE0;   /* primary background */
  --alr-umber:     #260F14;   /* deep umber — dark wine */
  --alr-cherry:    #4A151E;   /* black cherry */
  --alr-damask:    #6B1F2A;   /* damask red — accent */
  --alr-charcoal:  #161616;   /* near-black */
  --alr-stone:     #3D3A3B;   /* warm gray */
  --alr-white:     #FFFFFF;

  /* ── Semantic aliases (legacy compatibility) ── */
  --alr-bg:        var(--alr-ivory);
  --alr-paper:     #F6F4EB;
  --alr-ink:       var(--alr-charcoal);
  --alr-deep:      var(--alr-forest);
  --alr-earth:     var(--alr-emerald);
  --alr-earthSoft: var(--alr-teal);
  --alr-sand:      var(--alr-gold);
  --alr-olive:     var(--alr-umber);
  --alr-oliveSoft: var(--alr-damask);
  --alr-rule:      rgba(5,66,57,0.14);
  --alr-rule-strong: rgba(5,66,57,0.28);

  /* ── Typography ── */
  --alr-serif-lat: 'Cormorant Garamond','EB Garamond',Georgia,serif;
  --alr-serif-ar:  'Amiri','Noto Naskh Arabic',serif;
  --alr-script-ar: 'Aref Ruqaa','Amiri','Noto Naskh Arabic',serif;
  --alr-display:   'Cinzel','Cormorant Garamond',serif;
  --alr-sans:      'Inter','Segoe UI',system-ui,sans-serif;

  /* ── Motion ── */
  --alr-ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
  --alr-shadow-sm: 0 2px 8px rgba(5,66,57,0.08);
  --alr-shadow-md: 0 6px 24px rgba(5,66,57,0.12);
  --alr-shadow-lg: 0 16px 48px rgba(5,66,57,0.16);
}

[dir="rtl"] {
  --alr-serif-lat: 'Amiri','Noto Naskh Arabic',serif;
  --alr-display:   'Amiri','Noto Naskh Arabic',serif;
}

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

body {
  background: var(--alr-bg);
  color: var(--alr-ink);
  font-family: var(--alr-serif-lat);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--alr-deep); }

img, svg { max-width: 100%; height: auto; display: block; }

/* Logo image (replaces SVG seal) */
.alr-seal-img {
  flex-shrink: 0;
  border-radius: 50%;           /* circular crop if image has transparency */
  user-select: none;
  -webkit-user-drag: none;
}

/* ── Syrian flag ─────────────────────────────────────── */
.alr-flag {
  display: inline-block;
  height: 18px;
  width: auto;
  border-radius: 2px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.22);
  vertical-align: middle;
  flex-shrink: 0;
  object-fit: cover;
}
.alr-flag--sm { height: 14px; }
.alr-flag--md { height: 26px; }
.alr-flag--lg { height: 44px; }

/* Hero: flag row above the ✦ brand mark */
.alr-hero__flag {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.alr-hero__flag .alr-flag {
  height: 32px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}
.alr-hero__flag-label {
  font-family: var(--alr-serif-ar), var(--alr-serif-lat);
  font-size: 13px;
  color: rgba(237,235,224,0.65);
  letter-spacing: 0.03em;
}

/* Footer: country row */
.alr-footer__country {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(237,235,224,0.75);
  font-family: var(--alr-serif-ar), var(--alr-serif-lat);
  letter-spacing: 0.04em;
}
.alr-flag--footer {
  height: 48px;
  width: auto;
  border-radius: 3px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45);
  display: block;
}

/* Utility: uppercase nur in LTR */
[dir="rtl"] .alr-uppercase { text-transform: none; letter-spacing: 0; }
.alr-uppercase { text-transform: uppercase; letter-spacing: 2px; }


/* ════════════════════════════════════════════════════════
   HEADER (Crest band · Nav · Lang-switch)
   ════════════════════════════════════════════════════════ */
/* ── Solid forest header (2026 minimalist) ── */
.alr-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--alr-forest);
  border-bottom: 1px solid rgba(199, 177, 137, 0.10);
  transition: box-shadow 0.35s var(--alr-ease),
              background 0.35s var(--alr-ease);
}
.alr-header.is-scrolled {
  background: var(--alr-forest);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: rgba(199, 177, 137, 0.16);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.24);
}

/* Single inner row */
.alr-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  height: 88px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* ── Logo (image + wordmark) ── */
.alr-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.alr-header__logo .alr-seal-img {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  transition: transform 0.35s var(--alr-ease);
}
.alr-header__logo:hover .alr-seal-img { transform: rotate(-5deg) scale(1.06); }

.alr-header__wordmark {
  font-family: var(--alr-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--alr-gold);
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 0 24px rgba(199, 177, 137, 0.30);
}
[dir="rtl"] .alr-header__wordmark {
  font-family: var(--alr-script-ar);
  letter-spacing: 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--alr-gold);
  line-height: 1.05;
  text-shadow: 0 0 32px rgba(199, 177, 137, 0.45);
}

/* ── Desktop nav (centered, via wp_nav_menu) ── */
.alr-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.alr-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 30px;
  font-family: var(--alr-display);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
[dir="rtl"] .alr-nav__list { letter-spacing: 0; text-transform: none; gap: 0 24px; }

.alr-nav__list > li { position: relative; }

.alr-nav__list > li > a {
  display: block;
  color: rgba(237, 235, 224, 0.78);
  text-decoration: none;
  padding: 14px 0;
  position: relative;
  transition: color .2s;
}
/* Animated underline via ::after */
.alr-nav__list > li > a::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 10px;
  height: 2px;
  background: var(--alr-gold);
  transform: scaleX(0);
  transform-origin: inset-inline-end center;
  transition: transform 0.3s var(--alr-ease);
}
[dir="rtl"] .alr-nav__list > li > a::after { transform-origin: right center; }
.alr-nav__list > li > a:hover::after,
.alr-nav__list > li.current-menu-item > a::after,
.alr-nav__list > li.current-menu-ancestor > a::after,
.alr-nav__list > li.current-page-ancestor > a::after {
  transform: scaleX(1);
  transform-origin: inset-inline-start center;
}
[dir="rtl"] .alr-nav__list > li > a:hover::after,
[dir="rtl"] .alr-nav__list > li.current-menu-item > a::after { transform-origin: left center; }

.alr-nav__list > li > a:hover,
.alr-nav__list > li.current-menu-item > a,
.alr-nav__list > li.current-menu-ancestor > a,
.alr-nav__list > li.current-page-ancestor > a { color: var(--alr-ivory); }

/* Dropdown sub-menu */
.alr-nav__list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 200px;
  background: var(--alr-bg);
  border: 1px solid var(--alr-rule);
  border-top: 3px solid var(--alr-gold);
  box-shadow: 0 12px 40px rgba(5,66,57,0.14);
  border-radius: 0 0 6px 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s var(--alr-ease), transform .25s var(--alr-ease), visibility .22s;
  z-index: 400;
}
.alr-nav__list > li:hover > .sub-menu,
.alr-nav__list > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.alr-nav__list .sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--alr-ink);
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: 0.5px;
  transition: background .2s, color .2s, padding-inline-start .2s;
}
.alr-nav__list .sub-menu li a:hover {
  background: var(--alr-paper);
  color: var(--alr-forest);
  padding-inline-start: 26px;
}

/* ── Right cluster (lang + hamburger) ── */
.alr-header__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* ── Language switcher (globe + AR | DE | EN) ── */
.alr-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--alr-display);
  font-size: 12px;
  letter-spacing: 1.8px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--alr-gold);
}
.alr-lang-switch__globe {
  display: inline-flex;
  align-items: center;
  color: var(--alr-gold);
  margin-inline-end: 4px;
  opacity: 0.85;
}
.alr-lang-switch__sep {
  color: rgba(199, 177, 137, 0.40);
  font-weight: 400;
  -webkit-user-select: none;
  user-select: none;
}
.alr-lang-switch a {
  color: rgba(237, 235, 224, 0.62);
  text-decoration: none;
  padding: 4px 2px;
  transition: color .25s var(--alr-ease);
}
.alr-lang-switch a:hover {
  color: var(--alr-ivory);
}
.alr-lang-switch a.is-active {
  color: var(--alr-gold);
}

/* ── Hamburger button (ivory on forest) ── */
.alr-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(237, 235, 224, 0.22);
  border-radius: 6px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.alr-hamburger:hover {
  background: rgba(237, 235, 224, 0.08);
  border-color: var(--alr-gold);
}

.alr-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--alr-ivory);
  border-radius: 1px;
  transition: transform 0.3s var(--alr-ease), opacity 0.3s, width 0.3s;
}
.alr-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.alr-hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.alr-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ════════════════════════════════════════════════════════
   MOBILE NAV OVERLAY (full-screen, slide from right)
   ════════════════════════════════════════════════════════ */
.alr-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--alr-forest);
  transform: translateX(100%);
  transition: transform 0.42s var(--alr-ease);
  display: flex;
  flex-direction: column;
  padding: 0 40px 48px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
[dir="rtl"] .alr-mobile-nav { transform: translateX(-100%); }
.alr-mobile-nav.is-open { transform: translateX(0) !important; }

.alr-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(237, 235, 224, 0.10);
  margin-bottom: 12px;
}
.alr-mobile-nav__header .alr-seal-img { height: 52px; width: 52px; }
.alr-mobile-nav__header .alr-header__wordmark { color: var(--alr-ivory); }

.alr-mobile-nav__close {
  background: none;
  border: 1px solid rgba(237, 235, 224, 0.2);
  border-radius: 6px;
  cursor: pointer;
  color: var(--alr-ivory);
  width: 40px;
  height: 40px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s var(--alr-ease);
}
.alr-mobile-nav__close:hover { background: rgba(237, 235, 224, 0.10); transform: rotate(90deg); }

/* Staggered link list */
.alr-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.alr-mobile-nav__list > li {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity   0.42s var(--alr-ease),
    transform 0.42s var(--alr-ease);
}
[dir="rtl"] .alr-mobile-nav__list > li { transform: translateX(-28px); }
.alr-mobile-nav.is-open .alr-mobile-nav__list > li {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(var(--i, 0) * 65ms + 80ms);
}

.alr-mobile-nav__list > li > a {
  display: block;
  font-family: var(--alr-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--alr-ivory);
  text-decoration: none;
  padding: 20px 0;
  border-bottom: 1px solid rgba(237, 235, 224, 0.08);
  letter-spacing: 2px;
  transition: color 0.25s, padding-inline-start 0.3s var(--alr-ease);
}
[dir="rtl"] .alr-mobile-nav__list > li > a {
  font-family: var(--alr-serif-ar);
  letter-spacing: 0;
  font-size: 32px;
  font-weight: 700;
}
.alr-mobile-nav__list > li > a:hover {
  color: var(--alr-gold);
  padding-inline-start: 12px;
}
[dir="rtl"] .alr-mobile-nav__list > li > a:hover {
  padding-inline-start: 0;
  padding-inline-end: 12px;
}

/* Lang switcher inside mobile overlay */
.alr-mobile-nav__lang {
  display: flex;
  gap: 24px;
  padding-top: 36px;
  margin-top: auto;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity   0.42s var(--alr-ease) 0.48s,
    transform 0.42s var(--alr-ease) 0.48s;
}
.alr-mobile-nav.is-open .alr-mobile-nav__lang { opacity: 1; transform: translateY(0); }
.alr-mobile-nav__lang a {
  color: rgba(237, 235, 224, 0.45);
  text-decoration: none;
  font-family: var(--alr-display);
  font-size: 13px;
  letter-spacing: 2px;
  transition: color 0.2s;
}
[dir="rtl"] .alr-mobile-nav__lang a { font-family: var(--alr-serif-ar); letter-spacing: 0; font-size: 15px; }
.alr-mobile-nav__lang a.is-active,
.alr-mobile-nav__lang a:hover { color: var(--alr-gold); }

/* Backdrop */
.alr-mobile-nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 66, 57,0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 490;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.alr-mobile-nav__backdrop.is-open { opacity: 1; pointer-events: auto; }


/* ════════════════════════════════════════════════════════
   HERO — Full-bleed image + Forest gradient + pattern overlay
   ════════════════════════════════════════════════════════ */
.alr-hero {
  min-height: 78vh;
  padding: 140px 60px 110px;
  text-align: center;
  position: relative;
  isolation: isolate;
  background: url('../img/panorama.jpg') center 35% / cover no-repeat;
  color: var(--alr-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.alr-hero--panorama {
  background: url('../img/panorama.jpg') center 35% / cover no-repeat;
}
.alr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/pattern-tile.svg');
  background-size: 140px 140px;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}
.alr-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to top, var(--alr-ivory), transparent);
  pointer-events: none;
  z-index: -1;
}
.alr-hero__inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.alr-hero__brand-mark {
  font-size: 32px;
  color: var(--alr-gold);
  margin-bottom: 22px;
  opacity: 0.85;
  animation: alrFadeUp 1s var(--alr-ease);
}
@keyframes alrFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 0.85; transform: translateY(0); }
}

/* ─── Stitch-style Hero hierarchy ─────────────────────── */
.alr-hero__eyebrow {
  font-family: var(--alr-serif-ar), var(--alr-serif-lat);
  font-size: clamp(14px, 1.4vw, 16px);
  letter-spacing: 0.18em;
  color: var(--alr-gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.95;
  animation: alrFadeUp 1.0s var(--alr-ease);
}
[dir="rtl"] .alr-hero__eyebrow {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 18px;
}

.alr-hero__title {
  font-family: var(--alr-serif-ar), var(--alr-serif-lat);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow:
    0 2px 6px rgba(0,0,0,0.55),
    0 6px 36px rgba(0,0,0,0.75);
  animation: alrFadeUp 1.2s var(--alr-ease);
}
[dir="rtl"] .alr-hero__title {
  font-weight: 700;
  letter-spacing: 0;
}

.alr-hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 28px;
  color: var(--alr-gold);
  animation: alrFadeUp 1.4s var(--alr-ease);
}
.alr-hero__divider > span:first-child,
.alr-hero__divider > span:last-child {
  display: block;
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199,177,137,0.6), transparent);
}
.alr-hero__mark {
  font-size: 1.4rem;
  color: var(--alr-gold);
  text-shadow: 0 0 24px rgba(199,177,137,0.55);
}

.alr-hero__sub {
  font-family: var(--alr-serif-ar), var(--alr-serif-lat);
  font-size: clamp(18px, 2vw, 22px);
  color: #ffffff;
  margin: 0 0 40px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  text-shadow:
    0 1px 4px rgba(0,0,0,0.65),
    0 4px 24px rgba(0,0,0,0.55);
  max-width: 680px;
  margin-inline: auto;
}
[dir="ltr"] .alr-hero__sub { font-style: italic; }
.alr-hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ── Buttons (modernisiert) ─────────────────────────── */
.alr-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--alr-display);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--alr-gold);
  border-radius: 0;
  transition: all 0.35s var(--alr-ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
[dir="rtl"] .alr-btn {
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--alr-serif-ar);
  font-size: 16px;
  padding: 14px 32px;
}

.alr-btn--primary {
  background: var(--alr-gold);
  color: var(--alr-forest);
}
.alr-btn--primary:hover {
  background: var(--alr-ivory);
  border-color: var(--alr-ivory);
  transform: translateY(-2px);
  box-shadow: var(--alr-shadow-md);
}

.alr-btn--ghost {
  background: transparent;
  color: var(--alr-ivory);
}
.alr-btn--ghost:hover {
  background: var(--alr-gold);
  border-color: var(--alr-gold);
  color: var(--alr-forest);
  transform: translateY(-2px);
}


/* ════════════════════════════════════════════════════════
   HERO FEATURE IMAGE
   ════════════════════════════════════════════════════════ */
.alr-hero-feature {
  padding: 0 60px;
}
.alr-photo-slot {
  position: relative;
  border: 1px solid var(--alr-rule);
  background: var(--alr-paper);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--alr-earth);
  font-family: var(--alr-serif-lat);
  font-style: italic;
  font-size: 15px;
  text-align: center;
  padding: 20px;
}
.alr-photo-slot__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(26,20,16,0.72), rgba(26,20,16,0));
  color: rgba(245,241,232,0.95);
  text-align: start;
  font-family: var(--alr-serif-lat);
  font-style: italic;
  font-size: 15px;
  opacity: 0;
  transition: opacity .2s;
}
.alr-photo-slot:hover .alr-photo-slot__label { opacity: 1; }
/* Real photos — Wikimedia Commons, CC-licensed */
.alr-photo-slot--bridge      { background: url('../img/bridge.jpg')      center/cover no-repeat; }
.alr-photo-slot--dam         { background: url('../img/dam.jpg')         center/cover no-repeat; }
.alr-photo-slot--oldtown     { background: url('../img/oldtown.jpg')     center/cover no-repeat; }
.alr-photo-slot--mosque      { background: url('../img/mosque.jpg')      center/cover no-repeat; }
.alr-photo-slot--ruins       { background: url('../img/aerial.jpg')      center/cover no-repeat; }
.alr-photo-slot--wheat       { background: url('../img/waterfalls.jpg')  center/cover no-repeat; }
.alr-photo-slot--orchard     { background: url('../img/sunset.jpg')      center/cover no-repeat; }
.alr-photo-slot--river       { background: url('../img/sunset.jpg')      center/cover no-repeat; }
.alr-photo-slot--fields      { background: url('../img/dam2.jpg')        center/cover no-repeat; }
.alr-photo-slot--sarcophagus { background: url('../img/sarcophagus.jpg') center/cover no-repeat; }
.alr-photo-slot--mosaic      { background: url('../img/mosaic.jpg')      center/cover no-repeat; }
.alr-photo-slot--panorama    { background: url('../img/panorama.jpg')    center/cover no-repeat; }
.alr-photo-slot--aerial2     { background: url('../img/aerial2.jpg')     center/cover no-repeat; }
.alr-photo-slot--historic    { background: url('../img/historic.jpg')    center/cover no-repeat; }
/* Gradient fallbacks for slots without photos */
.alr-photo-slot--castle      { background: linear-gradient(135deg, var(--alr-gold), var(--alr-emerald)); }
.alr-photo-slot--olive       { background: linear-gradient(135deg, var(--alr-forest), var(--alr-teal)); }
.alr-photo-slot--market      { background: linear-gradient(135deg, var(--alr-gold), var(--alr-cherry)); }


/* ════════════════════════════════════════════════════════
   STATS BAND
   ════════════════════════════════════════════════════════ */
.alr-stats {
  padding: 70px 60px;
  background: var(--alr-paper);
  margin-top: -60px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(152,133,97,0.22);
  border-bottom: 1px solid rgba(152,133,97,0.22);
}

/* Decorative side ornaments (gold tile pattern, partial reveal) */
.alr-stats__ornament {
  position: absolute;
  top: 50%;
  width: 220px;
  height: 260px;
  transform: translateY(-50%);
  background: url('../img/pattern-tile.svg') center / contain no-repeat;
  opacity: 0.20;
  pointer-events: none;
  filter: hue-rotate(0deg) brightness(1.1);
}
.alr-stats__ornament--left  { inset-inline-start: -60px; }
.alr-stats__ornament--right { inset-inline-end: -60px; }
@media (max-width: 1100px) {
  .alr-stats__ornament { width: 150px; height: 180px; opacity: 0.14; }
}
@media (max-width: 768px) {
  .alr-stats__ornament { display: none; }
}

.alr-stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
  z-index: 1;
}
.alr-stats__cell {
  padding: 14px 28px;
  text-align: center;
  border-inline-start: 1px solid rgba(152,133,97,0.32);
  position: relative;
  transition: none;
}
.alr-stats__cell:hover { background: transparent; }
.alr-stats__cell::after { display: none; }
.alr-stats__cell:first-child { border-inline-start: none; }

.alr-stats__v {
  font-family: var(--alr-serif-lat);
  font-size: clamp(56px, 6vw, 84px);
  color: var(--alr-gold);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(152,133,97,0.18);
}
[dir="rtl"] .alr-stats__v { font-family: var(--alr-serif-ar); font-weight: 700; color: var(--alr-gold); }

/* Primary label — serif, larger, heritage tone */
.alr-stats__l {
  font-family: var(--alr-serif-lat);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--alr-deep);
  margin-top: 16px;
  line-height: 1.3;
}
[dir="rtl"] .alr-stats__l {
  font-family: var(--alr-serif-ar);
  font-size: 18px;
  font-weight: 400;
}

/* Secondary category label — small uppercase gold */
.alr-stats__c {
  font-family: var(--alr-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--alr-gold);
  margin-top: 8px;
}
[dir="rtl"] .alr-stats__c {
  font-family: var(--alr-serif-ar);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}


/* ════════════════════════════════════════════════════════
   SECTION TITLE (zentriert mit ✦)
   ════════════════════════════════════════════════════════ */
.alr-section { padding: 100px 60px; position: relative; }
.alr-section--paper { background: var(--alr-paper); }
.alr-section--olive {
  background: var(--alr-forest);
  color: var(--alr-ivory);
  position: relative;
  overflow: hidden;
}
.alr-section--olive::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/pattern-tile.svg');
  background-size: 160px 160px;
  opacity: 0.08;
  pointer-events: none;
}
.alr-section--olive > * { position: relative; z-index: 1; }
.alr-section--olive .alr-section-title__title,
.alr-section--olive .alr-section-title__kicker { color: var(--alr-ivory); }
.alr-section--olive .alr-section-title__kicker { color: var(--alr-gold); }
.alr-section--olive .alr-section-title__ornament span:first-child,
.alr-section--olive .alr-section-title__ornament span:last-child { background: rgba(152,133,97,0.4); }

.alr-section-title {
  text-align: center;
  margin-bottom: 36px;
}
.alr-section-title__kicker {
  font-family: var(--alr-display);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--alr-earth);
  margin-bottom: 12px;
}
[dir="rtl"] .alr-section-title__kicker { letter-spacing: 0; text-transform: none; }
.alr-section-title__title {
  font-family: var(--alr-serif-lat);
  font-size: 44px;
  font-weight: 500;
  margin: 0 0 18px;
  color: var(--alr-deep);
  line-height: 1.15;
}
.alr-section-title__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--alr-earth);
}
.alr-section-title__ornament span:first-child,
.alr-section-title__ornament span:last-child {
  width: 60px; height: 1px; background: var(--alr-rule);
}
.alr-section-title__ornament span:nth-child(2) { font-size: 12px; }


/* ════════════════════════════════════════════════════════
   HISTORY SECTION (Lede · 2-col text · Timeline)
   ════════════════════════════════════════════════════════ */
.alr-lede {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: 21px;
  font-style: italic;
  color: var(--alr-deep);
  line-height: 1.55;
}
.alr-twocol {
  max-width: 880px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.alr-twocol p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.75;
  color: #1a1a1a;
  font-weight: 500;
}
[dir="rtl"] .alr-twocol p {
  font-family: var(--alr-serif-ar);
  font-size: 18.5px;
  line-height: 2;
  font-weight: 700;
  color: #1a1a1a;
}

.alr-timeline {
  max-width: 980px;
  margin: 60px auto 0;
  position: relative;
}
.alr-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  inset-inline: 30px;
  height: 1px;
  background: var(--alr-rule);
}
.alr-timeline__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}
.alr-timeline__item { text-align: center; padding: 0 8px; }
.alr-timeline__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--alr-bg);
  border: 2px solid var(--alr-deep);
  margin: 24px auto 12px;
}
.alr-timeline__year {
  font-family: var(--alr-display);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--alr-earth);
  margin-bottom: 6px;
}
[dir="rtl"] .alr-timeline__year { letter-spacing: 0; }
.alr-timeline__label {
  font-family: var(--alr-serif-lat);
  font-size: 15px;
  color: var(--alr-deep);
  line-height: 1.3;
}


/* ════════════════════════════════════════════════════════
   SIGHTS (2-col card grid)
   ════════════════════════════════════════════════════════ */
.alr-sights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.alr-sight-card {
  background: var(--alr-white);
  border: 1px solid var(--alr-rule);
  overflow: hidden;
  transition: transform 0.4s var(--alr-ease), box-shadow 0.4s var(--alr-ease), border-color 0.4s var(--alr-ease);
  position: relative;
  border-radius: 4px;
}
.alr-sight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
  border-color: var(--alr-gold);
}
.alr-section--olive .alr-sight-card {
  border-color: rgba(199,177,137,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.alr-sight-card .alr-photo-slot {
  height: 260px;
  overflow: hidden;
}
.alr-sight-card .alr-photo-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,66,57,0.4));
  z-index: 1;
  transition: opacity 0.4s var(--alr-ease);
}
.alr-sight-card:hover .alr-photo-slot { transform: scale(1.04); }
.alr-sight-card .alr-photo-slot { transition: transform 0.6s var(--alr-ease); }

.alr-sight-card__body { padding: 28px 30px 32px; }
.alr-sight-card__num {
  font-family: var(--alr-display);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--alr-gold);
  margin-bottom: 10px;
}
[dir="rtl"] .alr-sight-card__num { letter-spacing: 0; }
.alr-sight-card__title {
  font-family: var(--alr-serif-lat);
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--alr-forest);
  line-height: 1.2;
}
[dir="rtl"] .alr-sight-card__title { font-family: var(--alr-serif-ar); font-weight: 700; }
.alr-sight-card__desc {
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
  color: var(--alr-stone);
}
[dir="rtl"] .alr-sight-card__desc { font-family: var(--alr-serif-ar); font-size: 16px; line-height: 1.85; }


/* ════════════════════════════════════════════════════════
   ECONOMY (Image + List)
   ════════════════════════════════════════════════════════ */
.alr-economy-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.alr-economy-grid .alr-photo-slot { height: 380px; }
/* .alr-economy-list — layout handled by parent grid */
.alr-economy-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--alr-rule);
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
}
.alr-economy-item:last-child { border-bottom: none; }
.alr-economy-item__num {
  font-family: var(--alr-display);
  font-size: 22px;
  color: var(--alr-sand);
}
.alr-economy-item__title {
  font-family: var(--alr-serif-lat);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--alr-deep);
}
.alr-economy-item__desc {
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
  color: var(--alr-ink);
}


/* ════════════════════════════════════════════════════════
   NEWS PREVIEW (olive section)
   ════════════════════════════════════════════════════════ */
.alr-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.alr-news-card {
  background: rgba(237,235,224,0.04);
  padding: 32px 30px;
  border: 1px solid rgba(152,133,97,0.25);
  transition: all 0.35s var(--alr-ease);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

/* ─── News card with featured image (Stitch-style) ─── */
.alr-news-card--withimg {
  padding: 0;
}
.alr-news-card--withimg .alr-news-card__media {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.6s var(--alr-ease);
}
.alr-news-card--withimg .alr-news-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5,66,57,0.55));
}
.alr-news-card--withimg:hover .alr-news-card__media { transform: scale(1.04); }
.alr-news-card--withimg .alr-news-card__body {
  padding: 24px 28px 28px;
}
.alr-news-card::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--alr-gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--alr-ease);
}
.alr-news-card:hover {
  background: rgba(237,235,224,0.08);
  border-color: var(--alr-gold);
  transform: translateY(-4px);
}
.alr-news-card:hover::before { transform: scaleY(1); }

.alr-news-card__meta {
  font-family: var(--alr-display);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--alr-gold);
  margin-bottom: 14px;
  text-transform: uppercase;
}
[dir="rtl"] .alr-news-card__meta { letter-spacing: 0; text-transform: none; font-family: var(--alr-serif-ar); font-size: 13px; }
.alr-news-card__title {
  font-family: var(--alr-serif-lat);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--alr-ivory);
  line-height: 1.3;
}
[dir="rtl"] .alr-news-card__title { font-family: var(--alr-serif-ar); font-weight: 700; }
.alr-news-card__excerpt {
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0 0 20px;
  color: rgba(237,235,224,0.75);
}
[dir="rtl"] .alr-news-card__excerpt { font-family: var(--alr-serif-ar); font-size: 15.5px; }
.alr-news-card__more {
  font-family: var(--alr-display);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--alr-sandLight);
  text-decoration: none;
  border-bottom: 1px solid rgba(185,167,121,0.4);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.alr-news-card__more:hover { color: var(--alr-ivory); border-color: var(--alr-ivory); }
[dir="rtl"] .alr-news-card__more { letter-spacing: 0; font-family: var(--alr-serif-ar); font-size: 14px; }


/* ════════════════════════════════════════════════════════
   GALLERY PREVIEW (4-col strip)
   ════════════════════════════════════════════════════════ */
.alr-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
}
.alr-gallery-strip .alr-photo-slot { height: 180px; }

.alr-link-ornate {
  display: inline-block;
  margin-top: 36px;
  font-family: var(--alr-display);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--alr-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--alr-deep);
  padding-bottom: 4px;
  text-transform: uppercase;
}
[dir="rtl"] .alr-link-ornate { letter-spacing: 0; text-transform: none; }
.alr-text-center { text-align: center; }


/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.alr-footer {
  background: var(--alr-charcoal);
  color: var(--alr-ivory);
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.alr-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/pattern-tile.svg');
  background-size: 200px 200px;
  opacity: 0.05;
  pointer-events: none;
}
.alr-footer > * { position: relative; z-index: 1; }
.alr-footer__top {
  padding: 50px 60px 30px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.alr-footer__seal { text-align: center; }
.alr-footer__seal-wrap { display: inline-block; }

.alr-footer__center { text-align: center; }
.alr-footer__city {
  font-family: var(--alr-display);
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
[dir="rtl"] .alr-footer__city { letter-spacing: 0; }
.alr-footer__contact {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.8;
}
.alr-footer__url {
  text-align: end;
  font-size: 12px;
  opacity: 0.7;
}
.alr-footer__copy {
  border-top: 1px solid rgba(245,241,232,0.15);
  padding: 14px 60px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.7;
}
[dir="rtl"] .alr-footer__copy { letter-spacing: 0; }


/* ════════════════════════════════════════════════════════
   ARTICLE / NEWS DETAIL
   ════════════════════════════════════════════════════════ */
.alr-article-header {
  padding: 70px 60px 40px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.alr-article-header__eyebrow {
  font-family: var(--alr-display);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--alr-earth);
  margin-bottom: 16px;
}
[dir="rtl"] .alr-article-header__eyebrow { letter-spacing: 0; }
.alr-article-header__title {
  font-family: var(--alr-serif-lat);
  font-size: 50px;
  font-weight: 500;
  margin: 0 0 18px;
  color: var(--alr-deep);
  line-height: 1.1;
}
.alr-article-header__sub {
  font-size: 21px;
  font-style: italic;
  color: var(--alr-earth);
  margin: 0 0 18px;
  line-height: 1.5;
}
.alr-article-header__meta {
  font-size: 12px;
  letter-spacing: 2px;
  font-family: var(--alr-display);
  color: var(--alr-earth);
}
[dir="rtl"] .alr-article-header__meta { letter-spacing: 0; }

.alr-article-image {
  padding: 0 60px;
}
.alr-article-image .alr-photo-slot {
  height: 460px;
  max-width: 1100px;
  margin: 20px auto 0;
}

.alr-article-body {
  padding: 40px 60px 70px;
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
}
.alr-article-body__lead {
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 24px;
}
.alr-dropcap {
  float: inline-start;
  font-family: var(--alr-serif-lat);
  font-size: 64px;
  line-height: 0.9;
  color: var(--alr-deep);
  margin-inline-end: 10px;
  margin-top: 4px;
}
.alr-article-body p { margin: 0 0 22px; }
.alr-blockquote {
  margin: 40px 0;
  padding-inline-start: 30px;
  border-inline-start: 3px solid var(--alr-sand);
}
.alr-blockquote p {
  font-family: var(--alr-serif-lat);
  font-style: italic;
  font-size: 26px;
  line-height: 1.45;
  color: var(--alr-deep);
  margin: 0 0 12px;
}
.alr-blockquote cite {
  font-family: var(--alr-display);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--alr-earth);
  font-style: normal;
}
[dir="rtl"] .alr-blockquote cite { letter-spacing: 0; }

.alr-tags {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--alr-rule);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.alr-tag {
  font-family: var(--alr-display);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--alr-earth);
  border: 1px solid var(--alr-rule);
  padding: 6px 14px;
}
[dir="rtl"] .alr-tag { letter-spacing: 0; }

.alr-related { padding: 60px; background: var(--alr-paper); }
.alr-related__kicker {
  text-align: center;
  margin-bottom: 30px;
  font-family: var(--alr-display);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--alr-earth);
  text-transform: uppercase;
}
[dir="rtl"] .alr-related__kicker { letter-spacing: 0; text-transform: none; }
.alr-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.alr-related__card {
  background: var(--alr-bg);
  padding: 24px;
  border: 1px solid var(--alr-rule);
}
.alr-related__date {
  font-family: var(--alr-display);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--alr-earth);
  margin-bottom: 8px;
}
[dir="rtl"] .alr-related__date { letter-spacing: 0; }
.alr-related__title {
  font-family: var(--alr-serif-lat);
  font-size: 19px;
  font-weight: 500;
  margin: 0;
  color: var(--alr-deep);
  line-height: 1.3;
}


/* ════════════════════════════════════════════════════════
   GALLERY PAGE (2-col figures)
   ════════════════════════════════════════════════════════ */
.alr-gallery-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px 80px;
}
.alr-gallery-full figure { margin: 0; }
.alr-gallery-full .alr-photo-slot { height: 340px; }
.alr-gallery-full figcaption {
  text-align: center;
  margin-top: 14px;
  font-family: var(--alr-serif-lat);
  font-style: italic;
  font-size: 16px;
  color: var(--alr-earth);
}
.alr-gallery-full figcaption .num {
  display: inline-block;
  font-family: var(--alr-display);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--alr-sand);
  margin-inline-end: 8px;
}


/* ════════════════════════════════════════════════════════
   SERVICES PAGE (form + sidebar)
   ════════════════════════════════════════════════════════ */
.alr-services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 20px 60px 80px;
}
.alr-form-card {
  background: var(--alr-bg);
  border: 1px solid var(--alr-rule);
  padding: 40px 44px;
}
/* SureForms embed — strip plugin chrome, inherit site palette */
.alr-form-card--sureforms .srfm-form-container {
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
.alr-form-card--sureforms .srfm-submit-btn {
  background: var(--alr-forest) !important;
  color: var(--alr-ivory) !important;
  border-radius: 0 !important;
  font-family: var(--alr-display) !important;
  letter-spacing: 2px !important;
  padding: 14px 36px !important;
}
.alr-form-card--sureforms .srfm-submit-btn:hover {
  background: var(--alr-gold) !important;
  color: var(--alr-forest) !important;
}
.alr-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.alr-form__group { }
.alr-form__label {
  display: block;
  font-family: var(--alr-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--alr-earth);
  margin-bottom: 6px;
}
[dir="rtl"] .alr-form__label { letter-spacing: 0; text-transform: none; }
.alr-form__input {
  width: 100%;
  padding: 12px 14px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--alr-deep);
  font-family: var(--alr-serif-lat);
  font-size: 17px;
  color: var(--alr-ink);
  outline: none;
}
.alr-form__textarea {
  width: 100%;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid var(--alr-rule);
  font-family: var(--alr-serif-lat);
  font-size: 17px;
  color: var(--alr-ink);
  outline: none;
  min-height: 120px;
  resize: vertical;
}
.alr-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.alr-chip {
  padding: 8px 14px;
  font-size: 13px;
  font-family: var(--alr-serif-lat);
  border: 1px solid var(--alr-rule);
  background: transparent;
  color: var(--alr-ink);
  cursor: pointer;
  transition: all .2s;
}
.alr-chip:hover { border-color: var(--alr-deep); }
.alr-chip.is-active {
  border-color: var(--alr-deep);
  background: var(--alr-deep);
  color: var(--alr-bg);
}

.alr-form__submit {
  background: var(--alr-deep);
  color: var(--alr-bg);
  padding: 14px 36px;
  border: none;
  font-family: var(--alr-display);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
}
[dir="rtl"] .alr-form__submit { letter-spacing: 0; text-transform: none; }
.alr-form__submit:hover { background: var(--alr-olive); }

.alr-form__success {
  text-align: center;
  padding: 60px 20px;
}
.alr-form__success-icon {
  font-size: 48px;
  color: var(--alr-olive);
  margin-bottom: 12px;
}
.alr-form__success h3 {
  font-family: var(--alr-serif-lat);
  font-size: 28px;
  margin: 0 0 10px;
  color: var(--alr-deep);
}

.alr-services-aside { }
.alr-services-aside__card {
  padding: 32px 28px;
  background: var(--alr-paper);
  border: 1px solid var(--alr-rule);
}
.alr-services-aside__card h4 {
  font-family: var(--alr-serif-lat);
  font-size: 22px;
  margin: 20px 0 12px;
  color: var(--alr-deep);
}
.alr-services-aside__card p {
  font-size: 14px;
  color: var(--alr-ink);
  line-height: 1.6;
  margin: 0;
}
.alr-services-aside__contact {
  padding: 24px 28px;
  border-top: 1px solid var(--alr-rule);
  margin-top: 22px;
}
.alr-services-aside__contact h4 {
  font-family: var(--alr-display);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--alr-earth);
  margin: 0 0 14px;
}
[dir="rtl"] .alr-services-aside__contact h4 { letter-spacing: 0; }
.alr-services-aside__contact div {
  font-size: 14px;
  line-height: 1.8;
  color: var(--alr-ink);
}


/* ════════════════════════════════════════════════════════
   SCHOLAR QUOTE — قالوا عنها
   ════════════════════════════════════════════════════════ */
.alr-scholar-quote {
  background: var(--alr-deep);
  padding: 80px 60px;
  text-align: center;
}
.alr-scholar-quote__inner {
  max-width: 820px;
  margin: 0 auto;
}
.alr-scholar-quote__kicker {
  font-family: 'Amiri','Noto Naskh Arabic',serif;
  font-size: 15px;
  color: var(--alr-sand);
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.alr-scholar-quote__kicker::before,
.alr-scholar-quote__kicker::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: var(--alr-sand);
  opacity: 0.45;
}
.alr-scholar-quote__block {
  margin: 0;
  padding: 0;
  border: none;
}
.alr-scholar-quote__text {
  font-family: 'Amiri','Noto Naskh Arabic',serif;
  font-size: 27px;
  line-height: 2;
  color: var(--alr-bg);
  margin: 0 0 40px;
}
.alr-scholar-quote__attr {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.alr-scholar-quote__name {
  font-family: 'Amiri','Noto Naskh Arabic',serif;
  font-size: 16px;
  color: var(--alr-sand);
  font-weight: 700;
}
.alr-scholar-quote__source {
  font-family: 'Amiri','Noto Naskh Arabic',serif;
  font-size: 13px;
  color: rgba(245,241,232,0.5);
  line-height: 1.8;
}


/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .alr-crest-band,
  .alr-nav-bar,
  .alr-hero,
  .alr-hero-feature,
  .alr-stats,
  .alr-section,
  .alr-article-image,
  .alr-article-body,
  .alr-article-header,
  .alr-services-grid,
  .alr-gallery-full,
  .alr-footer__top,
  .alr-footer__copy { padding-inline: 28px; }

  .alr-stats__grid { grid-template-columns: 1fr; }
  .alr-stats__cell { border-inline-start: none; border-top: 1px solid var(--alr-rule); }
  .alr-stats__cell:first-child { border-top: none; }

  .alr-twocol { grid-template-columns: 1fr; gap: 16px; }
  .alr-sights { grid-template-columns: 1fr; }
  .alr-economy-grid { grid-template-columns: 1fr; }
  .alr-news-grid { grid-template-columns: 1fr; }
  .alr-gallery-strip { grid-template-columns: 1fr 1fr; }
  .alr-related__grid { grid-template-columns: 1fr; }
  .alr-gallery-full { grid-template-columns: 1fr; }
  .alr-services-grid { grid-template-columns: 1fr; }
  .alr-form__row { grid-template-columns: 1fr; gap: 16px; }
  .alr-footer__top { grid-template-columns: 1fr; text-align: center; }
  .alr-footer__url { text-align: center; }

  .alr-timeline__grid { grid-template-columns: repeat(3,1fr); row-gap: 24px; }
  .alr-timeline::before { display: none; }

  .alr-cityname { font-size: 28px; }
  .alr-section-title__title { font-size: 32px; }
  .alr-article-header__title { font-size: 36px; }

  /* Mobile nav — show hamburger, hide desktop nav */
  .alr-hamburger { display: flex; }
  .alr-nav { display: none; }  /* overlay handles mobile links */
  .alr-header__inner { padding: 0 20px; height: 68px; gap: 16px; }
  .alr-header__wordmark { font-size: 18px; letter-spacing: 2.5px; }
  [dir="rtl"] .alr-header__wordmark { font-size: 24px; letter-spacing: 0; }
  .alr-lang-switch { font-size: 11px; gap: 6px; }
  .alr-lang-switch__globe svg { width: 13px; height: 13px; }

  .alr-scholar-quote { padding: 60px 28px; }
  .alr-scholar-quote__text { font-size: 21px; line-height: 1.85; }

  .alr-blog-hero { padding: 80px 28px 60px; }
  .alr-blog-hero__title { font-size: 36px; }
  .alr-blog-grid { grid-template-columns: 1fr; gap: 32px; }
  .alr-single-header { padding: 80px 28px 60px; }
  .alr-single-header__title { font-size: 32px; }
  .alr-single-content { padding: 0 28px; font-size: 17px; }
  .alr-single-nav { grid-template-columns: 1fr; gap: 16px; padding: 0 28px; }
}


/* ════════════════════════════════════════════════════════
   BLOG (Archive · Hero · Cards · Pagination)
   ════════════════════════════════════════════════════════ */
.alr-blog-hero {
  background: var(--alr-forest);
  color: var(--alr-ivory);
  padding: 130px 60px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.alr-blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/pattern-tile.svg');
  background-size: 160px 160px;
  opacity: 0.08;
  pointer-events: none;
}
.alr-blog-hero__inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.alr-blog-hero__kicker {
  font-family: var(--alr-display);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--alr-gold);
  margin-bottom: 18px;
}
[dir="rtl"] .alr-blog-hero__kicker { letter-spacing: 0; text-transform: none; font-family: var(--alr-serif-ar); font-size: 14px; }
.alr-blog-hero__title {
  font-family: var(--alr-serif-lat);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  margin: 0 0 20px;
  line-height: 1.15;
  color: var(--alr-ivory);
}
[dir="rtl"] .alr-blog-hero__title { font-family: var(--alr-serif-ar); font-weight: 700; }
.alr-blog-hero__sub {
  font-family: var(--alr-serif-lat);
  font-size: 18px;
  line-height: 1.65;
  color: rgba(237,235,224,0.8);
  margin: 0;
}
[dir="rtl"] .alr-blog-hero__sub { font-family: var(--alr-serif-ar); font-size: 19px; line-height: 1.9; }

/* ── Blog list ── */
.alr-blog-list { background: var(--alr-ivory); padding: 80px 60px 100px; }
.alr-blog-list__inner { max-width: 1200px; margin: 0 auto; }

.alr-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ── Blog card ── */
.alr-blog-card {
  background: var(--alr-white);
  border: 1px solid var(--alr-rule);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--alr-ease);
}
.alr-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--alr-shadow-lg);
  border-color: var(--alr-gold);
}

.alr-blog-card__img-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--alr-paper);
}
.alr-blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--alr-ease);
}
.alr-blog-card:hover .alr-blog-card__img { transform: scale(1.06); }

.alr-blog-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--alr-forest), var(--alr-emerald));
  color: var(--alr-gold);
  font-size: 48px;
  opacity: 0.9;
}

.alr-blog-card__body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.alr-blog-card__meta {
  font-family: var(--alr-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--alr-gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
[dir="rtl"] .alr-blog-card__meta {
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--alr-serif-ar);
  font-size: 13px;
}
.alr-blog-card__dot { opacity: 0.5; }
.alr-blog-card__cat { color: var(--alr-emerald); font-weight: 600; }

.alr-blog-card__title {
  font-family: var(--alr-serif-lat);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 14px;
}
[dir="rtl"] .alr-blog-card__title { font-family: var(--alr-serif-ar); font-weight: 700; font-size: 22px; }

.alr-blog-card__title a {
  color: var(--alr-forest);
  text-decoration: none;
  transition: color 0.25s;
}
.alr-blog-card__title a:hover { color: var(--alr-gold); }

.alr-blog-card__excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--alr-stone);
  margin: 0 0 20px;
  flex: 1;
}
[dir="rtl"] .alr-blog-card__excerpt { font-family: var(--alr-serif-ar); font-size: 16px; line-height: 1.85; }

.alr-blog-card__more {
  font-family: var(--alr-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--alr-forest);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  border-bottom: 1px solid var(--alr-gold);
  padding-bottom: 4px;
  transition: gap 0.25s, color 0.25s;
}
[dir="rtl"] .alr-blog-card__more {
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--alr-serif-ar);
  font-size: 14px;
}
.alr-blog-card__more:hover {
  color: var(--alr-gold);
  gap: 14px;
}

/* ── Pagination ── */
.alr-blog-pager {
  margin-top: 70px;
  display: flex;
  justify-content: center;
}
.alr-blog-pager .nav-links,
.alr-blog-pager .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.alr-blog-pager a.page-numbers,
.alr-blog-pager span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  font-family: var(--alr-display);
  font-size: 13px;
  color: var(--alr-forest);
  text-decoration: none;
  border: 1px solid var(--alr-rule);
  background: var(--alr-white);
  transition: all 0.25s var(--alr-ease);
}
.alr-blog-pager a.page-numbers:hover {
  background: var(--alr-gold);
  color: var(--alr-forest);
  border-color: var(--alr-gold);
}
.alr-blog-pager span.current {
  background: var(--alr-forest);
  color: var(--alr-ivory);
  border-color: var(--alr-forest);
}

/* ── Empty state ── */
.alr-blog-empty {
  text-align: center;
  padding: 80px 24px;
}
.alr-blog-empty__ornament {
  font-size: 32px;
  color: var(--alr-gold);
  margin-bottom: 20px;
  opacity: 0.5;
}
.alr-blog-empty h2 {
  font-family: var(--alr-serif-lat);
  color: var(--alr-forest);
  font-size: 28px;
  margin: 0 0 10px;
}
[dir="rtl"] .alr-blog-empty h2 { font-family: var(--alr-serif-ar); }
.alr-blog-empty p {
  color: var(--alr-stone);
  font-size: 16px;
}


/* ════════════════════════════════════════════════════════
   SINGLE POST
   ════════════════════════════════════════════════════════ */
.alr-single { background: var(--alr-ivory); }

.alr-single-header {
  background: var(--alr-forest);
  color: var(--alr-ivory);
  background-size: cover;
  background-position: center;
  padding: 140px 60px 100px;
  text-align: center;
  position: relative;
}
.alr-single-header__inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.alr-single-header__cat {
  display: inline-block;
  font-family: var(--alr-display);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--alr-gold);
  text-decoration: none;
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(152,133,97,0.4);
  transition: all 0.25s;
}
.alr-single-header__cat:hover { background: var(--alr-gold); color: var(--alr-forest); }
[dir="rtl"] .alr-single-header__cat { letter-spacing: 0; text-transform: none; font-family: var(--alr-serif-ar); font-size: 13px; }

.alr-single-header__title {
  font-family: var(--alr-serif-lat);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  margin: 0 0 28px;
  line-height: 1.2;
  color: var(--alr-ivory);
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
[dir="rtl"] .alr-single-header__title { font-family: var(--alr-serif-ar); font-weight: 700; }

.alr-single-header__meta {
  font-family: var(--alr-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(237,235,224,0.75);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
[dir="rtl"] .alr-single-header__meta { letter-spacing: 0; text-transform: none; font-family: var(--alr-serif-ar); font-size: 14px; }
.alr-single-header__dot { opacity: 0.4; }

.alr-single-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 40px 100px;
}

/* Content typography */
.alr-single-content {
  font-family: var(--alr-serif-lat);
  font-size: 18px;
  line-height: 1.85;
  color: var(--alr-charcoal);
}
[dir="rtl"] .alr-single-content {
  font-family: var(--alr-serif-ar);
  font-size: 19px;
  line-height: 2.05;
}
.alr-single-content > * + * { margin-top: 1.3em; }
.alr-single-content h2 {
  font-family: var(--alr-serif-lat);
  color: var(--alr-forest);
  font-size: 32px;
  font-weight: 500;
  margin-top: 2em;
  line-height: 1.3;
}
[dir="rtl"] .alr-single-content h2 { font-family: var(--alr-serif-ar); font-weight: 700; }
.alr-single-content h3 {
  font-family: var(--alr-serif-lat);
  color: var(--alr-emerald);
  font-size: 24px;
  font-weight: 500;
  margin-top: 1.8em;
}
[dir="rtl"] .alr-single-content h3 { font-family: var(--alr-serif-ar); font-weight: 700; }
.alr-single-content blockquote {
  margin: 2em 0;
  padding: 24px 32px;
  border-inline-start: 4px solid var(--alr-gold);
  background: var(--alr-paper);
  font-style: italic;
  color: var(--alr-forest);
  font-size: 1.1em;
}
[dir="rtl"] .alr-single-content blockquote { font-style: normal; }
.alr-single-content a {
  color: var(--alr-emerald);
  text-decoration: underline;
  text-decoration-color: var(--alr-gold);
  text-underline-offset: 3px;
}
.alr-single-content a:hover { color: var(--alr-gold); }
.alr-single-content img {
  margin: 1.8em auto;
  box-shadow: var(--alr-shadow-md);
}
.alr-single-content figcaption {
  font-size: 14px;
  color: var(--alr-stone);
  font-style: italic;
  text-align: center;
  margin-top: 8px;
}
.alr-single-content ul,
.alr-single-content ol {
  padding-inline-start: 1.4em;
}
.alr-single-content li { margin: 0.4em 0; }
.alr-single-content code {
  background: var(--alr-paper);
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 0.9em;
  color: var(--alr-cherry);
}
.alr-single-content pre {
  background: var(--alr-charcoal);
  color: var(--alr-ivory);
  padding: 20px 24px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
}

/* Tags */
.alr-single-tags {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--alr-rule);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.alr-single-tags__label {
  font-family: var(--alr-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--alr-gold);
}
[dir="rtl"] .alr-single-tags__label { letter-spacing: 0; text-transform: none; font-family: var(--alr-serif-ar); font-size: 14px; }
.alr-single-tags__list a {
  display: inline-block;
  margin: 0 4px;
  padding: 5px 12px;
  border: 1px solid var(--alr-rule);
  font-size: 13px;
  color: var(--alr-forest);
  text-decoration: none;
  transition: all 0.2s;
}
.alr-single-tags__list a:hover {
  background: var(--alr-gold);
  border-color: var(--alr-gold);
  color: var(--alr-forest);
}

/* Post navigation */
.alr-single-nav {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.alr-single-nav__item {
  display: block;
  padding: 24px 28px;
  background: var(--alr-white);
  border: 1px solid var(--alr-rule);
  text-decoration: none;
  transition: all 0.3s var(--alr-ease);
}
.alr-single-nav__item:hover {
  background: var(--alr-paper);
  border-color: var(--alr-gold);
  transform: translateY(-3px);
  box-shadow: var(--alr-shadow-sm);
}
.alr-single-nav__label {
  display: block;
  font-family: var(--alr-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--alr-gold);
  margin-bottom: 8px;
}
[dir="rtl"] .alr-single-nav__label { letter-spacing: 0; text-transform: none; font-family: var(--alr-serif-ar); font-size: 13px; }
.alr-single-nav__title {
  display: block;
  font-family: var(--alr-serif-lat);
  font-size: 18px;
  color: var(--alr-forest);
  font-weight: 500;
  line-height: 1.4;
}
[dir="rtl"] .alr-single-nav__title { font-family: var(--alr-serif-ar); font-weight: 700; }

.alr-single-nav__next { text-align: end; }
/* RTL: "next" visually appears on the left — same text-align:end works for both */

/* Comments */
.alr-single-comments { margin-top: 70px; padding-top: 30px; border-top: 1px solid var(--alr-rule); }


/* ════════════════════════════════════════════════════════
   FOCUS STYLES (accessibility — keyboard navigation)
   ════════════════════════════════════════════════════════ */
.alr-btn:focus-visible,
.alr-nav__list a:focus-visible,
.alr-lang-switch a:focus-visible,
.alr-link-ornate:focus-visible,
.alr-blog-card__title a:focus-visible,
.alr-blog-card__more:focus-visible,
.alr-news-card__more:focus-visible,
.alr-sight-card:focus-within,
.alr-single-nav__item:focus-visible,
.alr-single-header__cat:focus-visible,
.alr-single-tags__list a:focus-visible {
  outline: 2px solid var(--alr-gold);
  outline-offset: 3px;
}

.alr-form__input:focus,
.alr-form__textarea:focus {
  border-color: var(--alr-forest);
  box-shadow: 0 0 0 3px rgba(152,133,97,0.2);
}

.alr-chip:focus-visible {
  outline: 2px solid var(--alr-gold);
  outline-offset: 2px;
}


/* ════════════════════════════════════════════════════════
   TABLET BREAKPOINT (1100px) — 3-col → 2-col
   ════════════════════════════════════════════════════════ */
@media (max-width: 1100px) and (min-width: 981px) {
  .alr-news-grid { grid-template-columns: 1fr 1fr; }
  .alr-blog-grid { grid-template-columns: 1fr 1fr; }
  .alr-related__grid { grid-template-columns: 1fr 1fr; }
  .alr-sights { grid-template-columns: 1fr; }
  .alr-gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .alr-timeline__grid { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .alr-timeline::before { display: none; }
}


/* ════════════════════════════════════════════════════════
   DARK MODE — Heritage palette inverted
   System default (prefers-color-scheme) + manual [data-theme]
   ════════════════════════════════════════════════════════ */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --alr-bg:          #0F1C19;
    --alr-paper:       #16241F;
    --alr-ink:         #EDEBE0;
    --alr-deep:        #C7B189;
    --alr-earth:       #6FB5AA;
    --alr-earthSoft:   #87C4BA;
    --alr-sand:        #C7B189;
    --alr-olive:       #B9A779;
    --alr-oliveSoft:   #D4A597;
    --alr-rule:        rgba(199,177,137,0.14);
    --alr-rule-strong: rgba(199,177,137,0.28);
    --alr-white:       #16241F;
    --alr-charcoal:    #06120F;
    --alr-stone:       #B9A779;
    --alr-shadow-sm:   0 2px 10px rgba(0,0,0,0.42);
    --alr-shadow-md:   0 6px 24px rgba(0,0,0,0.50);
    --alr-shadow-lg:   0 16px 48px rgba(0,0,0,0.60);
  }
}
[data-theme="dark"] {
  --alr-bg:          #0F1C19;
  --alr-paper:       #16241F;
  --alr-ink:         #EDEBE0;
  --alr-deep:        #C7B189;
  --alr-earth:       #6FB5AA;
  --alr-earthSoft:   #87C4BA;
  --alr-sand:        #C7B189;
  --alr-olive:       #B9A779;
  --alr-oliveSoft:   #D4A597;
  --alr-rule:        rgba(199,177,137,0.14);
  --alr-rule-strong: rgba(199,177,137,0.28);
  --alr-white:       #16241F;
  --alr-charcoal:    #06120F;
  --alr-stone:       #B9A779;
  --alr-shadow-sm:   0 2px 10px rgba(0,0,0,0.42);
  --alr-shadow-md:   0 6px 24px rgba(0,0,0,0.50);
  --alr-shadow-lg:   0 16px 48px rgba(0,0,0,0.60);
}


/* ════════════════════════════════════════════════════════
   HERO REFINEMENTS — More breath, stronger hierarchy
   ════════════════════════════════════════════════════════ */
.alr-hero {
  min-height: 84vh;
  padding-block: clamp(120px, 16vw, 180px) clamp(90px, 12vw, 140px);
}
.alr-hero__title {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(52px, 8vw, 108px);
}
.alr-hero__sub {
  letter-spacing: 0.005em;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.7;
}
.alr-hero__divider { margin-bottom: 36px; }
.alr-hero__actions { gap: 18px; }

/* Button polish */
.alr-btn {
  border-radius: 999px;
  padding: 16px 36px;
  letter-spacing: 2.5px;
  transition: transform 0.3s var(--alr-ease),
              background 0.3s var(--alr-ease),
              border-color 0.3s var(--alr-ease),
              color 0.3s var(--alr-ease),
              box-shadow 0.3s var(--alr-ease);
}
.alr-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(152,133,97,0.45);
}
.alr-btn--ghost:hover {
  transform: translateY(-3px);
}


/* ════════════════════════════════════════════════════════
   SIGHTS — Bento Grid (asymmetric, modern 2026)
   Featured card spans 2×2, three small cards fill the rest.
   ════════════════════════════════════════════════════════ */
.alr-sights--bento {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 20px;
  max-width: 1200px;
}

/* Default for non-featured bento cards: span 2 cols, horizontal layout */
.alr-sights--bento .alr-sight-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 38% 62%;
  border-radius: 12px;
}
.alr-sights--bento .alr-sight-card .alr-photo-slot {
  height: 100%;
  min-height: 220px;
}
.alr-sights--bento .alr-sight-card__body {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.alr-sights--bento .alr-sight-card__title {
  font-size: 23px;
}
.alr-sights--bento .alr-sight-card__desc {
  font-size: 14.5px;
  line-height: 1.65;
}

/* Featured card: spans 2 cols × 2 rows, vertical photo-on-top layout */
.alr-sights--bento .alr-sight-card--featured {
  grid-column: span 2;
  grid-row: span 2;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
}
.alr-sights--bento .alr-sight-card--featured .alr-photo-slot {
  height: 100%;
  min-height: 340px;
}
.alr-sights--bento .alr-sight-card--featured .alr-sight-card__body {
  padding: 34px 36px 36px;
}
.alr-sights--bento .alr-sight-card--featured .alr-sight-card__title {
  font-size: 34px;
  line-height: 1.15;
}
.alr-sights--bento .alr-sight-card--featured .alr-sight-card__desc {
  font-size: 16px;
  line-height: 1.75;
}

/* Last card spans full width (4 cols) for nice bento bottom row */
.alr-sights--bento .alr-sight-card:nth-child(4) {
  grid-column: span 4;
  grid-template-columns: 28% 72%;
}
.alr-sights--bento .alr-sight-card:nth-child(4) .alr-photo-slot {
  min-height: 240px;
}
.alr-sights--bento .alr-sight-card:nth-child(4) .alr-sight-card__body {
  padding: 32px 40px;
}
.alr-sights--bento .alr-sight-card:nth-child(4) .alr-sight-card__title {
  font-size: 28px;
}

/* Micro-interaction: image breathing on hover */
.alr-sights--bento .alr-sight-card .alr-photo-slot {
  transition: transform 0.7s var(--alr-ease);
}
.alr-sights--bento .alr-sight-card:hover .alr-photo-slot {
  transform: scale(1.03);
}

/* Tablet bento: featured full-width, others stack 2-up */
@media (max-width: 1100px) and (min-width: 769px) {
  .alr-sights--bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .alr-sights--bento .alr-sight-card,
  .alr-sights--bento .alr-sight-card--featured,
  .alr-sights--bento .alr-sight-card:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
    grid-template-columns: 1fr;
  }
  .alr-sights--bento .alr-sight-card .alr-photo-slot {
    height: 260px;
    min-height: 260px;
  }
}

/* Mobile bento: 1 column, vertical stacks */
@media (max-width: 768px) {
  .alr-sights--bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }
  .alr-sights--bento .alr-sight-card,
  .alr-sights--bento .alr-sight-card--featured,
  .alr-sights--bento .alr-sight-card:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
    grid-template-columns: 1fr;
  }
  .alr-sights--bento .alr-sight-card .alr-photo-slot {
    height: 220px;
    min-height: 220px;
  }
  .alr-sights--bento .alr-sight-card__body { padding: 22px 22px 26px; }
  .alr-sights--bento .alr-sight-card--featured .alr-sight-card__title { font-size: 26px; }
}


/* ════════════════════════════════════════════════════════
   TESTIMONIALS — Stimmen der Stadt
   ════════════════════════════════════════════════════════ */
.alr-testimonials {
  background: var(--alr-paper);
  position: relative;
}
.alr-testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/pattern-tile.svg');
  background-size: 220px 220px;
  opacity: 0.04;
  pointer-events: none;
}
.alr-testimonials > * { position: relative; z-index: 1; }

.alr-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.alr-tcard {
  background: var(--alr-bg);
  border: 1px solid var(--alr-rule);
  border-radius: 14px;
  padding: 36px 32px 28px;
  margin: 0;
  position: relative;
  transition: transform 0.35s var(--alr-ease),
              box-shadow 0.35s var(--alr-ease),
              border-color 0.35s var(--alr-ease);
}
.alr-tcard:hover {
  transform: translateY(-4px);
  border-color: var(--alr-sand);
  box-shadow: var(--alr-shadow-md);
}

.alr-tcard__mark {
  font-family: var(--alr-serif-lat);
  font-size: 72px;
  line-height: 0.6;
  color: var(--alr-sand);
  opacity: 0.45;
  position: absolute;
  top: 18px;
  inset-inline-start: 22px;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
[dir="rtl"] .alr-tcard__mark {
  font-family: var(--alr-serif-ar);
  font-size: 56px;
  top: 14px;
}

.alr-tcard__quote {
  font-family: var(--alr-serif-lat);
  font-size: 17px;
  line-height: 1.7;
  color: var(--alr-ink);
  margin: 18px 0 28px;
  padding: 0;
  border: none;
  font-style: italic;
  position: relative;
  z-index: 1;
}
[dir="rtl"] .alr-tcard__quote {
  font-family: var(--alr-serif-ar);
  font-style: normal;
  font-size: 18px;
  line-height: 1.95;
}

.alr-tcard__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--alr-rule);
}
.alr-tcard__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--alr-sand), var(--alr-earth));
  display: grid;
  place-items: center;
  color: var(--alr-bg);
  font-family: var(--alr-display);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(152,133,97,0.30);
}
[dir="rtl"] .alr-tcard__avatar {
  font-family: var(--alr-serif-ar);
  font-size: 18px;
}
.alr-tcard__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}
.alr-tcard__name {
  font-family: var(--alr-serif-lat);
  font-size: 15px;
  font-weight: 600;
  color: var(--alr-deep);
}
[dir="rtl"] .alr-tcard__name { font-family: var(--alr-serif-ar); font-size: 16px; font-weight: 700; }
.alr-tcard__role {
  font-family: var(--alr-display);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--alr-earth);
}
[dir="rtl"] .alr-tcard__role {
  font-family: var(--alr-serif-ar);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}


/* ════════════════════════════════════════════════════════
   FINAL CTA — Werde Teil dieser Geschichte
   ════════════════════════════════════════════════════════ */
.alr-cta {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 60px) clamp(80px, 10vw, 120px);
  background: var(--alr-bg);
}
.alr-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--alr-forest) 0%, var(--alr-emerald) 100%);
  color: var(--alr-ivory);
  border-radius: 28px;
  padding: clamp(56px, 8vw, 96px) clamp(32px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 30px 80px rgba(5,66,57,0.30);
}
.alr-cta__inner::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto auto;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(199,177,137,0.30), transparent 65%);
  pointer-events: none;
  z-index: -1;
}
.alr-cta__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/pattern-tile.svg');
  background-size: 180px 180px;
  opacity: 0.06;
  pointer-events: none;
  z-index: -1;
}
.alr-cta__kicker {
  display: inline-block;
  font-family: var(--alr-display);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--alr-gold);
  margin-bottom: 22px;
}
[dir="rtl"] .alr-cta__kicker {
  font-family: var(--alr-serif-ar);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}
.alr-cta__title {
  font-family: var(--alr-serif-lat);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  color: var(--alr-ivory);
}
[dir="rtl"] .alr-cta__title {
  font-family: var(--alr-serif-ar);
  font-weight: 700;
  letter-spacing: 0;
}
.alr-cta__sub {
  font-family: var(--alr-serif-lat);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  color: rgba(237,235,224,0.82);
  margin: 0 auto 40px;
  max-width: 56ch;
}
[dir="rtl"] .alr-cta__sub {
  font-family: var(--alr-serif-ar);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.95;
}

/* CTA button variant — gold filled */
.alr-btn--cta {
  background: var(--alr-gold);
  color: var(--alr-forest);
  border-color: var(--alr-gold);
  font-weight: 600;
  padding: 18px 42px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.alr-btn--cta:hover {
  background: var(--alr-ivory);
  border-color: var(--alr-ivory);
  color: var(--alr-forest);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.30);
}
.alr-btn__arrow {
  display: inline-block;
  transition: transform 0.3s var(--alr-ease);
}
.alr-btn--cta:hover .alr-btn__arrow { transform: translateX(4px); }
[dir="rtl"] .alr-btn--cta:hover .alr-btn__arrow { transform: translateX(-4px); }


/* ════════════════════════════════════════════════════════
   RESPONSIVE — Testimonials + CTA on small screens
   ════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .alr-testimonials__grid { grid-template-columns: 1fr; gap: 18px; }
  .alr-cta { padding-inline: 20px; }
  .alr-cta__inner { padding: 56px 28px; border-radius: 20px; }
}


/* ════════════════════════════════════════════════════════
   HISTORY TIMELINE — Dark Forest Band
   Era name (top) → Year → Dot (on gold line) → Description
   ════════════════════════════════════════════════════════ */
.alr-history-timeline {
  background: var(--alr-forest);
  color: var(--alr-ivory);
  padding: 70px 60px 80px;
  position: relative;
  overflow: hidden;
}
.alr-history-timeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/pattern-tile.svg');
  background-size: 220px 220px;
  opacity: 0.05;
  pointer-events: none;
}
.alr-history-timeline > * { position: relative; z-index: 1; }

/* Override base .alr-timeline when in dark band */
.alr-history-timeline .alr-timeline {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  padding: 16px 0;
}
.alr-history-timeline .alr-timeline::before { display: none; }

/* The horizontal gold line that runs through all dots */
.alr-history-timeline .alr-timeline__line {
  position: absolute;
  top: 50%;
  inset-inline: 6%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(199,177,137,0.50) 6%,
    rgba(199,177,137,0.50) 94%,
    transparent 100%);
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.alr-history-timeline .alr-timeline__grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  position: relative;
  z-index: 1;
}

.alr-history-timeline .alr-timeline__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  min-height: 220px;
  position: relative;
}

/* Top half: era name + year */
.alr-history-timeline .alr-timeline__head {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 18px;
  gap: 6px;
}
.alr-history-timeline .alr-timeline__label {
  font-family: var(--alr-serif-lat);
  font-size: 17px;
  font-weight: 500;
  color: var(--alr-ivory);
  line-height: 1.25;
  margin: 0;
}
[dir="rtl"] .alr-history-timeline .alr-timeline__label {
  font-family: var(--alr-serif-ar);
  font-size: 18px;
  font-weight: 700;
}
.alr-history-timeline .alr-timeline__year {
  font-family: var(--alr-display);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--alr-gold);
  text-transform: uppercase;
}
[dir="rtl"] .alr-history-timeline .alr-timeline__year {
  font-family: var(--alr-serif-ar);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

/* Dot — sits exactly on the gold line */
.alr-history-timeline .alr-timeline__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--alr-gold);
  border: none;
  margin: 0;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
  box-shadow:
    0 0 0 4px var(--alr-forest),
    0 0 14px rgba(199,177,137,0.55);
  transition: transform 0.35s var(--alr-ease),
              box-shadow 0.35s var(--alr-ease);
}
.alr-history-timeline .alr-timeline__item:hover .alr-timeline__dot {
  transform: scale(1.5);
  box-shadow:
    0 0 0 5px var(--alr-forest),
    0 0 20px rgba(199,177,137,0.85);
}

/* Bottom half: description */
.alr-history-timeline .alr-timeline__desc {
  flex: 1;
  padding-top: 18px;
  font-family: var(--alr-serif-lat);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(237,235,224,0.72);
  max-width: 220px;
}
[dir="rtl"] .alr-history-timeline .alr-timeline__desc {
  font-family: var(--alr-serif-ar);
  font-size: 14px;
  line-height: 1.85;
}

/* Tablet: 3 columns */
@media (max-width: 1100px) and (min-width: 769px) {
  .alr-history-timeline .alr-timeline__grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 32px;
  }
  .alr-history-timeline .alr-timeline__line { display: none; }
  .alr-history-timeline .alr-timeline__dot {
    margin: 10px 0;
    box-shadow: 0 0 0 4px var(--alr-forest), 0 0 14px rgba(199,177,137,0.55);
  }
}

/* Mobile: stacked single column, no horizontal line */
@media (max-width: 768px) {
  .alr-history-timeline { padding: 56px 24px; }
  .alr-history-timeline .alr-timeline__grid {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
  .alr-history-timeline .alr-timeline__line { display: none; }
  .alr-history-timeline .alr-timeline__item {
    min-height: 0;
    padding: 0;
  }
  .alr-history-timeline .alr-timeline__head { padding-bottom: 10px; }
  .alr-history-timeline .alr-timeline__desc { padding-top: 10px; }
  .alr-history-timeline .alr-timeline__dot { margin: 6px 0; }
}


/* ════════════════════════════════════════════════════════
   REDUCED MOTION — respect OS preference
   ════════════════════════════════════════════════════════ */
@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;
  }
  .alr-hero__brand-mark { animation: none; opacity: 0.85; }
  .alr-sight-card:hover .alr-photo-slot { transform: none; }
  .alr-blog-card:hover .alr-blog-card__img { transform: none; }
  .alr-sight-card:hover,
  .alr-blog-card:hover,
  .alr-news-card:hover,
  .alr-single-nav__item:hover { transform: none; }
}


/* ════════════════════════════════════════════════════════
   HERO VIDEO — Full-cover background loop
   Sits at z-index -2 so the pattern (::before) and content
   (.alr-hero__inner z-index 1) stay above. Poster image
   acts as fallback while the video loads.
   ════════════════════════════════════════════════════════ */
.alr-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: -2;
  pointer-events: none;
  border: 0;
  display: block;
}

/* When video is the hero background, suppress the slideshow + its forced bg */
.alr-hero--video .alr-hero__slides { display: none; }
.alr-hero--video.alr-hero--slideshow { background: var(--alr-forest); }


/* ════════════════════════════════════════════════════════
   HERO SLIDESHOW — Dropping effect (3 images, auto-cycle)
   ════════════════════════════════════════════════════════ */

/* When JS is active: strip the static background, slides take over */
.alr-hero--slideshow {
  background: var(--alr-forest) !important;
}

/* Slide wrapper sits at z-index -2, below the ::before/-1 and ::after/-1
   pseudo-elements so the tile pattern + ivory fade remain on top */
.alr-hero__slides {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.alr-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  opacity: 0;
  will-change: clip-path, opacity;
}
.alr-hero__slide.is-active {
  opacity: 1;
}

/* Drop-in keyframe: new image reveals top → bottom */
@keyframes alr-hero-drop {
  from {
    clip-path: inset(0 0 100% 0);
    opacity: 1;
  }
  to {
    clip-path: inset(0 0 0% 0);
    opacity: 1;
  }
}
.alr-hero__slide--entering {
  animation: alr-hero-drop 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
