/* ==========================================================================
   KARAM FINISHING — base.css
   Shared foundation: reset, theme tokens (on .site class), typography,
   header, footer, buttons, bilingual (AR/EN) system, shared components.
   ========================================================================== */

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: #16130e;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* ==========================================================================
   THEME — tokens live on the .site wrapper class (no :root, no body styles)
   ========================================================================== */
.site {
  /* palette */
  --ink: #16130e;
  --ink-2: #241f16;
  --ink-3: #38301f;
  --gold: #c6a053;
  --gold-deep: #a2752a;
  --gold-light: #e7cd88;
  --gold-grad: linear-gradient(135deg, #f0dca0 0%, #cfa858 42%, #9a6e22 100%);
  --cream: #fbf7ef;
  --cream-2: #f3ebdc;
  --paper: #ffffff;
  --text: #211c14;
  --muted: #7c7264;
  --muted-2: #9a9182;
  --line: rgba(22, 19, 14, 0.12);
  --line-gold: rgba(198, 160, 83, 0.4);
  --shadow-sm: 0 2px 10px rgba(22, 19, 14, 0.06);
  --shadow-md: 0 18px 50px -22px rgba(22, 19, 14, 0.35);
  --shadow-lg: 0 40px 90px -40px rgba(22, 19, 14, 0.55);

  /* type */
  --sans: "Tajawal", "Jost", system-ui, sans-serif;
  --serif: "El Messiri", "Cormorant Garamond", serif;

  --maxw: 1200px;

  min-height: 100vh;
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* English swaps to Latin type; Arabic (default) keeps the vars above */
html[lang="en"] .site {
  --sans: "Jost", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  line-height: 1.65;
}

/* ==========================================================================
   BILINGUAL VISIBILITY  (all copy lives in the DOM, in both languages)
   ========================================================================== */
.lang-en {
  display: none;
}
html[lang="en"] .lang-ar {
  display: none;
}
html[lang="en"] .lang-en {
  display: revert;
}

/* ==========================================================================
   TYPOGRAPHY HELPERS
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: 0.005em;
}

p { text-wrap: pretty; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: "Jost", var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
html[lang="ar"] .eyebrow {
  font-family: var(--sans);
  letter-spacing: 0.12em;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.display {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.lead {
  font-size: 1.14rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 60ch;
}

.gold-text {
  color: var(--gold-deep);
}

.gold-fill {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 62ch;
}
.section-head.center {
  align-items: center;
  text-align: center;
  margin-inline: auto;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding-block: clamp(4rem, 9vw, 7.5rem);
}
.section.tight {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
}

.divider-gold {
  width: 64px;
  height: 2px;
  border: none;
  background: var(--gold-grad);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.68em 1.5em;
  font-family: "Jost", var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
html[lang="ar"] .btn {
  font-family: var(--sans);
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 700;
  font-size: 0.88rem;
}
.btn--gold svg{
    width: 20px !important;
}
.btn--gold {
  background: var(--gold-grad);
  color: #23190a;
  box-shadow: 0 14px 34px -14px rgba(162, 117, 42, 0.7);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px -14px rgba(162, 117, 42, 0.8);
}

.btn--ink {
  background: var(--ink);
  color: var(--cream);
}
.btn--ink:hover {
  transform: translateY(-2px);
  background: var(--ink-2);
}

.btn--outline {
  border: 1px solid var(--line-gold);
  color: var(--ink);
}
.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(198, 160, 83, 0.08);
}

.btn--light-outline {
  border: 1px solid rgba(231, 205, 136, 0.5);
  color: var(--cream);
}
.btn--light-outline:hover {
  border-color: var(--gold-light);
  background: rgba(231, 205, 136, 0.1);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: "Jost", var(--sans);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--gold-deep);
  transition: gap 0.25s ease;
}
html[lang="ar"] .btn-arrow {
  font-family: var(--sans);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 0.95rem;
}
.btn-arrow { white-space: nowrap; }
.btn-arrow svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.25s ease; }
.btn-arrow:hover { gap: 0.85em; }
html[dir="rtl"] .btn-arrow svg { transform: scaleX(-1); }
html[dir="rtl"] .btn-arrow:hover svg { transform: scaleX(-1) translateX(3px); }
html[dir="ltr"] .btn-arrow:hover svg { transform: translateX(3px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 239, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header--dark {
  background: rgba(22, 19, 14, 0.72);
  border-bottom: 1px solid rgba(231, 205, 136, 0.16);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  height: 46px;
  width: auto;
  display: none;
}
/* English logo shown regardless of language */
.brand .logo-en-dark { display: block; }
.site-header--dark .brand .logo-en-dark { display: none; }
.site-header--dark .brand .logo-en-light { display: block; }
/* Footer (always dark) */
.site-footer .brand .logo-en-light { display: block; }

/* Language toggle with flags */
.lang-opt { display: inline-flex; align-items: center; gap: 0.45em; }
.lang-opt .flag { width: 20px; height: 14px; border-radius: 2px; display: block; box-shadow: 0 0 0 1px rgba(0,0,0,0.12); flex-shrink: 0; }
.lang-to-ar { display: none; }
html[lang="en"] .lang-to-en { display: none; }
html[lang="en"] .lang-to-ar { display: inline-flex; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.2rem);
  margin-inline: auto;
}
.nav a {
  position: relative;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text);
  padding-block: 0.4rem;
  transition: color 0.2s ease;
}
html[lang="en"] .nav a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-header--dark .nav a { color: rgba(251, 247, 239, 0.86); }
.nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  inset-inline: 50%;
  height: 2px;
  width: 0;
  background: var(--gold-grad);
  transition: width 0.28s ease, inset-inline 0.28s ease;
}
.nav a:hover,
.nav a.is-active { color: var(--gold-deep); }
.site-header--dark .nav a:hover,
.site-header--dark .nav a.is-active { color: var(--gold-light); }
.nav a:hover::after,
.nav a.is-active::after {
  width: 100%;
  inset-inline: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

/* WhatsApp icon button */
.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(37, 211, 102, 0.8);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 26px -8px rgba(37, 211, 102, 0.9);
}
.wa-btn svg { width: 22px; height: 22px; }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.55em 1em;
  border: 1px solid var(--line-gold);
  border-radius: 2px;
  font-family: "Jost", var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.site-header--dark .lang-toggle {
  color: var(--cream);
  border-color: rgba(231, 205, 136, 0.4);
}
.lang-toggle:hover {
  background: var(--gold-grad);
  color: #23190a;
  border-color: transparent;
}
.lang-toggle .lang-current { font-weight: 700; }

