/* ============================================================
   HICRET Islamische Bestattungen — Stylesheet
   Palette: warmes Schwarz (Logo), Elfenbein, tiefes Grün, Gold
   Schrift: Cormorant Garamond (Headlines) · DM Sans (Text) · Amiri (Arabisch)
   ============================================================ */
@import url("../fonts/fonts.css");

:root {
  --ink: #16120f;
  --ink-2: #221c18;
  --ink-3: #3a322c;
  --ivory: #f7f3ee;
  --ivory-2: #efe9e1;
  --sand: #dcd2c5;
  --stone: #857a6f;
  --text: #2b2521;
  --green: #2e5a48;
  --green-2: #234739;
  --green-soft: #e4ede8;
  --gold: #c9a13f;
  --gold-2: #dfbe5e;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(22, 18, 15, .10);
  --shadow-sm: 0 6px 20px rgba(22, 18, 15, .08);
  --font-head: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "DM Sans", "Segoe UI", Arial, sans-serif;
  --font-arabic: "Amiri", "Scheherazade", serif;
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--ivory);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-2); }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; margin: 0 0 .5em; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
h3 { font-size: 1.55rem; }
p { margin: 0 0 1.1em; }
ul { padding-left: 1.2em; }
.container { width: min(1200px, 92vw); margin: 0 auto; }
.container--narrow { width: min(860px, 92vw); margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.lead { font-size: 1.2rem; line-height: 1.6; color: var(--ink-3); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section--white { background: var(--white); }
.section--dark { background: var(--ink); color: #e7e0d7; }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .lead { color: #cfc5b8; }
.section--green { background: var(--green-2); color: #e6efe9; }
.section--green h2, .section--green h3 { color: var(--white); }
.section-head { max-width: 960px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head .lead { max-width: 720px; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 999px; font-weight: 600; font-size: 1rem;
  border: 1.5px solid transparent; cursor: pointer; transition: all .25s ease; line-height: 1.2;
  font-family: var(--font-body);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn--primary:hover { background: var(--green-2); border-color: var(--green-2); color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(46, 90, 72, .3); }
.btn--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-2); border-color: var(--gold-2); color: var(--ink); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--ink); border-color: rgba(22, 18, 15, .35); }
.btn--outline:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .5); }
.btn--outline-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--dark:hover { background: var(--ink-3); border-color: var(--ink-3); color: var(--white); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink); color: #d9d0c5; font-size: .88rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar__note { display: flex; align-items: center; gap: .55rem; color: var(--gold-2); font-weight: 500; }
.topbar__note .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(184, 150, 92, .25); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(184, 150, 92, .25); } 50% { box-shadow: 0 0 0 7px rgba(184, 150, 92, .08); } }
.topbar__links { display: flex; gap: 1.4rem; align-items: center; }
.topbar__links a { color: #fff; display: inline-flex; align-items: center; gap: .4rem; font-weight: 500; }
.topbar__links a:hover { color: var(--gold-2); }
.topbar__links svg { width: 15px; height: 15px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(35, 71, 57, .97); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 8px 30px rgba(22, 18, 15, .25); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; height: var(--header-h); }
.logo { display: flex; align-items: center; gap: 1rem; }
.logo img { height: 58px; width: auto; }
.nav { display: flex; align-items: center; gap: .2rem; flex-wrap: nowrap; }
.nav a {
  color: #fff; font-weight: 500; font-size: .98rem; padding: .55rem .85rem; border-radius: 999px; white-space: nowrap;
  position: relative; transition: background .2s, color .2s;
}
.nav a:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.nav a.active { color: var(--gold-2); font-weight: 600; }
.nav a.active::after { content: ""; position: absolute; left: 50%; bottom: 2px; transform: translateX(-50%); width: 18px; height: 2px; background: var(--gold); border-radius: 2px; }
.header__right { display: flex; align-items: center; gap: .9rem; }
.lang { display: inline-flex; border: 1px solid rgba(255, 255, 255, .35); border-radius: 999px; padding: 3px; background: rgba(255, 255, 255, .06); }
.lang a { padding: .3rem .75rem; border-radius: 999px; font-size: .82rem; font-weight: 700; letter-spacing: .08em; color: #d9d0c5; }
.lang a.active { background: var(--gold); color: var(--ink); }
.header .btn--call { padding: .75rem 1.3rem; font-size: .95rem; }

.nav-toggle {
  display: none; align-items: center; justify-content: center; gap: .55rem;
  background: var(--ink); color: var(--white); border: 1px solid rgba(255, 255, 255, .25); border: 0; border-radius: 999px;
  padding: .7rem 1.05rem; cursor: pointer; z-index: 1001; font-weight: 600; font-size: .9rem; font-family: var(--font-body);
}
.nav-toggle .bars { width: 22px; height: 16px; position: relative; display: block; }
.nav-toggle .bars span { position: absolute; left: 0; width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.nav-toggle .bars span:nth-child(1) { top: 0; }
.nav-toggle .bars span:nth-child(2) { top: 7px; }
.nav-toggle .bars span:nth-child(3) { top: 14px; }
.nav-toggle.open .bars span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav-toggle.open .bars span:nth-child(2) { opacity: 0; }
.nav-toggle.open .bars span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* Mobile panel */
.mobile-panel {
  position: fixed; inset: 0; z-index: 1000; background: var(--ink); color: var(--white);
  transform: translateX(100%); transition: transform .38s cubic-bezier(.65, 0, .35, 1);
  overflow-y: auto; padding: 1.4rem 6vw 3rem; display: flex; flex-direction: column;
}
.mobile-panel.open { transform: translateX(0); }
.mobile-panel__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.mobile-panel__logo { display: inline-block; width: fit-content; }
.mobile-panel__close { width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .08); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; display: grid; place-items: center; flex: none; }
.mobile-panel__close:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.mobile-panel__logo img { height: auto; max-height: 52px; width: auto; max-width: 55vw; }
.mobile-panel nav a {
  display: block; color: var(--white); font-family: var(--font-head); font-size: 1.6rem; font-weight: 500;
  padding: .5rem 0; border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.mobile-panel nav a.active { color: var(--gold-2); }
.mobile-panel__contact { margin-top: 2rem; display: grid; gap: .8rem; }
.mobile-panel__contact a { color: var(--white); display: flex; align-items: center; gap: .7rem; font-size: 1.05rem; }
.mobile-panel__contact svg { width: 20px; height: 20px; color: var(--gold-2); }
.mobile-panel .lang { margin: 0 auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: calc(100vh - var(--header-h) - 40px); min-height: 640px;
  display: flex; align-items: center; color: var(--white); overflow: hidden;
  background: var(--ink);
}
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(22, 18, 15, .88) 0%, rgba(22, 18, 15, .68) 45%, rgba(22, 18, 15, .35) 100%),
              linear-gradient(0deg, rgba(22, 18, 15, .85) 0%, transparent 45%);
}
.hero__pattern { position: absolute; inset: 0; opacity: .08; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='.8'%3E%3Cpath d='M60 6l14 30 30 14-30 14-14 30-14-30-30-14 30-14z'/%3E%3Ccircle cx='60' cy='60' r='16'/%3E%3C/g%3E%3C/svg%3E"); background-size: 120px; mix-blend-mode: overlay; }
.hero .container { position: relative; z-index: 2; padding: clamp(4rem, 8vw, 7rem) 0; }
.hero__inner { max-width: 760px; }
.hero .eyebrow { color: var(--gold-2); }
.hero .eyebrow::before { background: var(--gold-2); }
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; font-weight: 500; color: var(--gold-2); }
.hero p { font-size: 1.22rem; color: #e3dbd0; max-width: 600px; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__crescent {
  position: absolute; right: -4vw; bottom: -8vw; width: clamp(280px, 38vw, 560px); height: auto; opacity: .12; z-index: 1; color: var(--gold-2);
  animation: floatY 9s ease-in-out infinite;
}
@keyframes floatY { 0%, 100% { transform: translateY(0) rotate(-8deg); } 50% { transform: translateY(-14px) rotate(-6deg); } }
.hero__since {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, .14);
  background: rgba(22, 18, 15, .45); backdrop-filter: blur(8px);
}
.hero__since .container { display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; padding: 1.1rem 0; align-items: center; }
.hero__since span { display: inline-flex; align-items: center; gap: .7rem; font-size: .95rem; color: #fff; font-weight: 500; }
.hero__since .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); flex: none; box-shadow: 0 0 0 3px rgba(201, 161, 63, .22); }