/* Mobile burger */
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header--dark .nav-burger span { background: var(--cream); }

@media (max-width: 940px) {
  .nav-burger { display: flex; }
  .nav {
    position: fixed;
    inset: 82px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--ink);
    padding: 1rem 0 2rem;
    margin: 0;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a {
    color: var(--cream);
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(231, 205, 136, 0.12);
    font-size: 1.05rem;
  }
  .nav a::after { display: none; }
  .nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.is-open span:nth-child(2) { opacity: 0; }
  .nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ==========================================================================
   IMAGE PLACEHOLDERS (stock-style, look finished)
   ========================================================================== */
.ph {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(255, 255, 255, 0.35), transparent 55%),
    linear-gradient(140deg, #efe4cf 0%, #dcc9a6 45%, #b7a37f 100%);
  isolation: isolate;
}
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.22) 50%, transparent 60%),
    repeating-linear-gradient(135deg, rgba(22, 19, 14, 0.03) 0 2px, transparent 2px 7px);
  z-index: -1;
}
.ph--warm {
  background:
    radial-gradient(120% 90% at 20% 15%, rgba(255, 255, 255, 0.28), transparent 55%),
    linear-gradient(140deg, #e9d3b6 0%, #cba879 50%, #9c7c53 100%);
}
.ph--cool {
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(255, 255, 255, 0.3), transparent 55%),
    linear-gradient(140deg, #dfe1de 0%, #b9beb8 48%, #8f9488 100%);
}
.ph--dark {
  background:
    radial-gradient(120% 100% at 75% 8%, rgba(231, 205, 136, 0.22), transparent 55%),
    linear-gradient(150deg, #2c2619 0%, #1c1811 60%, #100d08 100%);
}
.ph--dark .ph-mark { opacity: 0.14; filter: none; }
.ph--dark .ph-cap { color: rgba(251, 247, 239, 0.72); }
.ph-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0.16;
  pointer-events: none;
}
.ph-mark img { width: clamp(56px, 20%, 120px); height: auto; }
.ph-cap {
  position: absolute;
  inset-inline-start: 1.1rem;
  bottom: 1rem;
  font-family: "Jost", var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(33, 28, 20, 0.6);
  z-index: 2;
}
html[lang="ar"] .ph-cap {
  font-family: var(--sans);
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 700;
}

/* ==========================================================================
   SERVICE CARD
   ========================================================================== */
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-gold);
}
.svc-card .ph {
  aspect-ratio: 4 / 3;
}
.svc-card__body {
  padding: 1.6rem 1.7rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.svc-card__icon {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgba(22, 19, 14, 0.55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(231, 205, 136, 0.4);
  border-radius: 50%;
  color: var(--gold-light);
}
.svc-card__icon svg { width: 22px; height: 22px; }
.svc-card h3 { font-size: 1.55rem; }
.svc-card p { color: var(--muted); font-size: 0.98rem; }
.svc-card .btn-arrow { margin-top: auto; padding-top: 0.4rem; }

/* ==========================================================================
   BLOG / POST CARDS (shared by home preview + blog page)
   ========================================================================== */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.2rem); }
@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }
.post-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px; overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-gold); }
.post-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__tag {
  position: absolute; top: 0.9rem; inset-inline-start: 0.9rem;
  background: rgba(22, 19, 14, 0.72); color: var(--gold-light);
  font-size: 0.72rem; letter-spacing: 0.06em;
  padding: 0.35em 0.8em; border-radius: 2px; z-index: 2;
}
.post-card__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.post-card__meta { font-size: 0.8rem; color: var(--muted-2); letter-spacing: 0.02em; }
.post-card h3 { font-size: 1.35rem; line-height: 1.25; }
.post-card p { color: var(--muted); font-size: 0.95rem; }
.post-card .btn-arrow { margin-top: auto; padding-top: 0.4rem; }
.post-card--featured { grid-column: 1 / -1; }
.post-card--featured .post-card__inner { display: grid; grid-template-columns: 1.2fr 1fr; }
.post-card--featured .post-card__media { aspect-ratio: auto; min-height: 320px; }
.post-card--featured .post-card__body { justify-content: center; padding: clamp(1.8rem, 4vw, 3rem); }
.post-card--featured h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
@media (max-width: 780px) { .post-card--featured .post-card__inner { grid-template-columns: 1fr; } .post-card--featured .post-card__media { min-height: 220px; } }

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */
.step {
  position: relative;
  padding: 2rem 1.6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.step__num {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
  color: transparent;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 0.8rem;
}
.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.96rem; }

/* ==========================================================================
   BEFORE / AFTER SLIDER
   ========================================================================== */
.ba {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  user-select: none;
  box-shadow: var(--shadow-md);
  touch-action: pan-y;
}
.ba__layer {
  position: absolute;
  inset: 0;
}
.ba__layer .ph { position: absolute; inset: 0; }
.ba__after {
  clip-path: inset(0 0 0 var(--pos, 50%));
}
html[dir="rtl"] .ba__after {
  clip-path: inset(0 var(--pos, 50%) 0 0);
}
.ba__tag {
  position: absolute;
  top: 1rem;
  padding: 0.4em 1em;
  font-family: "Jost", var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(22, 19, 14, 0.7);
  color: var(--cream);
  border-radius: 2px;
  z-index: 3;
}
html[lang="ar"] .ba__tag { font-family: var(--sans); letter-spacing: 0.02em; text-transform: none; font-weight: 700; }
.ba__tag--before { inset-inline-start: 1rem; }
.ba__tag--after { inset-inline-end: 1rem; }
.ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  background: var(--gold-light);
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}
html[dir="rtl"] .ba__handle { left: auto; right: var(--pos, 50%); transform: translateX(50%); }
.ba__grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
  color: #23190a;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.5);
}
.ba__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.quote {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2.2rem 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  height: 100%;
}
.quote__mark {
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--gold);
  height: 1.5rem;
}
.quote p { font-size: 1.05rem; color: var(--text); line-height: 1.8; }
.quote__stars { color: var(--gold); letter-spacing: 0.15em; }
.quote__who { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; }
.quote__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold-grad);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; color: #23190a;
  flex-shrink: 0;
}
.quote__name { font-weight: 700; color: var(--ink); }
.quote__role { font-size: 0.86rem; color: var(--muted); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  border-top: 1px solid var(--line);
}
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0.25rem;
  text-align: start;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}