/* ---------- Trauerfall-Band ---------- */
.emergency { background: var(--green-2); color: var(--white); position: relative; }
.emergency .container { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 1.4rem; padding: 2rem 0; align-items: stretch; }
.emergency__title { display: flex; flex-direction: column; justify-content: center; }
.emergency__title { font-family: var(--font-head); font-size: 1.75rem; line-height: 1.15; }
.emergency__title small { display: block; font-family: var(--font-body); font-size: .85rem; color: #b9d0c3; margin-top: .3rem; letter-spacing: .04em; }
.emergency__item { display: flex; align-items: center; gap: .9rem; color: var(--white); padding: .9rem 1.1rem; min-height: 86px; border-radius: var(--radius-sm); background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .1); transition: .25s; }
a.emergency__item:hover { background: rgba(255, 255, 255, .14); transform: translateY(-2px); }
a.emergency__item:hover strong, a.emergency__item:hover small { color: var(--gold-2); }
.emergency__item strong, .emergency__item small { transition: color .25s; }
.emergency__item svg { width: 26px; height: 26px; color: var(--gold-2); flex: none; }
.emergency__item small { display: block; font-size: .78rem; color: #b9d0c3; letter-spacing: .06em; text-transform: uppercase; }
.emergency__item strong { font-size: 1.05rem; font-weight: 600; line-height: 1.3; }

/* ---------- Intro / About ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split--reverse > :first-child { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.split__media .badge {
  position: absolute; bottom: -1.4rem; left: -1.4rem; background: var(--ink); color: var(--white); border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem; display: flex; align-items: center; gap: 1rem; box-shadow: var(--shadow);
}
.split__media .badge .num { font-family: var(--font-head); font-size: 2.6rem; line-height: 1; color: var(--gold-2); font-weight: 600; }
.split__media .badge span { font-size: .85rem; line-height: 1.3; color: #d9d0c5; max-width: 130px; }
.split__media .frame { position: absolute; inset: 1.4rem -1.4rem -1.4rem 1.4rem; border: 1px solid var(--gold); border-radius: var(--radius); z-index: -1; opacity: .6; }
.checklist { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .75rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; }
.checklist li::before { content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%; background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e5a48' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/12px no-repeat; }
.section--dark .checklist li::before { background-color: rgba(214, 183, 124, .18); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d6b77c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E"); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: clamp(3rem, 6vw, 5rem); }
.stat { background: var(--white); border-radius: var(--radius); padding: 1.6rem 1.5rem; border: 1px solid rgba(22, 18, 15, .06); box-shadow: var(--shadow-sm); text-align: center; }
.stat .num { font-family: var(--font-body); font-size: 2.4rem; font-weight: 700; color: var(--green); line-height: 1; letter-spacing: -.02em; }
.stat .num sup { font-size: 1em; color: var(--gold); font-weight: 700; vertical-align: baseline; line-height: 1; }
.stat p { margin: .5rem 0 0; font-size: .95rem; color: var(--stone); }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.service {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.8rem; border: 1px solid rgba(22, 18, 15, .06);
  transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden;
}
.service::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service:hover::after { transform: scaleX(1); }
.service__icon { width: 58px; height: 58px; border-radius: 16px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin-bottom: 1.3rem; }
.service__icon svg { width: 28px; height: 28px; }
.service h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.22rem; letter-spacing: -.01em; margin-bottom: .55rem; }
.service p { margin: 0; color: var(--ink-3); font-size: .98rem; }
.section--dark .service { background: var(--ink-2); border-color: rgba(255, 255, 255, .06); }
.section--dark .service h3 { color: var(--white); }
.section--dark .service p { color: #c9bfb3; }
.section--dark .service__icon { background: rgba(214, 183, 124, .12); color: var(--gold-2); }

/* ---------- Steps / Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; position: relative; }
.steps::before { content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .5; }
.step { position: relative; padding-top: .4rem; }
.step__num {
  width: 68px; height: 68px; border-radius: 50%; background: var(--ink); color: var(--gold-2); border: 1px solid var(--gold);
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 600; display: grid; place-items: center; margin-bottom: 1.2rem;
  position: relative; z-index: 1; box-shadow: 0 0 0 8px var(--ivory);
}
.section--white .step__num { box-shadow: 0 0 0 8px var(--white); }
.step h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.18rem; letter-spacing: -.01em; margin-bottom: .45rem; }
.step p { color: var(--ink-3); font-size: .97rem; margin: 0; }

/* ---------- Quote (Arabic) ---------- */
.quote { text-align: center; }
.quote__arabic { font-family: var(--font-arabic); font-size: clamp(2.2rem, 5vw, 3.6rem); direction: rtl; color: var(--gold-2); line-height: 1.7; margin-bottom: .5rem; }
.quote__trans { font-family: var(--font-head); font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-style: italic; color: #e7e0d7; max-width: 720px; margin: 0 auto .6rem; }
.quote__src { font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.quote__ornament { width: 120px; height: 20px; margin: 0 auto 1.6rem; color: var(--gold); }

/* ---------- Überführung / Feature band ---------- */
.feature { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.feature__card {
  border-radius: var(--radius); padding: 2.2rem; background: var(--white); border: 1px solid rgba(22, 18, 15, .06);
  display: flex; flex-direction: column; gap: .6rem;
}
.feature__card--accent { background: var(--green); color: var(--white); border-color: var(--green); }
.feature__card--accent h3, .feature__card--accent p { color: var(--white); }
.feature__card--accent .btn { align-self: flex-start; margin-top: auto; }
.feature__card h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.35rem; letter-spacing: -.01em; }
.feature__card p { color: var(--ink-3); margin: 0; }
.feature__card--accent p { color: #e6efe9; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; grid-auto-flow: dense; gap: 1rem; }
.gallery-item { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius-sm); cursor: zoom-in; background: var(--sand); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(22, 18, 15, .55), transparent 55%); opacity: 0; transition: .3s; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .cap { position: absolute; left: 1rem; bottom: .9rem; color: var(--white); font-size: .9rem; font-weight: 500; z-index: 1; opacity: 0; transform: translateY(6px); transition: .3s; }
.gallery-item:hover .cap { opacity: 1; transform: none; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.lightbox { position: fixed; inset: 0; z-index: 1200; background: rgba(12, 10, 8, .94); display: none; align-items: center; justify-content: center; padding: 3rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0, 0, 0, .6); }
.lightbox .cap-text { position: absolute; bottom: 1.4rem; left: 0; right: 0; text-align: center; color: #d9d0c5; font-size: .95rem; }
.lightbox button { position: absolute; background: rgba(255, 255, 255, .1); color: #fff; border: 1px solid rgba(255, 255, 255, .25); width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; display: grid; place-items: center; transition: .2s; }
.lightbox button:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.lightbox-close { top: 1.2rem; right: 1.2rem; }
.lightbox-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.cta__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .28; filter: grayscale(30%); }
.cta .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: center; padding: clamp(4rem, 7vw, 6rem) 0; }
.cta h2 { color: var(--white); }
.cta p { color: #d9d0c5; font-size: 1.1rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: flex-end; }

/* ---------- Page hero (Unterseiten) ---------- */
.page-hero { background: var(--ink); color: var(--white); position: relative; overflow: hidden; padding: clamp(3.5rem, 7vw, 6rem) 0; }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .3; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22, 18, 15, .9), rgba(22, 18, 15, .4)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: .6rem; }
.page-hero p { color: #d9d0c5; font-size: 1.15rem; max-width: 620px; margin: 0; }
.page-hero .eyebrow { color: var(--gold-2); }
.page-hero .eyebrow::before { background: var(--gold-2); }
.breadcrumb { display: flex; gap: .5rem; font-size: .85rem; color: #b5aa9d; margin-bottom: 1.4rem; }
.breadcrumb a { color: #d9d0c5; }
.breadcrumb a:hover { color: var(--gold-2); }

/* ---------- Content / Legal ---------- */
.prose h2 { font-size: 1.9rem; margin-top: 2.4rem; }
.prose h3 { font-size: 1.35rem; margin-top: 1.8rem; }
.prose p, .prose li { color: var(--text); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose .box { background: var(--white); border: 1px solid rgba(22, 18, 15, .08); border-radius: var(--radius-sm); padding: 1.4rem 1.6rem; margin: 1.4rem 0; }
.prose .box p:last-child { margin-bottom: 0; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.value { padding: 1.8rem; border-radius: var(--radius); background: var(--ivory-2); border: 1px solid rgba(22, 18, 15, .05); }
.value__icon { width: 46px; height: 46px; color: var(--gold); margin-bottom: 1rem; }
.value h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.18rem; letter-spacing: -.01em; }
.value p { margin: 0; color: var(--ink-3); font-size: .97rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-card { background: var(--ink); color: var(--white); border-radius: var(--radius); padding: 2.2rem; position: sticky; top: calc(var(--header-h) + 1.5rem); }
.contact-card h3 { color: var(--white); font-family: var(--font-body); font-weight: 700; font-size: 1.35rem; letter-spacing: -.01em; }
.contact-card__list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 1.1rem; }
.contact-card__list li { display: flex; gap: .95rem; align-items: flex-start; }
.contact-card__list svg { width: 22px; height: 22px; color: var(--gold-2); flex: none; margin-top: 3px; }
.contact-card__list small { display: block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: #a89d90; margin-bottom: .1rem; }
.contact-card__list a { color: var(--white); font-weight: 500; }
.contact-card__list a:hover { color: var(--gold-2); }
.contact-card__note { margin-top: 1.6rem; padding: 1rem 1.1rem; border-radius: var(--radius-sm); background: rgba(214, 183, 124, .12); border: 1px solid rgba(214, 183, 124, .3); color: #ecd9b3; font-size: .93rem; }
.contact-card__note p { margin: 0; }

.form { background: var(--white); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); border: 1px solid rgba(22, 18, 15, .07); box-shadow: var(--shadow-sm); }
.form h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.35rem; letter-spacing: -.01em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .4rem; color: var(--ink-3); }
.req { color: #c62828; font-size: 1.9em; font-weight: 700; line-height: 0; vertical-align: -.3em; display: inline-block; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--sand); border-radius: var(--radius-sm); font: inherit; font-size: 1rem;
  background: var(--ivory); color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(46, 90, 72, .12); background: var(--white); }
.form-field textarea { min-height: 140px; resize: vertical; }
.form-check { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--ink-3); margin-bottom: 1.1rem; }
.form-check input { margin-top: .3rem; width: 18px; height: 18px; accent-color: var(--green); flex: none; }
.form-check a { text-decoration: underline; }

/* Captcha — farbige Ziffern-Chips */
.captcha { background: var(--ivory-2); border-radius: var(--radius-sm); padding: 1rem 1.1rem; margin-bottom: 1.1rem; border: 1px dashed var(--sand); }
.captcha label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .6rem; color: var(--ink-3); }
.captcha__row { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.captcha__q { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.captcha__chip { display: inline-grid; place-items: center; min-width: 42px; height: 42px; padding: 0 .5rem; border-radius: 12px; color: #fff; font-size: 1.35rem; font-weight: 700; font-family: var(--font-body); box-shadow: 0 4px 12px rgba(0, 0, 0, .15); text-shadow: 0 1px 2px rgba(0, 0, 0, .25); }
.captcha input { width: 110px; padding: .7rem .9rem; border: 1.5px solid var(--sand); border-radius: var(--radius-sm); font: inherit; font-size: 1.05rem; background: var(--white); text-align: center; }
.captcha input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(46, 90, 72, .12); }
.captcha__refresh { background: none; border: 0; color: var(--green); cursor: pointer; font-size: .85rem; font-weight: 600; display: inline-flex; align-items: center; gap: .3rem; font-family: var(--font-body); }
.captcha__refresh svg { width: 15px; height: 15px; }
.form-status { margin-top: 1rem; font-weight: 500; min-height: 1.4em; }
.form-status.ok { color: #2e7d32; }
.form-status.err { color: #b71c1c; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.map { margin-top: clamp(2.5rem, 5vw, 4rem); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(22, 18, 15, .07); }
.map iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(20%) contrast(1.02); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #c9bfb3; padding: clamp(3.5rem, 6vw, 5rem) 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer__logo { display: inline-block; margin-bottom: 1.2rem; }
.footer__logo img { height: 60px; width: auto; }
.footer p { font-size: .95rem; }
.footer h4 { color: var(--white); font-family: var(--font-body); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer a { color: #d9d0c5; }
.footer a:hover { color: var(--gold-2); }
.footer__contact li { display: flex; gap: .7rem; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--gold-2); flex: none; margin-top: 4px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding: 1.4rem 0; font-size: .85rem; color: #8e8377; }
.footer__bottom a { color: #b5aa9d; margin-left: 1.2rem; }
.footer__ayah { font-family: var(--font-arabic); direction: rtl; text-align: left; color: var(--gold); font-size: 1.35rem; margin-top: 1.4rem; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 1300; background: var(--ink); color: #e7e0d7;
  border-radius: var(--radius-sm); padding: 1.1rem 1.4rem; display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35); border: 1px solid rgba(255, 255, 255, .1); max-width: 980px; margin: 0 auto;
  animation: cookieIn .5s ease-out;
}
@keyframes cookieIn { from { transform: translateY(20px); opacity: 0; } }
.cookie p { margin: 0; flex: 1; font-size: .92rem; min-width: 240px; }
.cookie a { color: var(--gold-2); text-decoration: underline; }
.cookie button { background: #c62828; color: #fff; border: 0; padding: .7rem 1.4rem; border-radius: 999px; font-weight: 700; cursor: pointer; font-family: var(--font-body); font-size: .95rem; }
.cookie button:hover { background: #a91f1f; }

/* ---------- Mobile call bar ---------- */
.callbar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 950; background: var(--green); border-top: 1px solid rgba(255, 255, 255, .15); }
.callbar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem; color: #fff; font-weight: 600; padding: .9rem .5rem; font-size: .95rem; }
.callbar a + a { border-left: 1px solid rgba(255, 255, 255, .18); }
.callbar svg { width: 18px; height: 18px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero__bg, .hero__crescent { animation: none; } }

/* ---------- Arabisch / RTL ---------- */
html[lang="ar"] body { font-family: var(--font-arabic), var(--font-body); font-size: 18px; line-height: 1.8; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4,
html[lang="ar"] .btn, html[lang="ar"] .nav a, html[lang="ar"] .mobile-panel nav a, html[lang="ar"] .eyebrow,
html[lang="ar"] .stat .num, html[lang="ar"] .service h3, html[lang="ar"] .step h3, html[lang="ar"] .value h3,
html[lang="ar"] .feature__card h3, html[lang="ar"] .contact-card h3, html[lang="ar"] .form h3, html[lang="ar"] .faq summary,
html[lang="ar"] .footer h4, html[lang="ar"] .form-field label, html[lang="ar"] .captcha label, html[lang="ar"] .nav-toggle { font-family: var(--font-arabic), var(--font-body); letter-spacing: 0; }
html[lang="ar"] h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.3; }
html[lang="ar"] h2 { line-height: 1.4; }
html[lang="ar"] .hero h1 em { font-style: normal; }
html[lang="ar"] .quote__trans { font-style: normal; }
html[lang="ar"] .eyebrow, html[lang="ar"] .footer h4, html[lang="ar"] .emergency__item small, html[lang="ar"] .contact-card__list small { text-transform: none; letter-spacing: 0; font-size: .95rem; }
html[lang="ar"] .service h3, html[lang="ar"] .step h3, html[lang="ar"] .value h3 { font-size: 1.4rem; }
html[dir="rtl"] .hero__crescent { right: auto; left: -4vw; transform: scaleX(-1) rotate(-8deg); animation: none; }
html[dir="rtl"] .split__media .badge { left: auto; right: -1.4rem; }
html[dir="rtl"] .split__media .frame { inset: 1.4rem 1.4rem -1.4rem -1.4rem; }
html[dir="rtl"] .mobile-panel { transform: translateX(-100%); }
html[dir="rtl"] .mobile-panel.open { transform: translateX(0); }
html[dir="rtl"] .footer__bottom a { margin-left: 0; margin-right: 1.2rem; }
html[dir="rtl"] .footer__ayah { text-align: right; }
html[dir="rtl"] .btn > svg:last-child:not(:first-child) { transform: scaleX(-1); }
html[dir="rtl"] .lightbox-prev { left: auto; right: 1.2rem; }
html[dir="rtl"] .lightbox-next { right: auto; left: 1.2rem; }
html[dir="rtl"] .btn svg.arrow, html[dir="rtl"] .breadcrumb { direction: rtl; }
html[dir="rtl"] .hp { left: auto; right: -9999px; }
html[dir="rtl"] .tel, html[dir="rtl"] .contact-card__list a[href^="tel"], html[dir="rtl"] .emergency__item strong, html[dir="rtl"] .footer__contact a[href^="tel"], html[dir="rtl"] .topbar__links a, html[dir="rtl"] .mobile-panel__contact a { direction: ltr; unicode-bidi: isolate; display: inline-block; }
html[dir="rtl"] .emergency__item { text-align: right; }
html[dir="rtl"] .emergency__item strong { text-align: right; display: block; }
@media (max-width: 900px) {
  html[dir="rtl"] .split__media .badge { right: 1rem; }
  html[dir="rtl"] .footer__bottom a { margin: 0 0 0 1rem; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1400px) {
  .logo img { height: 54px; }
}
@media (max-width: 1250px) {
  .header .btn--call { display: none; }
  .header .container { gap: 1.2rem; }
}
@media (max-width: 1100px) {
  .nav a { padding: .5rem .6rem; font-size: .92rem; }
  .logo img { height: 92px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .emergency .container { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --header-h: 74px; }
  .nav { display: none; }
  .header__right { flex: 1; justify-content: flex-end; }
  .header__right .lang { margin: 0 auto; }
  .header__right .lang a { padding: .3rem .55rem; }
  .nav-toggle { display: inline-flex !important; }
  .logo img { height: auto; max-height: 48px; width: auto; max-width: min(38vw, 200px); }
  .topbar .container { justify-content: center; }
  .topbar__links { display: none; }
  .hero { min-height: 560px; flex-direction: column; justify-content: center; }
  .hero .container { width: 92vw; }
  .hero__since { position: relative; width: 100%; margin-top: auto; }
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .split__media .badge { left: 1rem; bottom: -1.2rem; }
  .split__media .frame { display: none; }
  .split__text { padding-top: 1.5rem; }
  .feature { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { position: static; }
  .cta .container { grid-template-columns: 1fr; }
  .cta__actions { justify-content: flex-start; }
  .values { grid-template-columns: 1fr; }
  .callbar { display: flex; }
  body { padding-bottom: 56px; }
  .cookie { bottom: 66px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .services, .steps, .gallery { grid-template-columns: 1fr 1fr; }
  .gallery { grid-auto-rows: 160px; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }
  .emergency .container { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .stat { padding: 1.2rem 1rem; }
  .stat .num { font-size: 2.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; }
  .footer__bottom a { margin: 0 1rem 0 0; }
  .lightbox { padding: 1rem; }
  .lightbox-prev, .lightbox-next { top: auto; bottom: 1rem; transform: none; }
  .lightbox-prev { left: 1rem; } .lightbox-next { right: 1rem; }
  .hero__actions .btn { width: 100%; }
  .nav-toggle .label { display: none; }
}
@media (max-width: 420px) {
  .services, .steps { grid-template-columns: 1fr; }
}