.faq__q .plus {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.faq__q .plus::before,
.faq__q .plus::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 2px;
  background: var(--gold-deep);
  transition: transform 0.3s ease;
}
.faq__q .plus::after { transform: rotate(90deg); }
.faq__item.is-open .plus::after { transform: rotate(0); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq__a-inner {
  padding: 0 0.25rem 1.6rem;
  color: var(--muted);
  max-width: 68ch;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 120% at 15% 0%, rgba(231, 205, 136, 0.14), transparent 55%),
    radial-gradient(60% 100% at 95% 100%, rgba(198, 160, 83, 0.16), transparent 60%);
}
.cta-band .wrap { position: relative; }
.cta-band h2 { color: var(--cream); font-size: clamp(2rem, 4.5vw, 3.4rem); }
.cta-band p { color: rgba(251, 247, 239, 0.72); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: rgba(251, 247, 239, 0.75);
  padding-top: clamp(3.5rem, 6vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
}
.site-footer .brand-logo { height: 54px; }
.footer-about { color: rgba(251, 247, 239, 0.6); max-width: 34ch; margin-top: 1.2rem; }
.footer-col h4 {
  color: var(--gold-light);
  font-family: "Jost", var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
html[lang="ar"] .footer-col h4 { font-family: var(--sans); letter-spacing: 0.06em; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a, .footer-col li { color: rgba(251, 247, 239, 0.68); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-socials { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(231, 205, 136, 0.28);
  color: var(--gold-light);
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.footer-socials a:hover { background: var(--gold-grad); color: #23190a; transform: translateY(-2px); border-color: transparent; }
.footer-socials a.is-wa:hover { background: #25d366; color: #fff; }
.footer-socials svg { width: 20px; height: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(231, 205, 136, 0.14);
  padding-block: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(251, 247, 239, 0.5);
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FLOATING WHATSAPP (all pages)
   ========================================================================== */
.wa-float {
  position: fixed;
  inset-inline-end: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.7);
  animation: wa-pulse 2.6s ease-in-out infinite;
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.7), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.7), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   SHARED SECTION RHYTHM (used by all home variations + inner pages)
   ========================================================================== */
.section--paper { background: var(--paper); }
.section--cream { background: var(--cream); }
.section--ink {
  background: var(--ink);
  color: rgba(251, 247, 239, 0.8);
}
.section--ink h2, .section--ink h3 { color: var(--cream); }
.section--ink .step { background: rgba(255, 255, 255, 0.03); border-color: rgba(231, 205, 136, 0.16); }
.section--ink .step p { color: rgba(251, 247, 239, 0.62); }
.section--ink .eyebrow { color: var(--gold-light); }
.section--ink .eyebrow::before { background: var(--gold-light); }

.head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.2rem, 4vw, 3.4rem);
}

.stat { display: flex; flex-direction: column; gap: 0.15rem; }
.stat__num { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--gold-deep); line-height: 1; }
.stat__label { font-size: 0.85rem; color: var(--muted); }

/* gallery split */
.gallery-a { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: center; }
.gallery-a__copy { max-width: 46ch; }
.gallery-a__copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 1rem; }
.gallery-a__copy p { color: var(--muted); margin-bottom: 1.4rem; }
.section--ink .gallery-a__copy p { color: rgba(251, 247, 239, 0.66); }
.ba-points { display: flex; flex-direction: column; gap: 0.9rem; margin: 1.6rem 0; }
.ba-point { display: flex; align-items: center; gap: 0.8rem; }
.ba-point svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
@media (max-width: 850px) { .gallery-a { grid-template-columns: 1fr; } }

/* faq layout */
.faq-a { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 850px) { .faq-a { grid-template-columns: 1fr; } }

/* cta */
.cta-a { text-align: center; }
.cta-a .wrap { padding-block: clamp(4rem, 8vw, 6.5rem); display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.cta-a p { max-width: 52ch; font-size: 1.1rem; }

/* ==========================================================================
   PHOTO FILLS (real images replace placeholders)
   ========================================================================== */
.img-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph { background-color: #d8c7a8; }
.ph:has(> .img-cover)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 19, 14, 0) 45%, rgba(22, 19, 14, 0.55) 100%);
  z-index: 1;
}
.ph:has(> .img-cover) .ph-cap {
  color: #fff;
  z-index: 2;
}

/* utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-row.center { justify-content: center; }
