:root{
  /* ── Core palette ── */
  --color-primary:#0057B8;
  --color-accent:#FF6F00;
  --color-bg:#F5F7FA;
  --color-surface:#FFF;
  --color-success:#5A7D6C;
  --color-warning:#FFD700;
  --color-error:#D32F2F;
  --color-neutral-100:#F2F4F6;
  --color-neutral-300:#B9C3C9;
  --color-neutral-900:#222;
  --color-gold:#C9A76A;
  --color-navy:#243447;
  --color-olive:#51625B;
  --color-beige:#F4F1EA;
  --color-charcoal:#2B2B2B;

  /* ── Brand aliases (map to core palette) ── */
  --brand-navy:    var(--color-navy);
  --brand-olive:   var(--color-olive);
  --brand-green:   var(--color-success);
  --brand-beige:   var(--color-beige);
  --brand-gold:    var(--color-gold);
  --brand-gray-100:var(--color-neutral-100);
  --brand-gray-300:var(--color-neutral-300);
  --brand-charcoal:var(--color-charcoal);

  /* ── Typography ── */
  --font-arabic:'Harmattan', 'Tajawal', 'Almarai', system-ui, Arial, sans-serif;
  --font-latin:'Inter', 'Arial', sans-serif;
  --font-brand:"Fustat", system-ui, "Segoe UI", Arial, sans-serif;

  --font-size-base:1rem;
  --font-size-lg:1.25rem;
  --font-size-xl:2rem;
  --font-size-xxl:2.5rem;
  --font-weight-bold:700;
  --font-weight-normal:400;

  /* ── Shape & spacing ── */
  --radius:12px;
  --radius-sm:6px;
  --radius-lg:20px;

  --elev-1:0 6px 20px rgba(0,0,0,.08);
  --elev-2:0 12px 36px rgba(0,0,0,.14);

  --spacing-1:4px;
  --spacing-2:8px;
  --spacing-3:16px;
  --spacing-4:24px;
  --spacing-5:32px;

  --t-fast:.25s;
  --t-slow:.5s;

  /* ── Testimonials height ── */
  --tmx-h: clamp(520px, 64vh, 720px);

  /* ── Process component ── */
  --prj-radius: 18px;
  --prj-stroke: 7px;
  --prj-cap: 48px;
  --prj-shadow-weak: 0 10px 26px rgba(0,0,0,.06);
  --prj-shadow-strong: 0 14px 32px rgba(0,0,0,.08);

  /* ── Shared premium / glass tokens (available to all sections) ── */
  --neon-primary-global: color-mix(in srgb, var(--color-primary) 80%, #60b0ff);
  --neon-accent-global:  color-mix(in srgb, var(--color-accent)  85%, #ffb74d);
  --neon-glow-global:    0 0 28px color-mix(in srgb, var(--color-accent) 38%, transparent);
  --neon-ring-global:    0 0 0 3px color-mix(in srgb, var(--color-accent) 30%, transparent);

  /* Glass – light surfaces */
  --glass-light-bg:      rgba(255,255,255,.72);
  --glass-light-border:  rgba(255,255,255,.55);
  --glass-light-shadow:  0 8px 32px rgba(0,0,0,.08);

  /* Glass – dark surfaces */
  --glass-dark-bg:       rgba(255,255,255,.07);
  --glass-dark-border:   rgba(255,255,255,.13);

  /* Short aliases */
  --c-navy:    var(--color-navy);
  --c-white:   #fff;
  --c-gold:    var(--color-gold);
  --c-success: var(--color-success);
  --c-olive:   var(--color-olive);
  --c-beige:   var(--color-beige);
  --c-gray-600: #6b7280;
  --c-gray-700: #4b5563;

  /* Section spacing */
  --section-gap: clamp(64px, 8vw, 110px);
  --section-gap-sm: clamp(40px, 5vw, 64px);
}


body {
  font-family: var(--font-arabic);
}
/* ======= Unified Button System ======= */
.btn, .alborg-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font-arabic);
  font-size:var(--font-size-base);
  font-weight:700;
  border-radius:999px;
  padding:.55rem 1rem;
  border:none;
  cursor:pointer;
  text-align:center;
  text-decoration:none;
  transition:background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.btn-primary {
  background:var(--brand-olive);
  color:#fff;
  box-shadow:0 8px 18px rgba(81,98,91,.2);
}
.btn-primary:hover {
  background:var(--brand-green);
  transform:translateY(-1px);
  box-shadow:var(--elev-2);
}
.btn-accent {
  background:var(--color-accent);
  color:#fff;
}
.btn-accent:hover {
  filter:brightness(1.05);
  transform:translateY(-1px);
}
.btn-ghost {
  background:transparent;
  color:var(--color-primary);
  border:1.5px solid var(--color-primary);
}
.btn-ghost:hover {
  background:color-mix(in srgb, var(--color-primary) 8%, transparent);
}
.btn-secondary {
  background:#fff;
  color:var(--brand-olive);
  border:1px solid color-mix(in srgb, var(--brand-olive) 35%, transparent);
}
.btn-secondary:hover {
  color:var(--brand-green);
  border-color:var(--brand-green);
}
.btn:focus, .btn-primary:focus, .btn-accent:focus, .btn-ghost:focus {
  outline:2px solid var(--color-accent);
  outline-offset:2px;
}

/* RTL support */
[dir="rtl"] .btn, [dir="rtl"] .alborg-btn {
  font-family:var(--font-arabic);
  direction:rtl;
}
/* Optional container if theme doesn't provide one */
.container{ max-width:1200px; margin-inline:auto; padding-inline:16px; }

/* ======= Shared Reveal / Entrance Animations ======= */
/* g-fade-up: applied to elements; .is-visible added by IntersectionObserver */
.g-fade-up{
  opacity:0; transform:translateY(28px);
  transition:opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
  transition-delay:var(--_sd, 0s);
}
.g-fade-up.is-visible{ opacity:1; transform:translateY(0); }
/* Stagger helpers */
.g-fade-up:nth-child(1){ --_sd:.05s; }
.g-fade-up:nth-child(2){ --_sd:.12s; }
.g-fade-up:nth-child(3){ --_sd:.19s; }
.g-fade-up:nth-child(4){ --_sd:.26s; }
.g-fade-up:nth-child(5){ --_sd:.33s; }
.g-fade-up:nth-child(6){ --_sd:.40s; }
.g-fade-up:nth-child(7){ --_sd:.47s; }
.g-fade-up:nth-child(8){ --_sd:.54s; }
@media (prefers-reduced-motion: reduce){ .g-fade-up{ opacity:1; transform:none; transition:none; } }

/* Section-level helpers */
.g-section-light{ background:var(--brand-beige); }
.g-section-white{ background:#fff; }
.g-section-dark { background:var(--brand-navy); color:#fff; }
.g-section-gray { background:var(--brand-gray-100); }

/* Shared section spacing */
.g-section{ padding-block:var(--section-gap); }
.g-section--sm{ padding-block:var(--section-gap-sm); }

/* Eyebrow label (small badge above headings) */
.g-eyebrow{
  display:inline-flex; align-items:center; gap:6px;
  font-size:.78rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--brand-green); background:color-mix(in srgb, var(--brand-green) 10%, transparent);
  padding:.25rem .75rem; border-radius:999px;
  border:1px solid color-mix(in srgb, var(--brand-green) 22%, transparent);
  margin-block-end:.7rem;
}
.g-section-dark .g-eyebrow{
  color:var(--brand-gold); background:rgba(201,167,106,.12);
  border-color:rgba(201,167,106,.25);
}

/* ======= Header shell ======= */
.k-header{
  position:sticky; top:0; inset-inline:0; z-index:1000;
  background:color-mix(in srgb, var(--brand-beige) 92%, #fff);
  backdrop-filter:saturate(1.05) blur(0px);
  transition: padding var(--t-fast) ease, background var(--t-slow) ease, box-shadow var(--t-fast) ease, backdrop-filter var(--t-slow) ease;
  padding-block:16px;
}
.k-header.is-scrolled{
  padding-block:10px;
  background:color-mix(in srgb, var(--brand-beige) 80%, #fff);
  box-shadow:var(--elev-1);
  backdrop-filter:saturate(1.15) blur(8px);
}

/* Layout: actions (left), nav (center), brand (right) in RTL */
.k-header__bar{
  display:grid; align-items:center; gap:16px;
  grid-template-columns: 1fr 1fr;
}
[dir="rtl"] .k-actions{ justify-self:end; }
[dir="rtl"] .k-nav{ justify-self:center; }

/* ======= Brand / Logo ======= */
.navbar-brand{
    width: 185px;
    height: 65px;
    position: relative;
}
.navbar-brand img, .navbar-brand .custom-logo, .navbar-brand .custom-logo-link img{
    width: 100% !important;
    height: 100% !important;
    border: 0;
    object-fit: cover !important;
}
.k-header.is-scrolled .navbar-brand img,
.k-header.is-scrolled .navbar-brand .custom-logo{ max-height:63px; }
.k-brand__text{
  font-family:var(--font-brand); color:var(--brand-navy);
  font-weight:700; letter-spacing:.2px; font-size:1.35rem; line-height:1;
}

/* ======= Actions (phone + CTA + burger) ======= */
.k-actions{ display:flex; align-items:center; gap:10px; }
.k-action{ color:var(--brand-olive); text-decoration:none; display:inline-flex; align-items:center; gap:8px; }
.k-action:hover{ color:var(--brand-green); }
.k-action__label{ font-weight:700; font-size:.875rem; }

/* ======= Desktop CTA buttons ======= */
.k-cta{
  display:inline-flex; align-items:center; gap:7px;
  padding:.45rem 1rem; border-radius:999px;
  font-weight:700; font-size:.875rem; text-decoration:none; white-space:nowrap;
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease, border-color .18s ease;
}
.k-cta--wa{
  background:linear-gradient(90deg, var(--brand-green), color-mix(in srgb, var(--brand-green) 80%, var(--brand-gold)));
  color:#fff;
  box-shadow:0 6px 18px color-mix(in srgb, var(--brand-green) 22%, transparent);
}
.k-cta--wa:hover{
  transform:translateY(-2px); filter:brightness(1.07);
  box-shadow:0 10px 26px color-mix(in srgb, var(--brand-green) 34%, transparent);
  color:#fff;
}
.k-cta--quote{
  background:transparent; color:var(--brand-navy);
  border:1.5px solid color-mix(in srgb, var(--brand-navy) 35%, transparent);
}
.k-cta--quote:hover{
  border-color:var(--brand-green); color:var(--brand-green);
  background:color-mix(in srgb, var(--brand-green) 6%, transparent);
}

/* (Button overrides — absorbed into unified system above) */

/* Burger */
.k-burger{ display:none; width:40px; height:40px; border-radius:10px; border:0; background:transparent; position:relative; cursor:pointer; }
.k-burger__line{ position:absolute; inset-inline:9px; height:2px; background:var(--brand-navy); transition:transform var(--t-fast), opacity var(--t-fast); }
.k-burger__line:nth-child(1){ top:12px; }
.k-burger__line:nth-child(2){ top:19px; }
.k-burger__line:nth-child(3){ top:26px; }
.is-drawer-open .k-burger__line:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.is-drawer-open .k-burger__line:nth-child(2){ opacity:0; }
.is-drawer-open .k-burger__line:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ======= Desktop nav + premium hover pill ======= */
.k-nav{ position:relative; }
.k-menu{ list-style:none; margin:0; padding:0; display:flex; gap:26px; align-items:center; position:relative; }
.k-menu > li{ position:relative; }
.k-menu > li > a{
  position:relative; display:inline-flex; align-items:center; justify-content:center;
  padding:.55rem .7rem; color:var(--brand-navy); text-decoration:none; font-weight:700; letter-spacing:.2px; z-index:2; transition:color var(--t-fast) ease;
}
.k-menu > li > a:hover, .k-menu > li > a:focus-visible{ color:var(--brand-green); }
/* graceful underline fallback */
.k-menu > li > a::after{
  content:""; position:absolute; inset-inline:12% 12%; bottom:4px; height:2px; border-radius:999px;
  background:linear-gradient(90deg, var(--brand-gold), var(--brand-green));
  transform:scaleX(0); transform-origin:var(--_u-dir, left); transition:transform var(--t-fast) ease;
}
[dir="rtl"] .k-menu > li > a{ --_u-dir:right; }
.k-menu > li > a:hover::after, .k-menu > li > a:focus-visible::after{ transform:scaleX(1); }

/* floating pill (inserted by JS) */
.k-pill{
  position:absolute; top:50%; transform:translateY(-50%);
  height:34px; width:0; opacity:0; pointer-events:none; z-index:1;
  background:linear-gradient(135deg, color-mix(in srgb, var(--brand-gold) 70%, #fff 30%), var(--brand-beige));
  border-radius:999px; box-shadow:0 10px 24px rgba(201,167,106,.28);
  outline:1px solid color-mix(in srgb, var(--brand-gold) 40%, transparent);
  transition:opacity var(--t-fast) ease, width var(--t-fast) ease, left var(--t-fast) ease, right var(--t-fast) ease, transform var(--t-fast) ease;
}

/* ======= Desktop dropdowns ======= */
.k-nav .k-menu > li.menu-item-has-children > a{ padding-inline-end:1.1rem; }
.k-nav .k-menu > li.menu-item-has-children > a::before{
  content:"▾"; font-size:.8rem; color:var(--brand-olive);
  position:absolute; inset-inline-end:.25rem; top:50%; transform:translateY(-50%);
  transition:transform .2s ease, color .2s ease;
}
.k-nav .k-menu > li:where(:hover,:focus-within).menu-item-has-children > a::before{
  color:var(--brand-green); transform:translateY(-50%) rotate(180deg);
}
/* Glass-card dropdowns */
.k-nav .sub-menu{
  position:absolute; top:calc(100% + 10px);
  inset-inline-end:0; inset-inline-start:auto;
  min-width:230px; padding:8px; list-style:none; margin:0;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(18px) saturate(1.3);
  -webkit-backdrop-filter:blur(18px) saturate(1.3);
  border-radius:14px;
  border:1px solid rgba(0,0,0,.07);
  box-shadow:0 16px 48px rgba(0,0,0,.13), 0 4px 12px rgba(0,0,0,.07);
  opacity:0; transform:translateY(6px) scale(.97); pointer-events:none;
  transition:opacity .18s ease, transform .18s ease; z-index:1200;
  transform-origin:top center;
}
[dir="ltr"] .k-nav .sub-menu{ inset-inline-start:0; inset-inline-end:auto; }
/* Depth-2 sub-menus */
.k-nav .sub-menu .sub-menu{
  position:absolute; top:0; inset-inline-start:100%; inset-inline-end:auto;
  transform:translateX(-6px) scale(.97); transform-origin:top right;
}
[dir="rtl"] .k-nav .sub-menu .sub-menu{ inset-inline-start:auto; inset-inline-end:100%; transform:translateX(6px) scale(.97); }
.k-nav .sub-menu li a{
  display:flex; align-items:center; gap:8px;
  padding:.6rem .85rem; border-radius:9px; color:var(--brand-navy); text-decoration:none; font-weight:600;
  transition:background .14s ease, color .14s ease, padding-inline-start .14s ease;
}
.k-nav .sub-menu li a:hover{
  background:color-mix(in srgb, var(--brand-green) 10%, transparent);
  color:var(--brand-green); padding-inline-start:1rem;
}
.k-nav .k-menu > li:where(:hover,:focus-within) > .sub-menu{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
.k-nav .sub-menu li:where(:hover,:focus-within) > .sub-menu{ opacity:1; transform:translateX(0) scale(1); pointer-events:auto; }

/* ======= Mobile / Tablet ======= */
@media (max-width: 900px){
  .k-nav{ display:none; }
  .k-cta{ display:none; }
  .k-action__label{ display:none; }
  .k-burger{ display:inline-block; }
}

/* ======= Drawer (mobile nav) ======= */
/* keep transition even when [hidden] */
.k-drawer[hidden]{ display:block; }
.k-drawer{
  position:fixed; inset-block:0; z-index:1100;
  width:min(86vw, 420px);
  background:color-mix(in srgb, var(--brand-beige) 96%, #fff);
  inset-inline-end:0; inset-inline-start:auto;
  transform:translateX(100%); opacity:0; pointer-events:none;
  /* Spring easing for premium feel */
  transition:transform .38s cubic-bezier(.22,1,.36,1), opacity .22s ease;
  display:flex; flex-direction:column;
  box-shadow:-14px 0 48px rgba(0,0,0,.2), -2px 0 8px rgba(0,0,0,.08);
}
[dir="ltr"] .k-drawer{ inset-inline-start:0; inset-inline-end:auto; transform:translateX(-100%); box-shadow:14px 0 48px rgba(0,0,0,.2), 2px 0 8px rgba(0,0,0,.08); }
.is-drawer-open .k-drawer{ transform:translateX(0); opacity:1; pointer-events:auto; }

/* Dark header band */
.k-drawer__head{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 16px;
  background:linear-gradient(135deg, var(--brand-navy), color-mix(in srgb, var(--brand-navy) 85%, var(--brand-olive)));
  border-bottom:1px solid rgba(255,255,255,.08);
  flex-shrink:0;
}
.k-drawer__title{
  font-weight:700; font-size:1.1rem; letter-spacing:.3px;
  color:#fff;
}
.k-drawer__close{
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.18);
  font-size:22px; line-height:1; cursor:pointer; color:#fff;
  width:36px; height:36px; border-radius:8px; display:grid; place-items:center;
  transition:background .15s ease;
}
.k-drawer__close:hover{ background:rgba(255,255,255,.22); }

/* Light nav body */
.k-drawer__nav{ overflow:auto; padding:12px 10px 8px; flex:1; }
.k-menu--mobile{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:6px; }
.k-menu--mobile > li > a{
  display:block; padding:14px 14px; border-radius:12px; text-decoration:none;
  color:var(--brand-navy); font-weight:700; font-size:1rem;
  transition:background .15s ease, color .15s ease, padding-inline-start .15s ease;
  border:1px solid transparent;
}
.k-menu--mobile > li > a:hover,
.k-menu--mobile > li > a:focus-visible{
  background:color-mix(in srgb, var(--brand-green) 9%, transparent);
  color:var(--brand-green); padding-inline-start:18px;
  border-color:color-mix(in srgb, var(--brand-green) 18%, transparent);
}

/* Mobile accordion for submenus */
.k-menu--mobile .menu-item-has-children{ position:relative; }
.k-menu--mobile .menu-item-has-children > button.k-acc{
  all:unset; cursor:pointer; position:absolute; inset-inline-end:8px; top:50%; transform:translateY(-50%);
  width:36px; height:36px; display:grid; place-items:center; border-radius:10px; color:var(--brand-olive);
}
.k-menu--mobile .menu-item-has-children > button.k-acc::before{ content:"▾"; transition:transform .2s ease; }
.k-menu--mobile .menu-item-has-children.is-open > button.k-acc::before{ transform:rotate(180deg); }
.k-menu--mobile .sub-menu{
  list-style:none; margin:0; padding:6px 8px 8px; display:grid; grid-template-rows:0fr; transition:grid-template-rows .25s ease;
}
.k-menu--mobile .sub-menu > *{ overflow:hidden; }
.k-menu--mobile .menu-item-has-children.is-open > .sub-menu{ grid-template-rows:1fr; }
.k-menu--mobile .sub-menu a{
  display:block; padding:10px 12px; border-radius:10px; color:var(--brand-navy); text-decoration:none; font-weight:600;
}
.k-menu--mobile .sub-menu a:hover{ background:color-mix(in srgb, var(--brand-green) 10%, transparent); color:var(--brand-green); }

/* ======= Drawer actions strip ======= */
.k-drawer__actions{
  display:flex; gap:10px; padding:12px 12px 16px;
  border-top:1px solid color-mix(in srgb, var(--brand-gray-300) 35%, transparent);
  flex-shrink:0;
}
.k-drawer__btn{
  flex:1; display:inline-flex; align-items:center; justify-content:center; gap:7px;
  padding:.7rem .5rem; border-radius:12px;
  font-weight:700; font-size:.9rem; text-decoration:none;
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.k-drawer__btn--wa{
  background:linear-gradient(90deg, var(--brand-green), color-mix(in srgb, var(--brand-green) 78%, var(--brand-gold)));
  color:#fff;
  box-shadow:0 6px 18px color-mix(in srgb, var(--brand-green) 25%, transparent);
}
.k-drawer__btn--wa:hover{ transform:translateY(-2px); filter:brightness(1.07); color:#fff; }
.k-drawer__btn--call{
  background:transparent; color:var(--brand-navy);
  border:1.5px solid color-mix(in srgb, var(--brand-navy) 35%, transparent);
}
.k-drawer__btn--call:hover{
  border-color:var(--brand-green); color:var(--brand-green);
  background:color-mix(in srgb, var(--brand-green) 6%, transparent);
}

/* Scrim */
.k-scrim[hidden]{ display:block; }
.k-scrim{
  position:fixed; inset:0; background:rgba(0,0,0,.28);
  opacity:0; pointer-events:none; transition:opacity .2s ease; z-index:1090;
}
.is-drawer-open .k-scrim{ opacity:1; pointer-events:auto; }

/* Accessibility / motion */
@media (prefers-reduced-motion: reduce){
  .k-header, .k-pill, .k-menu > li > a::after, .k-burger__line, .k-drawer, .k-scrim { transition:none !important; }
}

/* =========================================================
   Roxy Moving Service — Premium Hero (x-hero)
   Clean, RTL-friendly, Accessible, High-performance
   ========================================================= */
/* =========================================================
   HERO v3 — Uses YOUR Design System Variables
   Scoped to .x-hero only
   ========================================================= */

.x-hero{
  /* ── System tokens ── */
  --hero-primary: var(--color-primary);
  --hero-accent:  var(--color-accent);
  --hero-gold:    var(--color-gold);
  --hero-navy:    var(--color-navy);
  --hero-olive:   var(--color-olive);
  --hero-bg:      var(--color-bg);
  --hero-surface: var(--color-surface);

  --hero-ink: rgba(255,255,255,.92);
  --hero-muted: rgba(255,255,255,.72);
  --hero-line: rgba(255,255,255,.14);

  --hero-r: var(--radius-lg);
  --hero-shadow: var(--elev-2);
  --hero-fast: var(--t-fast);
  --hero-slow: var(--t-slow);
  --hero-ease: cubic-bezier(.2,.85,.2,1);

  /* ── Futuristic tokens ── */
  --neon-primary: color-mix(in srgb, var(--hero-primary) 80%, #60b0ff);
  --neon-accent:  color-mix(in srgb, var(--hero-accent) 85%, #ffb74d);
  --neon-glow:    0 0 24px color-mix(in srgb, var(--hero-accent) 45%, transparent);
  --neon-ring:    0 0 0 3px color-mix(in srgb, var(--hero-accent) 35%, transparent);
  --glass-bg:     rgba(255,255,255,.08);
  --glass-border: rgba(255,255,255,.14);

  position:relative;
  overflow:clip;
  isolation:isolate;

  /* Premium navy scene with enhanced depth */
  background:
    radial-gradient(1200px 700px at 80% 10%, color-mix(in srgb, var(--hero-gold) 22%, transparent), transparent 65%),
    radial-gradient(900px 520px at 10% 90%, color-mix(in srgb, var(--hero-olive) 22%, transparent), transparent 60%),
    linear-gradient(180deg, color-mix(in srgb, var(--hero-navy) 96%, #000), color-mix(in srgb, var(--hero-navy) 82%, #000));
  color: var(--hero-ink);
  font-family: var(--font-arabic);
}

/* ── Animated Background Layer ── */
.x-hero__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.x-hero__orb{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  will-change: transform, opacity;
}
.x-hero__orb--a{
  width: 600px; height: 600px;
  top: -10%; right: -5%;
  background: radial-gradient(circle, var(--neon-accent), transparent 70%);
  animation: orbDrift-a 16s ease-in-out infinite alternate;
}
.x-hero__orb--b{
  width: 500px; height: 500px;
  bottom: -15%; left: -8%;
  background: radial-gradient(circle, var(--neon-primary), transparent 70%);
  animation: orbDrift-b 20s ease-in-out infinite alternate;
}
.x-hero__grid{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 60% 55% at 50% 50%, #000, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 50%, #000, transparent);
  opacity: .6;
}
@keyframes orbDrift-a{
  0%  { transform: translate3d(0,0,0) scale(1);   opacity: .30; }
  50% { transform: translate3d(-40px, 30px, 0) scale(1.08); opacity: .40; }
  100%{ transform: translate3d(20px, -20px, 0) scale(.95); opacity: .28; }
}
@keyframes orbDrift-b{
  0%  { transform: translate3d(0,0,0) scale(1);   opacity: .25; }
  50% { transform: translate3d(35px, -25px, 0) scale(1.06); opacity: .35; }
  100%{ transform: translate3d(-15px, 15px, 0) scale(.92); opacity: .22; }
}

.x-hero__viewport{
  position:relative;
  min-height: clamp(640px, 86vh, 900px);
}

/* Slide transitions */
.x-hero__slide{
  position:absolute; inset:0;
  opacity:0;
  transform: translate3d(0, 10px, 0) scale(.995);
  transition:
    opacity var(--hero-slow) var(--hero-ease),
    transform calc(var(--hero-slow) + .15s) var(--hero-ease);
}
.x-hero__slide.is-active{
  opacity:1;
  transform: translate3d(0,0,0) scale(1);
  z-index:1;
}

/* Background image */
.x-hero__media{
  position:absolute; inset:0;
  pointer-events:none;
  z-index:0;
}
.x-hero__media img{
  width:100%; height:100%;
  object-fit:cover;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.08) brightness(.78);
  will-change: transform;
}

/* Ken Burns using your timing */
@media (prefers-reduced-motion: no-preference){
  .x-hero__slide.is-active .x-hero__media img{
    animation: heroKen calc(var(--hero-slow) * 18) linear both;
  }
}
@keyframes heroKen{
  from{ transform: scale(1.05) translate3d(0,0,0); }
  to  { transform: scale(1.14) translate3d(0,-1.5%,0); }
}

/* Cinematic shade (RTL aware) */
.x-hero__shade{
  position:absolute; inset:0;
  z-index:1;
  background:
    radial-gradient(1200px 700px at 70% 40%, rgba(0,0,0,.05), rgba(0,0,0,.68) 70%),
    linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.18));
}
.x-hero[dir="rtl"] .x-hero__shade{
  background:
    radial-gradient(1200px 700px at 30% 40%, rgba(0,0,0,.05), rgba(0,0,0,.68) 70%),
    linear-gradient(270deg, rgba(0,0,0,.74), rgba(0,0,0,.18));
}

/* Inner */
.x-hero__inner{
  position:relative;
  z-index:2;
  padding-block: clamp(22px, 5vw, 56px);
}

/* Layout: copy + panel */
.x-hero__layout{
  display:grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(14px, 3vw, 22px);
  align-items:stretch;
}

/* Glass cards — futuristic frosted panels */
.x-hero__copy,
.x-hero__panel{
  border-radius: var(--hero-r);
  background:
    linear-gradient(180deg,
      color-mix(in srgb, var(--hero-surface) 16%, transparent),
      color-mix(in srgb, var(--hero-surface) 7%, transparent)
    );
  border: 1px solid var(--glass-border);
  box-shadow:
    var(--hero-shadow),
    inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(0px) saturate(1.2);
  -webkit-backdrop-filter: blur(0px) saturate(1.2);
  transition: box-shadow var(--hero-slow) var(--hero-ease),
              border-color var(--hero-slow) var(--hero-ease);
}
.x-hero__copy:hover,
.x-hero__panel:hover{
  border-color: rgba(255,255,255,.22);
  box-shadow:
    var(--hero-shadow),
    inset 0 1px 0 rgba(255,255,255,.12),
    0 0 40px rgba(0,87,184,.06);
}

/* Copy */
.x-hero__copy{
  align-self:center;
  padding: clamp(20px, 3.2vw, 32px);
}

/* Typography */
.x-hero__eyebrow{
  margin:0 0 10px;
  font-weight: 900;
  color: rgba(255,255,255,.86);
  letter-spacing:.2px;
  font-family: var(--font-brand);
  display: inline-block;
  padding: 6px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: clamp(11px, 1.2vw, 13px);
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: box-shadow var(--hero-fast) var(--hero-ease);
}
.x-hero__slide.is-active .x-hero__eyebrow{
  box-shadow: 0 0 16px color-mix(in srgb, var(--hero-accent) 25%, transparent);
}

.x-hero__title{
  margin:0 0 10px;
  font-weight: 1000;
  line-height: 1.08;
  font-size: clamp(30px, 4.7vw, 56px);
  text-wrap: balance;
  font-family: var(--font-brand);
}
.x-hero__accent{
  background: linear-gradient(90deg,
    var(--hero-gold),
    var(--neon-accent),
    var(--hero-gold)
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: accentShimmer 4s ease-in-out infinite;
}
@keyframes accentShimmer{
  0%, 100%{ background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

.x-hero__sub{
  margin:0 0 14px;
  color: var(--hero-muted);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.85;
  max-width: 58ch;
}

/* Chips */
.x-hero__chips{
  list-style:none;
  padding:0; margin:0 0 14px;
  display:flex; flex-wrap:wrap;
  gap: 10px;
}
.x-hero__chips li{
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: .45rem .75rem;
  border-radius: 999px;
  font-weight: 900;
  color: rgba(255,255,255,.90);
  font-size: .82rem;
  transition: border-color var(--hero-fast) var(--hero-ease),
              background  var(--hero-fast) var(--hero-ease),
              transform   var(--hero-fast) var(--hero-ease);
}
.x-hero__chips li:hover{
  border-color: color-mix(in srgb, var(--hero-accent) 50%, transparent);
  background: rgba(255,255,255,.12);
  transform: translateY(-1px);
}

/* CTAs using your primary/accent */
.x-hero__ctas{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-top: 14px;
}
.x-cta{
  position: relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: .78rem 1.05rem;
  border-radius: 999px;
  font-weight: 1000;
  text-decoration:none;
  border: 1px solid transparent;
  overflow: hidden;
  transition:
    transform var(--hero-fast) var(--hero-ease),
    filter var(--hero-fast) var(--hero-ease),
    box-shadow var(--hero-fast) var(--hero-ease),
    background var(--hero-fast) var(--hero-ease),
    border-color var(--hero-fast) var(--hero-ease);
  will-change: transform;
}
/* Ripple container — injected by JS */
.x-cta .cta-ripple{
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transform: scale(0);
  pointer-events: none;
  animation: ctaRipple .5s ease-out forwards;
}
@keyframes ctaRipple{
  to{ transform: scale(3); opacity: 0; }
}
.x-cta:hover{
  transform: translate3d(0,-2px,0);
  filter: brightness(1.06);
}
.x-cta:focus-visible{
  outline:none;
  box-shadow: var(--neon-ring);
}

/* primary — neon glow on hover */
.x-cta--solid{
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--hero-primary) 92%, #000),
    color-mix(in srgb, var(--hero-olive) 92%, #000)
  );
  color:#fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}
.x-cta--solid:hover{
  box-shadow:
    0 14px 34px rgba(0,0,0,.22),
    0 0 20px color-mix(in srgb, var(--hero-primary) 40%, transparent),
    0 0 40px color-mix(in srgb, var(--hero-primary) 18%, transparent);
}

/* whatsapp/accent — warm glow */
.x-cta--wa{
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--hero-accent) 92%, #000),
    color-mix(in srgb, var(--hero-gold) 70%, #000)
  );
  color:#1b1405;
  border-color: rgba(255,255,255,.10);
}
.x-cta--wa:hover{
  box-shadow:
    0 0 18px color-mix(in srgb, var(--hero-accent) 45%, transparent),
    0 0 36px color-mix(in srgb, var(--hero-accent) 15%, transparent);
}

/* ghost — border glow */
.x-cta--ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}
.x-cta--ghost:hover{
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.10);
  box-shadow: 0 0 14px rgba(255,255,255,.08);
}

/* Trust blocks */
.x-hero__trust{
  margin-top: 20px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.x-trust{
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  padding: 10px 12px;
}
.x-trust b{
  display:block;
  font-weight:1000;
  color: rgba(255,255,255,.92);
  margin-bottom:2px;
}
.x-trust span{
  color: rgba(255,255,255,.72);
  font-weight:800;
  font-size:.95rem;
}

/* Panel */
.x-hero__panel{
  padding: clamp(14px, 2.4vw, 22px);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.x-panel__kicker{
  margin:0 0 6px;
  font-weight:1000;
  color: rgba(255,255,255,.78);
}
.x-panel__title{
  margin:0 0 12px;
  font-weight:1000;
  line-height:1.25;
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,.92);
}
.x-panel__list{
  list-style:none;
  padding:0; margin:0;
  display:grid;
  gap: 12px;
}
.x-panel__list li{
  display:grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items:start;
  padding: 10px 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.12);
}
.x-ico{
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  font-size: 18px;
}
.x-panel__list b{ display:block; font-weight:1000; margin-bottom:2px; }
.x-panel__list span{ color: rgba(255,255,255,.72); font-weight:800; font-size:.95rem; }

.x-panel__foot{
  margin-top: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  flex-wrap:wrap;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 12px;
}
.x-mini{
  color: rgba(255,255,255,.82);
  text-decoration:none;
  font-weight:900;
}
.x-mini:hover{
  color:#fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.x-dot{ opacity:.55; }

/* Controls */
.x-hero__controls{
  position:absolute;
  inset:auto 0 clamp(14px, 3.4vw, 26px) 0;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  pointer-events:none;
}
.x-hero__ctrl{
  pointer-events:auto;
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
  transition: transform var(--hero-fast) var(--hero-ease), background var(--hero-fast) var(--hero-ease);
}
.x-hero__ctrl:hover{
  transform: translate3d(0,-1px,0);
  background: rgba(255,255,255,.12);
}
.x-hero__ctrl:focus-visible{
  outline:none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--hero-gold) 35%, transparent);
}
.x-hero__dots{
  pointer-events:auto;
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content:center;
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}
.x-hero__dots button{
  width:10px; height:10px;
  border-radius:999px;
  border:0;
  background: rgba(255,255,255,.28);
  cursor:pointer;
  transition: transform var(--hero-fast) var(--hero-ease), background var(--hero-fast) var(--hero-ease), width var(--hero-fast) var(--hero-ease);
}
.x-hero__dots button[aria-selected="true"]{
  background: linear-gradient(90deg, var(--hero-gold), var(--hero-accent));
  width:26px;
}
.x-hero__dots button:focus-visible{
  outline:none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--hero-gold) 35%, transparent);
}

/* Progress — neon glow bar */
.x-hero__progress{
  position:absolute;
  inset:auto 0 0 0;
  z-index:3;
  height:3px;
  background: rgba(255,255,255,.06);
}
.x-hero__progress > span{
  display:block;
  height:100%;
  width:0%;
  background: linear-gradient(90deg, var(--hero-gold), var(--neon-accent), var(--hero-primary));
  box-shadow: 0 0 8px color-mix(in srgb, var(--hero-accent) 40%, transparent);
  transition: width .12s linear;
}

/* Entrance stagger — fade + de-blur reveal */
.x-hero__copy > *{
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  filter: blur(4px);
}
.x-hero__slide.is-active .x-hero__copy > *{
  animation: heroIn .65s var(--hero-ease) both;
}
.x-hero [inert]{ pointer-events:none; }
.x-hero__slide.is-active .x-hero__copy > :nth-child(1){ animation-delay:.06s; }
.x-hero__slide.is-active .x-hero__copy > :nth-child(2){ animation-delay:.12s; }
.x-hero__slide.is-active .x-hero__copy > :nth-child(3){ animation-delay:.19s; }
.x-hero__slide.is-active .x-hero__copy > :nth-child(4){ animation-delay:.26s; }
.x-hero__slide.is-active .x-hero__copy > :nth-child(5){ animation-delay:.33s; }
.x-hero__slide.is-active .x-hero__copy > :nth-child(6){ animation-delay:.40s; }
@keyframes heroIn{
  from{ opacity:0; transform: translate3d(0, 14px, 0); filter: blur(4px); }
  to  { opacity:1; transform: translate3d(0, 0, 0);   filter: blur(0);   }
}

/* Panel entrance (from right in LTR / left in RTL) */
.x-hero__panel{
  opacity: 0;
  transform: translate3d(20px, 0, 0);
}
.x-hero[dir="rtl"] .x-hero__panel{
  transform: translate3d(-20px, 0, 0);
}
.x-hero__slide.is-active .x-hero__panel{
  animation: panelIn .7s var(--hero-ease) .3s both;
}
@keyframes panelIn{
  from{ opacity:0; transform: translate3d(20px, 0, 0); }
  to  { opacity:1; transform: translate3d(0, 0, 0);    }
}
.x-hero[dir="rtl"] .x-hero__slide.is-active .x-hero__panel{
  animation-name: panelIn-rtl;
}
@keyframes panelIn-rtl{
  from{ opacity:0; transform: translate3d(-20px, 0, 0); }
  to  { opacity:1; transform: translate3d(0, 0, 0);     }
}

/* Responsive */
@media (max-width: 980px){
  /* Let content determine hero height instead of fixed min-height */
  .x-hero__viewport{
    min-height: 0;
    display: grid;
  }
  /* Stack all slides in same grid cell */
  .x-hero__slide{
    grid-area: 1 / 1;
    position: relative;
    inset: auto;
  }
  /* Hide inactive slides without taking space */
  .x-hero__slide:not(.is-active){
    visibility: hidden;
    height: 0;
    min-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }
  .x-hero__slide.is-active{
    visibility: visible;
    height: auto;
    overflow: visible;
  }

  .x-hero__layout{ grid-template-columns: 1fr; }
  .x-hero__panel{ order:2; }
  .x-hero__copy{ order:1; }

  .x-hero__shade{
    background:
      radial-gradient(900px 540px at 55% 25%, rgba(0,0,0,.10), rgba(0,0,0,.68) 70%),
      linear-gradient(180deg, rgba(0,0,0,.76), rgba(0,0,0,.20));
  }
  .x-hero__controls{
    position:relative;
    inset:auto;
    padding: 12px 0 16px;
  }
  /* Smaller orbs on tablet */
  .x-hero__orb--a{ width: 400px; height: 400px; }
  .x-hero__orb--b{ width: 350px; height: 350px; }
}

@media (max-width: 640px){
  /* Tighten hero spacing on small screens */
  .x-hero__inner{ padding-block: clamp(14px, 3vw, 28px); }
  .x-hero__copy{ padding: clamp(12px, 2.2vw, 18px); }
  .x-hero__title{ font-size: clamp(22px, 6.5vw, 34px); margin-bottom: 6px; }
  .x-hero__sub{ font-size: clamp(13px, 3.6vw, 15px); margin-bottom: 8px; line-height: 1.65; }
  .x-hero__eyebrow{ font-size: clamp(9px, 2.6vw, 11px); margin-bottom: 6px; padding: 4px 10px; }
  .x-hero__chips{ gap: 6px; margin-bottom: 8px; }
  .x-hero__chips li{ padding: .3rem .55rem; font-size: .75rem; }
  .x-hero__ctas{ gap: 8px; margin-top: 4px; }
  .x-hero__ctas .x-cta{ flex: 1 1 calc(50% - 8px); min-height: 44px; padding: .6rem .8rem; font-size: .85rem; }
  .x-hero__ctas .x-cta--solid{ flex-basis: 100%; }
  .x-hero__trust{ grid-template-columns: 1fr; gap: 6px; margin-top: 10px; }
  .x-trust{ padding: 8px 10px; }
  .x-trust b{ font-size: .88rem; }
  .x-trust span{ font-size: .82rem; }
  /* Hide panel on phones to free space */
  .x-hero__panel{ display: none; }
  /* Tone down orbs for performance */
  .x-hero__orb{ filter: blur(60px); opacity: .2; }
  .x-hero__grid{ display: none; }
}

@media (max-width: 420px){
  .x-hero__ctas .x-cta{ flex: 1 1 100%; }
  .x-hero__title{ font-size: clamp(20px, 6vw, 28px); }
  .x-hero__chips{ display: none; }
  .x-hero__trust{ display: none; }
}

/* Reduced motion — kill ALL hero animations */
@media (prefers-reduced-motion: reduce){
  .x-hero__slide,
  .x-hero__media img,
  .x-hero__copy > *,
  .x-hero__panel,
  .x-hero__orb,
  .x-hero__accent{
    transition: none !important;
    animation: none !important;
    filter: none !important;
  }
  .x-hero__copy > *,
  .x-hero__panel{
    opacity: 1 !important;
    transform: none !important;
  }
  .x-hero__progress{ display:none; }
}


/* ================================
    About Styles
================================== */

/* About component variables consolidated into main :root */



/* ================================
    About V2 Styles
================================== */
.ab2 {
  position: relative;
  overflow: clip;
  isolation: isolate;
  padding-block: var(--section-gap);
  color: rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(1200px 700px at 80% 10%, color-mix(in srgb, var(--brand-gold) 22%, transparent), transparent 65%),
    radial-gradient(900px 520px at 10% 90%, color-mix(in srgb, var(--brand-olive) 22%, transparent), transparent 60%),
    linear-gradient(180deg, color-mix(in srgb, var(--brand-navy) 96%, #000), color-mix(in srgb, var(--brand-navy) 82%, #000));
}

.ab2__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.ab2__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  will-change: transform, opacity;
}

.ab2__orb--a {
  width: 500px;
  height: 500px;
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, var(--neon-accent-global), transparent 70%);
  animation: orbDrift-ab2-a 18s ease-in-out infinite alternate;
}

.ab2__orb--b {
  width: 600px;
  height: 600px;
  bottom: -15%;
  left: -8%;
  background: radial-gradient(circle, var(--neon-primary-global), transparent 70%);
  animation: orbDrift-ab2-b 22s ease-in-out infinite alternate;
}

.ab2__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 60% 55% at 50% 50%, #000, transparent);
  opacity: 0.6;
}

@keyframes orbDrift-ab2-a {
  to { transform: translate3d(-20px, 30px, 0) scale(1.1); opacity: 0.4; }
}

@keyframes orbDrift-ab2-b {
  to { transform: translate3d(25px, -15px, 0) scale(1.05); opacity: 0.3; }
}

.ab2__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.ab2__copy > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(.22,1,.36,1), transform 0.6s cubic-bezier(.22,1,.36,1);
}
.ab2.is-inview .ab2__copy > * {
  opacity: 1;
  transform: translateY(0);
}
.ab2.is-inview .ab2__copy > *:nth-child(1) { transition-delay: .1s; }
.ab2.is-inview .ab2__copy > *:nth-child(2) { transition-delay: .2s; }
.ab2.is-inview .ab2__copy > *:nth-child(3) { transition-delay: .3s; }


.ab2__title {
  margin: .2em 0 .4em;
  font-family: var(--font-brand);
  font-weight: 900;
  line-height: 1.2;
  font-size: clamp(28px, 4.5vw, 44px);
  color: #fff;
}

.ab2__accent {
  color: var(--brand-gold);
  text-shadow: var(--neon-glow-global);
}

.ab2__lead {
  font-size: clamp(16px, 1.7vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 50ch;
}

.ab2__kpis {
  display: flex;
  gap: 16px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.ab2__kpi {
  flex: 1;
  background: var(--glass-dark-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-dark-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ab2__kpi::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--brand-gold) 25%, transparent), transparent 60%);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity .4s ease, transform .4s ease;
}
.ab2.is-inview .ab2__kpi::before {
  transform: translateY(0);
  opacity: 0.15;
}


.ab2__kpi-num {
  display: block;
  font-weight: 900;
  color: #fff;
  font-size: clamp(24px, 5vw, 40px);
  text-shadow: 0 0 18px color-mix(in srgb, var(--brand-gold) 50%, transparent);
}

.ab2__kpi-label {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  font-size: 0.9rem;
}

.ab2__ctas {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.ab2__visual {
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1) .2s, transform 0.8s cubic-bezier(.22,1,.36,1) .2s;
}
.ab2.is-inview .ab2__visual {
  opacity: 1;
  transform: scale(1);
}


.ab2__visual-fig {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-dark-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  transition: box-shadow .3s ease;
}
.ab2__visual-fig:hover {
  box-shadow: 0 0 40px color-mix(in srgb, var(--brand-gold) 25%, transparent), 0 20px 50px rgba(0,0,0,0.2);
}

.ab2__visual-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab2__floating-badge {
  position: absolute;
  bottom: 20px;
  right: -10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-dark-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-dark-border);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--brand-gold);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
[dir="rtl"] .ab2__floating-badge {
  right: auto;
  left: -10px;
}

.ab2__floating-badge svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .ab2__layout {
    grid-template-columns: 1fr;
  }
  .ab2__copy { order: 1; text-align: center; }
  .ab2__visual { order: 2; }
  .ab2__lead { margin-inline: auto; }
  .ab2__kpis { justify-content: center; }
  .ab2__ctas { justify-content: center; }
}

@media (max-width: 768px) {
  .ab2 { padding-block: var(--section-gap-sm); }
  .ab2__kpis { flex-wrap: wrap; }
  .ab2__kpi { flex-basis: 45%; }
}

@media (max-width: 480px) {
  .ab2__kpi { flex-basis: 100%; }
  .ab2__ctas { flex-direction: column; align-items: stretch; }
  .ab2__ctas .btn { width: 100%; }
  .ab2__orb--a { width: 300px; height: 300px; }
  .ab2__orb--b { width: 400px; height: 400px; }
  .ab2__grid { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ab2__orb, .ab2__copy > *, .ab2__visual {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ================================
    Services V2 Styles
================================== */
.svc2 {
  position: relative;
  overflow: clip;
  isolation: isolate;
  padding-block: var(--section-gap);
  color: rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(1000px 600px at 20% 80%, color-mix(in srgb, var(--brand-gold) 18%, transparent), transparent 65%),
    radial-gradient(800px 500px at 80% 20%, color-mix(in srgb, var(--brand-olive) 25%, transparent), transparent 60%),
    linear-gradient(180deg, color-mix(in srgb, var(--brand-navy) 96%, #000), color-mix(in srgb, var(--brand-navy) 82%, #000));
  color: rgba(255,255,255,.92);
}

/* ─── Background Scene ─── */
.svc2__bg{
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.svc2__orb{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  will-change: transform, opacity;
}
.svc2__orb--a{
  width: 500px; height: 500px;
  top: -10%; right: -5%;
  background: radial-gradient(circle, var(--neon-primary-global), transparent 70%);
  animation: orbDrift-svc2-a 18s ease-in-out infinite alternate;
}
.svc2__orb--b{
  width: 450px; height: 450px;
  bottom: -15%; left: -8%;
  background: radial-gradient(circle, var(--brand-olive), transparent 70%);
  animation: orbDrift-svc2-b 22s ease-in-out infinite alternate;
}
.svc2__grid-overlay{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 60% 55% at 50% 50%, #000, transparent);
  opacity: .6;
}
@keyframes orbDrift-svc2-a{
  0%  { transform: translate3d(0,0,0) scale(1);   opacity: .30; }
  50% { transform: translate3d(40px, -30px, 0) scale(1.1); opacity: .40; }
  100%{ transform: translate3d(-20px, 20px, 0) scale(.95); opacity: .28; }
}
@keyframes orbDrift-svc2-b{
  0%  { transform: translate3d(0,0,0) scale(1);   opacity: .25; }
  50% { transform: translate3d(-35px, 25px, 0) scale(1.08); opacity: .35; }
  100%{ transform: translate3d(15px, -15px, 0) scale(.94); opacity: .22; }
}

/* ─── Header ─── */
.svc2__head{
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.svc2__title{
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.2;
  margin-bottom: .3em;
  text-shadow: 0 0 24px rgba(255,255,255,.1);
}
.svc2__sub{
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,.8);
  max-width: 60ch;
  margin-inline: auto;
}

/* ─── Services Grid ─── */
.svc2__cards{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.svc2__card{
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  opacity: 0;
  transform: translateY(24px);
}
.svc2__cards.is-visible .svc2__card{
  opacity: 1;
  transform: translateY(0);
}
.svc2__card::before{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(300px circle at var(--mx, 0) var(--my, 0), rgba(201,167,106,.15), transparent 80%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 0;
}
.svc2__card:hover::before{
  opacity: 1;
}
.svc2__card:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.2), 0 0 0 1px color-mix(in srgb, var(--brand-gold) 50%, transparent);
  border-color: color-mix(in srgb, var(--brand-gold) 30%, transparent);
}

/* Card thumbnail */
.svc2__thumb{
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.svc2__thumb img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(.22,1,.36,1), filter .35s ease;
  filter: brightness(.85);
}
.svc2__card:hover .svc2__thumb img{
  transform: scale(1.06);
  filter: brightness(1);
}
.svc2__thumb-placeholder{
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.25);
}
.svc2__thumb-placeholder svg{
  width: 48px; height: 48px;
}

/* Card body */
.svc2__body{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(18px, 2.5vw, 28px);
  flex: 1;
}
.svc2__name{
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.25;
  color: #fff;
  margin: 0;
}
.svc2__tag{
  font-size: clamp(13px, 1.4vw, 15px);
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.svc2__arrow{
  font-size: 22px;
  color: var(--brand-gold);
  align-self: flex-end;
  transform: translateX(6px);
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
  margin-top: 4px;
}
[dir="rtl"] .svc2__arrow{
  transform: translateX(-6px) scaleX(-1);
}
.svc2__card:hover .svc2__arrow{
  transform: translateX(0);
}
[dir="rtl"] .svc2__card:hover .svc2__arrow{
  transform: translateX(0) scaleX(-1);
}

/* ─── Marquee & CTAs ─── */
.svc2__footer{
  margin-top: clamp(32px, 5vw, 56px);
  text-align: center;
}
.svc2__chips{
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  margin-bottom: 32px;
}
.svc2__track{
  display: flex;
  width: max-content;
  animation: svc2-marq 30s linear infinite;
}
[dir="rtl"] .svc2__track{
  animation-name: svc2-marq-rtl;
}
.svc2__track > span{
  font-size: .8rem;
  font-weight: 700;
  color: var(--brand-gold);
  padding: .3rem .8rem;
  margin: .3rem;
  border-radius: 999px;
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  white-space: nowrap;
}
@keyframes svc2-marq      { to { transform: translateX(-50%); } }
@keyframes svc2-marq-rtl  { to { transform: translateX(50%); } }
.svc2__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block: .7rem;
}
.svc2__ctas{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ─── Responsive ─── */
@media (max-width: 768px){
  .svc2__cards{
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}
@media (max-width: 480px){
  .svc2__orb--a, .svc2__orb--b { display: none; }
  .svc2__grid-overlay { display: none; }
  .svc2__cards{
    grid-template-columns: 1fr;
  }
  .svc2__thumb{ aspect-ratio: 16 / 9; }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce){
  .svc2__orb, .svc2__card, .svc2__card::before, .svc2__arrow {
    animation: none !important;
    transition: none !important;
  }
  .svc2__card {
    opacity: 1;
    transform: none;
  }
  .svc2__track {
    animation-play-state: paused;
  }
}

/* ================================
   Why Us — Light Glass Cards
================================== */
.wy-us{
  background:var(--brand-beige);
  overflow:hidden;
  position:relative;
  isolation:isolate;
  padding-block:var(--section-gap);
}

/* ─── Background decoration ─── */
.wy-us__bg{
  position:absolute; inset:0; z-index:0;
  pointer-events:none; overflow:hidden;
}
.wy-us__orb{
  position:absolute; border-radius:50%; will-change:transform;
}
.wy-us__orb--a{
  width:400px; height:400px;
  top:-100px; right:-150px;
  background:radial-gradient(ellipse, color-mix(in srgb, var(--brand-gold) 20%, transparent), transparent 70%);
  filter:blur(64px); opacity:.2;
  animation:orbDrift-wyu-a 14s ease-in-out infinite alternate;
}
.wy-us__orb--b{
  width:350px; height:350px;
  bottom:-120px; left:-120px;
  background:radial-gradient(ellipse, color-mix(in srgb, var(--brand-olive) 18%, transparent), transparent 70%);
  filter:blur(72px); opacity:.15;
  animation:orbDrift-wyu-b 18s ease-in-out infinite alternate;
}
@keyframes orbDrift-wyu-a{ to{ transform:translate3d(-40px,50px,0) scale(1.1); } }
@keyframes orbDrift-wyu-b{ to{ transform:translate3d(30px,-40px,0) scale(1.05); } }

/* ─── Header ─── */
.wy-us__head{
  text-align:center;
  margin-bottom:clamp(32px, 5vw, 48px);
  position:relative; z-index:1;
}
.wy-us__title{
  font-family:var(--font-brand);
  font-weight:900;
  font-size:clamp(26px, 4.5vw, 42px);
  color:var(--brand-navy);
  margin-bottom:.3em;
}
.wy-us__sub{
  color:var(--brand-charcoal);
  font-size:clamp(16px, 2vw, 18px);
  max-width:55ch;
  margin-inline:auto;
}

/* ─── Card grid ─── */
.wy-us__grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:clamp(16px, 2.5vw, 24px);
  list-style:none;
  padding:0; margin:0;
  position:relative; z-index:1;
}

/* ─── Cards ─── */
.wy-us__card{
  background:var(--glass-light-bg);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border:1px solid var(--glass-light-border);
  border-radius:var(--radius-lg);
  padding:clamp(24px, 3vw, 32px);
  box-shadow:var(--glass-light-shadow);
  position:relative;
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease, border-color .22s ease;
}
/* Top accent gradient line */
.wy-us__card::before{
  content:''; position:absolute;
  top:0; inset-inline:0; height:3px;
  background:linear-gradient(90deg, var(--brand-green), var(--brand-gold));
  opacity:0; transition:opacity .22s ease;
}
.wy-us__card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 48px rgba(0,0,0,.12), var(--glass-light-shadow);
  border-color:color-mix(in srgb, var(--brand-green) 30%, transparent);
}
.wy-us__card:hover::before{ opacity:1; }

/* ─── Icon ─── */
.wy-us__icon{
  width:56px; height:56px;
  border-radius:50%;
  display:grid; place-items:center;
  background:color-mix(in srgb, var(--brand-green) 10%, transparent);
  border:1px solid color-mix(in srgb, var(--brand-green) 20%, transparent);
  color:var(--brand-green);
  margin-bottom:16px;
  transition:box-shadow .25s ease;
}
.wy-us__icon svg{ width:26px; height:26px; }
.wy-us__card:hover .wy-us__icon{
  box-shadow:0 0 0 4px color-mix(in srgb, var(--color-primary) 18%, transparent);
}

/* ─── Card text ─── */
.wy-us__card h3{
  font-family:var(--font-brand);
  font-weight:800;
  color:var(--brand-navy);
  margin-bottom:8px;
  font-size:1.15rem;
}
.wy-us__card p{
  color:var(--brand-charcoal);
  font-size:15px;
  line-height:1.65;
  margin:0;
}

/* ─── Responsive ─── */
@media(max-width:768px){
  .wy-us__grid{ grid-template-columns:repeat(2, 1fr); }
}
@media(max-width:480px){
  .wy-us__orb{ display:none; }
  .wy-us__grid{ grid-template-columns:1fr; }
}
@media(prefers-reduced-motion:reduce){
  .wy-us__orb{ animation:none; }
  .wy-us__card{ transition:none; }
  .wy-us__card:hover{ transform:none; }
}

/* Backdrop-filter fallback */
@supports not (backdrop-filter:blur(1px)){
  .wy-us__card{ background:rgba(255,255,255,.88); }
}


/* ================================
   Instant Quote — Light Wizard Card
================================== */
.qx-quote{
  background:
    radial-gradient(600px 400px at 30% 20%, color-mix(in srgb, var(--brand-gold) 6%, transparent), transparent),
    linear-gradient(180deg, var(--color-bg), var(--brand-beige));
  overflow:hidden;
  position:relative;
  isolation:isolate;
  padding-block:var(--section-gap);
}

/* ─── Background decoration ─── */
.qx-quote::before,
.qx-quote::after{
  content:''; position:absolute;
  border-radius:50%; pointer-events:none;
}
.qx-quote::before{
  width:350px; height:350px;
  top:-80px; left:-100px;
  background:radial-gradient(ellipse, color-mix(in srgb, var(--brand-gold) 18%, transparent), transparent 70%);
  filter:blur(64px); opacity:.18;
  animation:orbDrift-qx-a 16s ease-in-out infinite alternate;
}
.qx-quote::after{
  width:300px; height:300px;
  bottom:-80px; right:-80px;
  background:radial-gradient(ellipse, color-mix(in srgb, var(--color-primary) 15%, transparent), transparent 70%);
  filter:blur(72px); opacity:.12;
  animation:orbDrift-qx-b 20s ease-in-out infinite alternate;
}
@keyframes orbDrift-qx-a{ to{ transform:translate3d(30px,40px,0) scale(1.1); } }
@keyframes orbDrift-qx-b{ to{ transform:translate3d(-25px,-30px,0) scale(1.08); } }

/* ─── Header ─── */
.qq-head{
  text-align:center;
  margin-bottom:clamp(24px, 4vw, 40px);
  position:relative; z-index:1;
}
.qq-title{
  font-family:var(--font-brand);
  font-weight:900;
  font-size:clamp(26px, 4.5vw, 40px);
  color:var(--brand-navy);
  margin-bottom:.3em;
}
.qq-sub{
  color:var(--brand-charcoal);
  font-size:clamp(16px, 2vw, 18px);
  max-width:40ch;
  margin-inline:auto;
}

/* ─── Live estimate badge ─── */
.qq-estimate{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  background:color-mix(in srgb, var(--brand-green) 6%, transparent);
  border:1px solid color-mix(in srgb, var(--brand-green) 18%, transparent);
  border-radius:999px;
  padding:.6rem 1.2rem;
  margin:0 auto clamp(20px, 3vw, 32px);
  max-width:600px;
  position:relative; z-index:1;
}
.qq-est__label{
  font-weight:700;
  color:var(--brand-olive);
  font-size:.9rem;
}
.qq-est__price,
.qq-est__time{
  color:var(--brand-navy);
  font-weight:900;
  font-size:1.1rem;
}
.qq-est__sep{
  color:var(--brand-gray-300);
}

/* ─── Form / Wizard card ─── */
.qq{
  max-width:800px;
  margin-inline:auto;
  background:var(--glass-light-bg);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid var(--glass-light-border);
  border-radius:var(--radius-lg);
  padding:clamp(24px, 4vw, 48px);
  box-shadow:var(--glass-light-shadow), 0 1px 0 rgba(255,255,255,.8) inset;
  position:relative; z-index:1;
}

/* Progress bar */
.qq-progress{
  height:4px;
  background:var(--brand-gray-100);
  border-radius:999px;
  margin-bottom:24px;
  overflow:hidden;
}
.qq-progress > span{
  display:block;
  height:100%;
  background:linear-gradient(90deg, var(--brand-green), var(--brand-gold));
  border-radius:999px;
  width:33.3%;
  transition:width .4s cubic-bezier(.22,1,.36,1);
}

/* Step fieldsets */
.qq-step{
  display:none;
  border:none;
  padding:0; margin:0;
}
.qq-step.is-active{
  display:block;
  animation:qqFadeIn .35s ease;
}
@keyframes qqFadeIn{
  from{ opacity:0; transform:translateY(12px); }
  to  { opacity:1; transform:translateY(0); }
}

/* Form rows */
.qq-row{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:16px;
  margin-bottom:20px;
}

/* Field labels */
.qq-field{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.qq-field > span{
  font-weight:700;
  font-size:.88rem;
  color:var(--brand-navy);
}

/* Inputs & selects */
.qq-field input,
.qq-field select{
  padding:.65rem 1rem;
  border:1.5px solid var(--brand-gray-300);
  border-radius:var(--radius);
  font-family:var(--font-arabic);
  font-size:1rem;
  background:var(--color-surface);
  color:var(--brand-charcoal);
  transition:border-color .2s ease, box-shadow .2s ease;
}
.qq-field input::placeholder{
  color:var(--brand-gray-300);
}
.qq-field input:focus,
.qq-field select:focus{
  border-color:var(--brand-green);
  box-shadow:0 0 0 3px color-mix(in srgb, var(--brand-green) 15%, transparent);
  outline:none;
}

/* Action buttons */
.qq-actions{
  display:flex;
  justify-content:flex-end;
  gap:12px;
  margin-top:8px;
}
[dir="rtl"] .qq-actions{
  justify-content:flex-start;
}

/* Success note */
.qq-note{
  text-align:center;
  margin-top:20px;
  padding:16px;
  border-radius:var(--radius);
  background:color-mix(in srgb, var(--brand-green) 8%, transparent);
  border:1px solid color-mix(in srgb, var(--brand-green) 20%, transparent);
  color:var(--brand-green);
  font-weight:700;
}

/* ─── Responsive ─── */
@media(max-width:600px){
  .qq-row{ grid-template-columns:1fr; }
  .qq{ padding:clamp(16px, 4vw, 24px); }
  .qq-estimate{
    flex-direction:column;
    gap:6px;
    text-align:center;
    border-radius:var(--radius);
  }
  .qq-est__sep{ display:none; }
  .qq-actions{
    flex-direction:column;
  }
  .qq-actions .btn{
    width:100%;
  }
}
@media(max-width:480px){
  .qx-quote::before,
  .qx-quote::after{ display:none; }
}

/* ─── Reduced motion ─── */
@media(prefers-reduced-motion:reduce){
  .qx-quote::before,
  .qx-quote::after{ animation:none; }
  .qq-step.is-active{ animation:none; }
}

/* Backdrop-filter fallback */
@supports not (backdrop-filter:blur(1px)){
  .qq{ background:rgba(255,255,255,.92); }
}


/* ═══════════════════════════════════════════════════════════════
   AREAS / Service Areas Section
   ═══════════════════════════════════════════════════════════════ */
.ar-home{
  background: var(--c-white);
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

.ar-home__head{
  text-align: center;
  margin-bottom: var(--section-gap);
}

.ar-home__eyebrow{
  display: inline-block;
  padding: 8px 12px;
  background: rgba(90, 125, 108, 0.12);
  color: var(--c-success);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.ar-home__title{
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--c-navy);
  margin: 12px 0;
  line-height: 1.2;
}

.ar-home__sub{
  font-size: 1rem;
  color: var(--c-gray-700);
  max-width: 600px;
  margin: 8px auto 0;
}

.ar-home__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-bottom: var(--section-gap);
  grid-auto-rows: auto;
}

@media(max-width: 768px){
  .ar-home__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 480px){
  .ar-home__grid{
    grid-template-columns: 1fr;
  }
}

.ar-home__card{
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: var(--glass-light-bg);
  border: 1px solid var(--glass-light-border);
  backdrop-filter: blur(8px);
  /* entrance handled by .g-fade-up transition system */
}

/* Smooth hover transitions after entrance reveal */
.ar-home__card.is-visible{
  transition: border-color var(--t-fast) ease, background var(--t-fast) ease,
              box-shadow var(--t-fast) ease, transform var(--t-fast) ease;
}

.ar-home__card:hover,
.ar-home__card:focus-within{
  border-color: var(--c-success);
  background: rgba(90, 125, 108, 0.08);
  box-shadow: 0 8px 24px rgba(90, 125, 108, 0.12);
  transform: translateY(-8px);
}

.ar-home__card img,
.ar-home__placeholder{
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, var(--c-beige), rgba(201, 167, 106, 0.1));
}

.ar-home__placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--c-gold);
  font-family: var(--font-brand);
}

.ar-home__card-body{
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ar-home__card-title{
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-navy);
  margin: 0;
}

.ar-home__card-intro{
  font-size: 0.9rem;
  color: var(--c-gray-600);
  margin: 0;
  flex: 1;
  line-height: 1.5;
}

.ar-home__cta{
  text-align: center;
  padding-top: var(--section-gap-sm);
}

/* Reduced motion for areas handled by .g-fade-up global rule */


/* ═══════════════════════════════════════════════════════════════
   REVIEWS / Social Proof Slider Section
   ═══════════════════════════════════════════════════════════════ */
.rv-section{
  background: linear-gradient(135deg, var(--c-navy) 0%, #1a2332 100%);
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

/* Decorative orbs */
.rv-section::before{
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 167, 106, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -80px;
  animation: orbDrift-rv-1 18s ease-in-out infinite;
  pointer-events: none;
}

.rv-section::after{
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(90, 125, 108, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -60px;
  left: -100px;
  animation: orbDrift-rv-2 22s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orbDrift-rv-1{
  0%, 100%{ transform: translate(0, 0) scale(1); }
  50%{ transform: translate(20px, 30px) scale(1.05); }
}

@keyframes orbDrift-rv-2{
  0%, 100%{ transform: translate(0, 0) scale(1); }
  50%{ transform: translate(-30px, -20px) scale(0.95); }
}

.rv-section__head{
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: var(--section-gap);
}

.rv-section__eyebrow{
  display: inline-block;
  padding: 8px 12px;
  background: rgba(201, 167, 106, 0.15);
  color: var(--c-gold);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.rv-section__title{
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--c-white);
  margin: 12px 0 0;
  line-height: 1.2;
}

.rv-section__rating{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.k-stars{
  display: flex;
  gap: 2px;
}

.k-star{
  font-size: 1.2rem;
  color: var(--c-gold);
}

.rv-section__score{
  font-weight: 700;
  color: var(--c-white);
  font-size: 1.1rem;
}

.rv-slider{
  position: relative;
  z-index: 2;
}

[data-slider]{
  position: relative;
  overflow: hidden;
}

.k-ttrack{
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 2px;
  scroll-padding: 24px;
}

/* For proper scrollbar styling */
.k-ttrack::-webkit-scrollbar{
  height: 4px;
}

.k-ttrack::-webkit-scrollbar-track{
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.k-ttrack::-webkit-scrollbar-thumb{
  background: var(--c-gold);
  border-radius: 4px;
}

.rv-card{
  flex: 0 0 auto;
  min-width: 360px;
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(12px);
  transition: all var(--t-slow) ease;
}

@media(max-width: 768px){
  .rv-card{
    min-width: 320px;
  }
}

.rv-card:hover{
  border-color: var(--c-gold);
  box-shadow: 0 8px 32px rgba(201, 167, 106, 0.2);
  transform: translateY(-4px);
}

.rv-card__stars{
  font-size: 1.1rem;
  color: var(--c-gold);
}

.rv-card__text{
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  flex: 1;
  font-style: italic;
}

.rv-card__footer{
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rv-card__avatar{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold) 0%, rgba(201, 167, 106, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.rv-card__name{
  font-weight: 600;
  color: var(--c-white);
  margin: 0;
  font-size: 0.95rem;
}

.rv-card__date{
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.rv-controls{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: var(--section-gap-sm);
  position: relative;
  z-index: 2;
}

.rv-btn{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 167, 106, 0.2);
  border: 1px solid rgba(201, 167, 106, 0.4);
  color: var(--c-gold);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all var(--t-fast) ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rv-btn:hover{
  background: var(--c-gold);
  color: var(--c-navy);
}

[data-dots]{
  display: flex;
  gap: 8px;
  justify-content: center;
}

[data-dots] button{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--t-fast) ease;
}

[data-dots] button[aria-selected="true"]{
  background: var(--c-gold);
  transform: scale(1.3);
}

/* Reduced motion */
@media(prefers-reduced-motion: reduce){
  .rv-section::before,
  .rv-section::after{
    animation: none;
  }
  .rv-card:hover{
    transform: none;
  }
}

@media(max-width: 480px){
  .rv-section{
    padding: var(--section-gap-sm) 0;
  }
  .k-ttrack{
    gap: 16px;
  }
  .rv-controls{
    gap: 16px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   PROCESS / Journey Map Section
   ═══════════════════════════════════════════════════════════════ */
.pr-journey{
  background: var(--c-beige);
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

.prj__head{
  text-align: center;
  margin-bottom: var(--section-gap);
}

.prj__title{
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--c-navy);
  margin: 0;
  line-height: 1.2;
}

.prj__sub{
  font-size: 1rem;
  color: var(--c-gray-700);
  margin: 12px 0 0;
}

.prj__stage{
  position: relative;
  padding: var(--section-gap-sm) 0;
  min-height: 400px;
}

@media(max-width: 768px){
  .prj__stage{
    min-height: 600px;
  }
}

@media(max-width: 480px){
  .prj__stage{
    min-height: 800px;
  }
}

.prj__svg{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 320px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.prj__path-bg{
  stroke: rgba(36, 52, 71, 0.1);
  stroke-width: var(--prj-stroke);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prj__path{
  stroke: url(#prjGradient);
  stroke-width: var(--prj-stroke);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  /* dasharray/dashoffset controlled by JS scroll animation */
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

.prj__pins{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 2;
}

.prj__pin{
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
}

.prj__cap{
  width: var(--prj-cap);
  height: var(--prj-cap);
  border-radius: 50%;
  background: var(--glass-light-bg);
  border: 2px solid var(--glass-light-border);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--c-navy);
  margin: 0 auto 16px;
  transition: all var(--t-slow) ease;
  position: relative;
  z-index: 3;
}

.prj__pin:hover .prj__cap{
  background: linear-gradient(135deg, var(--c-success) 0%, var(--c-olive) 100%);
  border-color: var(--c-success);
  color: var(--c-white);
  box-shadow: 0 0 20px rgba(90, 125, 108, 0.4);
  transform: scale(1.15);
}

.prj__card{
  background: var(--glass-light-bg);
  border: 1px solid var(--glass-light-border);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 16px;
  min-width: 200px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.prj__pin.is-show .prj__card{
  opacity: 1;
  transform: translateY(0);
}

.prj__pin:nth-child(2) .prj__card{ transition-delay: .1s; }
.prj__pin:nth-child(3) .prj__card{ transition-delay: .2s; }
.prj__pin:nth-child(4) .prj__card{ transition-delay: .3s; }

/* Active pin state (JS scroll-driven) */
.prj__pin.is-active .prj__cap{
  background: linear-gradient(135deg, var(--c-success) 0%, var(--c-olive) 100%);
  border-color: var(--c-success);
  color: var(--c-white);
  box-shadow: 0 0 20px rgba(90, 125, 108, 0.4);
}

.prj__card h3{
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-navy);
  margin: 0 0 8px;
}

.prj__card p{
  font-size: 0.85rem;
  color: var(--c-gray-700);
  margin: 0;
  line-height: 1.5;
}

/* Tablet / Mobile: vertical timeline */
@media(max-width: 768px){
  .prj__stage{
    min-height: auto;
  }

  .prj__svg{
    display: none;
  }

  .prj__pins{
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .prj__pin{
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin-bottom: 40px;
    padding-inline-start: 80px;
  }

  .prj__cap{
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    margin: 0;
  }

  .prj__card{
    width: 100%;
  }
}

/* Reduced motion */
@media(prefers-reduced-motion: reduce){
  .prj__card{
    opacity: 1;
    transform: none;
    transition: none;
  }
  .prj__pin:hover .prj__cap,
  .prj__pin.is-active .prj__cap{
    transform: none;
  }
}


/* ═══════════════════════════════════════════════════════════════
   FAQ / Accordion Section (Redesigned)
   ═══════════════════════════════════════════════════════════════ */
.qx-faq {
  background-color: #fff; /* Ensure it stays light/clean */
  padding: clamp(3rem, 5vw, 5rem) 0;
  color: var(--c-navy); /* Dark text for contrast */
}

.qx-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.qx-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.qx-sub {
  font-size: 1.125rem;
  color: #666;
  font-weight: 400;
}

.qx-accordion {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px; /* Centered max-width constraint */
  display: flex;
  flex-direction: column;
}

.qx-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Minimalist separator */
  transition: background-color 0.3s ease;
  padding: 0;
}

.qx-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.qx-item:hover {
  background-color: rgba(90, 125, 108, 0.04);
}

.qx-heading {
  margin: 0;
  font-size: 1rem; /* Reset heading size for semantic use */
}

.qx-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: right; /* RTL support by default, or inherit */
  font-family: inherit;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* RTL adjustment if dir="rtl" is set on parent, usually auto-handled by flex but being explicit */
[dir="rtl"] .qx-toggle {
  text-align: right;
}

.qx-question-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-navy);
  padding-left: 1.5rem; /* Space for icon on left in RTL? Adjust based on direction */
}
[dir="rtl"] .qx-question-text {
  padding-left: 1.5rem;
  padding-right: 0;
}
[dir="ltr"] .qx-question-text {
  padding-right: 1.5rem;
  padding-left: 0;
}

.qx-toggle:hover .qx-question-text,
.qx-toggle[aria-expanded="true"] .qx-question-text {
  color: var(--c-accent); /* Highlight color when active/hover */
}

/* --- Icon (Plus/Minus) --- */
.qx-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  color: #999;
  transition: transform 0.3s ease, color 0.3s ease;
}

.qx-svg-plus,
.qx-svg-minus {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.qx-svg-minus {
  opacity: 0;
  transform: rotate(-90deg);
}

.qx-toggle[aria-expanded="true"] .qx-icon {
  color: var(--c-accent);
}

.qx-toggle[aria-expanded="true"] .qx-svg-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.qx-toggle[aria-expanded="true"] .qx-svg-minus {
  opacity: 1;
  transform: rotate(0);
}

/* --- Panel (Answer) --- */
.qx-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, visibility 0s linear 0.35s;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.qx-item:has(.qx-toggle[aria-expanded="true"]) .qx-panel {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, visibility 0s linear;
  pointer-events: auto;
}

.qx-content {
  min-height: 0;
  overflow: hidden;
  color: #555;
  line-height: 1.7;
  padding-bottom: 1.5rem; /* Spacing at bottom of open answer */
}

.qx-content p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
}


/* ═══════════════════════════════════════════════════════════════
   BLOG / Tips Section
   ═══════════════════════════════════════════════════════════════ */
.bt{
  background: linear-gradient(135deg, var(--c-navy) 0%, #1a2332 100%);
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

/* Decorative orbs */
.bt__orb{
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: orbDrift-bt 20s ease-in-out infinite;
}

.bt__orb--gold{
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 167, 106, 0.15) 0%, transparent 70%);
  top: -120px;
  right: -60px;
  animation-duration: 18s;
}

.bt__orb--olive{
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(81, 98, 91, 0.12) 0%, transparent 70%);
  bottom: -80px;
  left: -100px;
  animation-duration: 22s;
}

@keyframes orbDrift-bt{
  0%, 100%{ transform: translate(0, 0) scale(1); }
  50%{ transform: translate(30px, 20px) scale(1.05); }
}

.bt__head{
  text-align: center;
  margin-bottom: var(--section-gap);
  position: relative;
  z-index: 2;
}

.bt__title{
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--c-white);
  margin: 0;
  line-height: 1.2;
}

.bt__sub{
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 12px 0 0;
}

.bt__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-bottom: var(--section-gap);
  position: relative;
  z-index: 2;
}

@media(max-width: 768px){
  .bt__grid{
    grid-template-columns: 1fr;
  }
}

/* Feature card (first) spans full width on desktop */
@media(min-width: 769px){
  .bt__card--feature{
    grid-column: span 2;
  }

  .bt__card--feature .bt__media{
    aspect-ratio: 16 / 9;
  }
}

@media(max-width: 768px){
  .bt__card--feature{
    grid-column: 1;
  }
}

.bt__card{
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(28px);
  /* reveal driven by initBlog() JS */
}

.bt__link{
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(8px);
  transition: all var(--t-slow) cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bt__link:hover,
.bt__link:focus-within{
  border-color: var(--c-gold);
  box-shadow: 0 8px 32px rgba(201, 167, 106, 0.2);
  transform: translateY(-8px);
}

.bt__media{
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(201, 167, 106, 0.15), rgba(81, 98, 91, 0.1));
}

.bt__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) ease;
}

.bt__link:hover .bt__media img{
  transform: scale(1.05);
}

.bt__shine{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--t-fast) ease;
  pointer-events: none;
}

.bt__link:hover .bt__shine{
  animation: btShine 0.6s ease;
}

@keyframes btShine{
  0%{
    opacity: 0;
    transform: translateX(-100%);
  }
  50%{
    opacity: 1;
  }
  100%{
    opacity: 0;
    transform: translateX(100%);
  }
}

.bt__meta{
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
}

.bt__chip{
  display: inline-block;
  padding: 4px 8px;
  background: rgba(201, 167, 106, 0.2);
  color: var(--c-gold);
  border-radius: 4px;
  font-weight: 500;
}

.bt__chip--time{
  background: rgba(90, 125, 108, 0.2);
  color: var(--c-success);
}

.bt__dot{
  font-style: normal;
}

.bt__name{
  padding: 0 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-white);
  margin: 0;
  line-height: 1.4;
}

.bt__excerpt{
  flex: 1;
  padding: 0 16px 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 8px 0 0;
}

.bt__empty{
  text-align: center;
  padding: var(--section-gap-sm);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.bt__cta{
  text-align: center;
  position: relative;
  z-index: 2;
}

.bt__btn{
  display: inline-block;
  padding: 12px 32px;
  background: var(--c-gold);
  color: var(--c-navy);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--t-fast) ease;
}

.bt__btn:hover{
  background: rgba(201, 167, 106, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 167, 106, 0.3);
}

/* Reduced motion */
@media(prefers-reduced-motion: reduce){
  .bt__orb{
    animation: none;
  }
  .bt__card{
    opacity: 1;
    transform: none;
  }
  .bt__link:hover,
  .bt__link:hover .bt__media img{
    transform: none;
  }
  .bt__link:hover .bt__shine{
    animation: none;
  }
}

@media(max-width: 480px){
  .bt{
    padding: var(--section-gap-sm) 0;
  }
  .bt__grid{
    gap: 16px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   FINAL CTA BAND
   ═══════════════════════════════════════════════════════════════ */
.h-final-cta{
  background: linear-gradient(135deg, var(--c-olive) 0%, var(--c-navy) 100%);
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative elements */
.h-final-cta::before,
.h-final-cta::after{
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.h-final-cta::before{
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 167, 106, 0.1) 0%, transparent 70%);
  top: -80px;
  right: -60px;
  animation: orbDrift-cta-1 20s ease-in-out infinite;
}

.h-final-cta::after{
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  animation: orbDrift-cta-2 24s ease-in-out infinite;
}

@keyframes orbDrift-cta-1{
  0%, 100%{ transform: translate(0, 0); }
  50%{ transform: translate(20px, 20px); }
}

@keyframes orbDrift-cta-2{
  0%, 100%{ transform: translate(0, 0); }
  50%{ transform: translate(-20px, -15px); }
}

.h-final-cta__inner{
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}

.h-final-cta__inner.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.h-final-cta__eyebrow{
  display: inline-block;
  padding: 8px 12px;
  background: rgba(201, 167, 106, 0.25);
  color: var(--c-gold);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.h-final-cta__title{
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--c-white);
  margin: 12px 0 0;
  line-height: 1.2;
}

.h-final-cta__sub{
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 20px auto 0;
  max-width: 600px;
  line-height: 1.6;
}

.h-final-cta__actions{
  display: flex;
  gap: clamp(12px, 2vw, 20px);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--section-gap-sm);
}

.h-final-cta__actions .btn{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}

.h-final-cta__actions .btn:nth-child(1){ transition-delay: .1s; }
.h-final-cta__actions .btn:nth-child(2){ transition-delay: .15s; }
.h-final-cta__actions .btn:nth-child(3){ transition-delay: .2s; }

.h-final-cta__inner.is-visible .h-final-cta__actions .btn{
  opacity: 1;
  transform: translateY(0);
}

.h-final-cta__actions .btn-ghost{
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--c-white);
}

.h-final-cta__actions .btn-ghost:hover{
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--c-white);
}

/* Reduced motion */
@media(prefers-reduced-motion: reduce){
  .h-final-cta::before,
  .h-final-cta::after{
    animation: none;
  }
  .h-final-cta__inner{
    opacity: 1;
    transform: none;
    transition: none;
  }
  .h-final-cta__actions .btn{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media(max-width: 768px){
  .h-final-cta__actions{
    flex-direction: column;
    align-items: stretch;
  }
  .h-final-cta__actions .btn{
    width: 100%;
  }
}

@media(max-width: 480px){
  .h-final-cta{
    padding: var(--section-gap-sm) 0;
  }
  .h-final-cta__title{
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
}


/* ═══════════════════════════════════════════════════════════════
   ZONE A — Pre-Footer CTA Band
   ═══════════════════════════════════════════════════════════════ */
.cta-band{
  position: relative;
  background: linear-gradient(135deg, var(--c-olive) 0%, var(--c-navy) 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.cta-band__orb{
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: ctaOrbDrift 18s ease-in-out infinite;
}

.cta-band__orb--gold{
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(201,167,106,.18) 0%, transparent 70%);
  top: -140px;
  right: -80px;
}

.cta-band__orb--olive{
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(81,98,91,.15) 0%, transparent 70%);
  bottom: -100px;
  left: -60px;
  animation-duration: 22s;
  animation-direction: reverse;
}

@keyframes ctaOrbDrift{
  0%, 100%{ transform: translate(0, 0) scale(1); }
  50%{ transform: translate(25px, 18px) scale(1.06); }
}

.cta-band__inner{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-band__badge{
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: .35rem 1.25rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-gold);
  backdrop-filter: blur(6px);
}

.cta-band__title{
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.25;
}

.cta-band__sub{
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin: 0;
}

.cta-band__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .5rem;
}

.btn-ghost--light{
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
}

.btn-ghost--light:hover{
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

@media(max-width: 480px){
  .cta-band__actions{
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

}


/* ═══════════════════════════════════════════════════════════════
   ZONE B — Main Footer (4-column grid)
   ═══════════════════════════════════════════════════════════════ */
.k-footer{
  background: var(--c-navy);
  color: rgba(255,255,255,.85);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.k-footer__grid{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 3rem);
}

/* Column headings */
.k-footer__col-heading{
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.25rem;
  padding-bottom: .75rem;
  position: relative;
}

.k-footer__col-heading::after{
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  background: var(--c-gold);
  border-radius: 2px;
}

[dir="ltr"] .k-footer__col-heading::after{
  right: auto;
  left: 0;
}

/* Brand column */
.k-footer__logo{
  display: block;
  font-family: var(--font-brand);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
}

.k-footer__tagline{
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  margin: 0 0 1.25rem;
}

/* Social icons */
.k-footer__social{
  display: flex;
  gap: 10px;
}

.k-footer__social-link{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.7);
  transition: all var(--t-fast) ease;
}

.k-footer__social-link:hover{
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-navy);
  transform: translateY(-2px);
}

/* Link lists (services / quick links) */
.k-footer__links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.k-footer__links li a{
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .95rem;
  transition: color var(--t-fast) ease, padding-right var(--t-fast) ease;
  display: inline-block;
}

.k-footer__links li a:hover{
  color: var(--c-gold);
  padding-right: 4px;
}

[dir="ltr"] .k-footer__links li a:hover{
  padding-right: 0;
  padding-left: 4px;
}

/* Contact list */
.k-footer__contact-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.k-footer__contact-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
}

.k-footer__contact-list li svg{
  flex-shrink: 0;
  color: var(--c-gold);
  margin-top: 3px;
}

.k-footer__contact-list li a{
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color var(--t-fast) ease;
}

.k-footer__contact-list li a:hover{
  color: var(--c-gold);
}

.k-footer__address{
  font-style: normal;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

.k-footer__hours{
  color: rgba(255,255,255,.6);
}

.k-footer__email-link{
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color var(--t-fast) ease;
}

.k-footer__email-link:hover{
  color: var(--c-gold);
}

/* Responsive footer grid */
@media(max-width: 992px){
  .k-footer__grid{
    grid-template-columns: 1fr 1fr;
  }
  .k-footer__col--brand{
    grid-column: 1 / -1;
  }
}

@media(max-width: 600px){
  .k-footer__grid{
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


/* ═══════════════════════════════════════════════════════════════
   ZONE C — Creative Copyright Bar
   ═══════════════════════════════════════════════════════════════ */
.k-footer__bottom{
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  padding: 1.25rem 0;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent 0%, var(--c-gold) 50%, transparent 100%) 1;
  background: rgba(0,0,0,.15);
}

.k-footer__bottom-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}

.k-footer__copy{
  color: rgba(255,255,255,.5);
  font-size: .85rem;
}

.k-footer__made{
  color: rgba(255,255,255,.45);
  font-size: .85rem;
}

.k-footer__heart{
  display: inline-block;
  animation: heartBeat 1.4s ease-in-out infinite;
}

@keyframes heartBeat{
  0%, 100%{ transform: scale(1); }
  14%{ transform: scale(1.2); }
  28%{ transform: scale(1); }
  42%{ transform: scale(1.15); }
  56%{ transform: scale(1); }
}

@media(max-width: 480px){
  .k-footer__bottom-inner{
    justify-content: center;
    text-align: center;
  }
}


/* ═══════════════════════════════════════════════════════════════
   ZONE D — Fixed Animated CTA
   ═══════════════════════════════════════════════════════════════ */
.k-fixed-cta{
  z-index: 999;
}

/* --- Desktop: floating pills bottom-right --- */
.k-fixed-cta__desktop{
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}

[dir="rtl"] .k-fixed-cta__desktop{
  right: auto;
  left: 24px;
}

.k-fixed-cta.is-visible .k-fixed-cta__desktop{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.k-fixed-cta__btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--elev-2);
  transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease;
}

.k-fixed-cta__btn:hover{
  transform: scale(1.1);
  box-shadow: 0 14px 40px rgba(0,0,0,.2);
}

.k-fixed-cta__btn--wa{
  background: #25D366;
}

.k-fixed-cta__btn--call{
  background: var(--color-accent);
}

/* Pulse ring animation */
.k-fixed-cta__pulse{
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: ctaPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.k-fixed-cta__btn--wa .k-fixed-cta__pulse{
  border-color: #25D366;
}

.k-fixed-cta__btn--call .k-fixed-cta__pulse{
  border-color: var(--color-accent);
}

@keyframes ctaPulse{
  0%{
    transform: scale(1);
    opacity: .6;
  }
  100%{
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Tooltip on hover */
.k-fixed-cta__tooltip{
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--c-navy);
  color: #fff;
  padding: .35rem .75rem;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: var(--elev-1);
}

[dir="rtl"] .k-fixed-cta__tooltip{
  right: auto;
  left: calc(100% + 10px);
  transform: translateY(-50%) translateX(-6px);
}

.k-fixed-cta__btn:hover .k-fixed-cta__tooltip{
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Hide desktop on mobile */
@media(max-width: 768px){
  .k-fixed-cta__desktop{
    display: none !important;
  }
}

/* --- Mobile: full-width bottom bar --- */
.k-fixed-cta__mobile{
  display: none;
}

@media(max-width: 768px){
  .k-fixed-cta__mobile{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 999;
    background: rgba(36, 52, 71, .92);
    backdrop-filter: blur(12px) saturate(1.2);
    border-top: 1px solid rgba(255,255,255,.1);
    padding-bottom: env(safe-area-inset-bottom, 0);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity .35s ease, transform .35s ease;
  }

  .k-fixed-cta.is-visible .k-fixed-cta__mobile{
    opacity: 1;
    transform: translateY(0);
  }

  .k-fixed-cta__bar-btn{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    color: #fff;
    text-decoration: none;
    font-size: .95rem;
    font-weight: 700;
    transition: background var(--t-fast) ease;
  }

  .k-fixed-cta__bar-btn--call{
    background: rgba(255,255,255,.06);
  }

  .k-fixed-cta__bar-btn--wa{
    background: #25D366;
    color: #fff;
  }

  .k-fixed-cta__bar-btn--call:active{
    background: rgba(255,255,255,.12);
  }

  .k-fixed-cta__bar-btn--wa:active{
    background: #1fb855;
  }
}

/* --- Reduced motion --- */
@media(prefers-reduced-motion: reduce){
  .cta-band__orb{
    animation: none;
  }
  .k-fixed-cta__pulse{
    animation: none;
  }
  .k-footer__heart{
    animation: none;
  }
  .k-fixed-cta__desktop,
  .k-fixed-cta__mobile{
    transition: none;
  }
}

/* --- Body padding for mobile bar --- */
@media(max-width: 768px){
  body{
    padding-bottom: 40px;
  }
}

/* =========================================================
   ABOUT PAGE — Premium Styles (abt-*)
   Scoped to .abt wrapper  ·  RTL-ready  ·  Responsive
   ========================================================= */

/* ── Reveal animation for sections ── */
.abt-reveal{
  opacity:0; transform:translateY(32px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.abt-reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ── HERO ── */
.abt-hero{
  position: relative;
  overflow: clip;
  isolation: isolate;
  background:
    radial-gradient(1200px 700px at 80% 10%, color-mix(in srgb, var(--brand-gold) 22%, transparent), transparent 65%),
    radial-gradient(900px 520px at 10% 90%, color-mix(in srgb, var(--brand-olive) 22%, transparent), transparent 60%),
    linear-gradient(180deg, color-mix(in srgb, var(--brand-navy) 96%, #000), color-mix(in srgb, var(--brand-navy) 82%, #000));
  color: rgba(255,255,255,.92);
  padding-block: clamp(80px, 12vw, 140px) clamp(64px, 10vw, 120px);
}

.abt-hero__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

/* ── Hero Copy ── */
.abt-eyebrow{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-gold); background: rgba(201,167,106,.12);
  padding: .25rem .75rem; border-radius: 999px;
  border: 1px solid rgba(201,167,106,.25);
  margin-block-end: .7rem;
}
.abt-title{
  font-family: var(--font-brand);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 .3em;
  background: linear-gradient(135deg, #fff 40%, var(--brand-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.abt-tagline{
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-style: italic;
  color: rgba(255,255,255,.78);
  margin-block-end: .6em;
}
.abt-sub{
  font-size: clamp(.95rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,.62);
  line-height: 1.7;
  max-width: 520px;
  margin-block-end: 1.8em;
}

/* ── Stats ── */
.abt-stats{
  list-style: none; padding: 0; margin: 0 0 2em;
  display: flex; flex-wrap: wrap; gap: 20px;
}
.abt-stats li{
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: .8rem 1.2rem;
  min-width: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.abt-stats li b{
  font-family: var(--font-brand);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--brand-gold);
  line-height: 1.2;
}
.abt-stats li span{
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-align: center;
}

/* ── Hero CTA ── */
.abt-cta{
  display: flex; flex-wrap: wrap; gap: 12px;
}
.abt-cta .btn-primary{
  box-shadow: 0 0 0 0 transparent;
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.abt-cta .btn-primary:hover{
  box-shadow: var(--neon-glow-global);
}
.abt-cta .btn-ghost{
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.abt-cta .btn-ghost:hover{
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.55);
}

/* ── Hero Media ── */
.abt-hero__media{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--elev-2);
  will-change: transform;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.abt-hero__media img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease-out;
}
.abt-hero__media:hover img{
  transform: scale(1.04);
}
.abt-shine{
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.12) 50%, transparent 70%);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.abt-hero__media:hover .abt-shine{
  opacity: 1;
}

/* ── Orbs ── */
.abt-orb{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .3;
  pointer-events: none;
  will-change: transform;
  z-index: 0;
}
.abt-orb--gold{
  width: 500px; height: 500px;
  top: -8%; right: -4%;
  background: radial-gradient(circle, var(--neon-accent-global), transparent 70%);
  animation: orbDrift-abt-a 18s ease-in-out infinite alternate;
}
.abt-orb--olive{
  width: 550px; height: 550px;
  bottom: -12%; left: -6%;
  background: radial-gradient(circle, var(--neon-primary-global), transparent 70%);
  animation: orbDrift-abt-b 22s ease-in-out infinite alternate;
}
@keyframes orbDrift-abt-a{
  to{ transform: translate3d(-25px, 35px, 0) scale(1.08); opacity: .38; }
}
@keyframes orbDrift-abt-b{
  to{ transform: translate3d(20px, -20px, 0) scale(1.05); opacity: .25; }
}

/* ── TRUST BADGES ── */
.abt-badges{
  padding-block: var(--section-gap-sm);
  background: var(--brand-beige);
  text-align: center;
}
.abt-badges__row{
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(20px, 4vw, 48px);
}
.abt-badges__row img{
  height: 56px; width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.55);
  transition: filter var(--t-fast);
}
.abt-badges__row img:hover{
  filter: grayscale(0) opacity(1);
}
.abt-badge-text{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 700;
  color: var(--brand-olive);
  background: rgba(81,98,91,.08);
  padding: .4rem 1rem; border-radius: 999px;
  border: 1px solid rgba(81,98,91,.15);
}

/* ── VALUES ── */
.abt-values{
  padding-block: var(--section-gap);
}
.abt-values__intro{
  text-align: center; max-width: 640px; margin-inline: auto;
  margin-block-end: clamp(32px, 5vw, 56px);
}
.abt-values__intro h2{
  font-family: var(--font-brand);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--brand-navy);
  margin-block-end: .4em;
}
.abt-values__intro p{
  font-size: clamp(.95rem, 1.6vw, 1.05rem);
  color: var(--c-gray-700);
  line-height: 1.75;
}

.abt-values__grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.abt-val{
  background: var(--glass-light-bg);
  border: 1px solid var(--glass-light-border);
  border-top: 3px solid var(--brand-olive);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--glass-light-shadow);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.abt-val:hover{
  transform: translateY(-4px);
  box-shadow: var(--elev-2), var(--neon-ring-global);
}
.abt-val__icon{
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand-olive) 12%, transparent);
  margin-block-end: 1rem;
}
.abt-val__icon::before{
  content: '';
  width: 22px; height: 22px;
  background: var(--brand-olive);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z'/%3E%3C/svg%3E");
  mask-size: contain; mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain; -webkit-mask-repeat: no-repeat;
}
/* Vary icons per card */
.abt-val:nth-child(2) .abt-val__icon::before{
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M20 7l-8-4-8 4m16 0l-8 4m8-4v10l-8 4m0-10L4 7m8 4v10M4 7v10l8 4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M20 7l-8-4-8 4m16 0l-8 4m8-4v10l-8 4m0-10L4 7m8 4v10M4 7v10l8 4'/%3E%3C/svg%3E");
}
.abt-val:nth-child(3) .abt-val__icon::before{
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M19.4 15a1.65 1.65 0 00.33 1.82l.06.06a2 2 0 010 2.83 2 2 0 01-2.83 0l-.06-.06a1.65 1.65 0 00-1.82-.33 1.65 1.65 0 00-1 1.51V21a2 2 0 01-4 0v-.09A1.65 1.65 0 009 19.4a1.65 1.65 0 00-1.82.33l-.06.06a2 2 0 01-2.83-2.83l.06-.06A1.65 1.65 0 004.68 15a1.65 1.65 0 00-1.51-1H3a2 2 0 010-4h.09A1.65 1.65 0 004.6 9a1.65 1.65 0 00-.33-1.82l-.06-.06a2 2 0 012.83-2.83l.06.06A1.65 1.65 0 009 4.68a1.65 1.65 0 001-1.51V3a2 2 0 014 0v.09a1.65 1.65 0 001 1.51 1.65 1.65 0 001.82-.33l.06-.06a2 2 0 012.83 2.83l-.06.06A1.65 1.65 0 0019.4 9a1.65 1.65 0 001.51 1H21a2 2 0 010 4h-.09a1.65 1.65 0 00-1.51 1z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M19.4 15a1.65 1.65 0 00.33 1.82l.06.06a2 2 0 010 2.83 2 2 0 01-2.83 0l-.06-.06a1.65 1.65 0 00-1.82-.33 1.65 1.65 0 00-1 1.51V21a2 2 0 01-4 0v-.09A1.65 1.65 0 009 19.4a1.65 1.65 0 00-1.82.33l-.06.06a2 2 0 01-2.83-2.83l.06-.06A1.65 1.65 0 004.68 15a1.65 1.65 0 00-1.51-1H3a2 2 0 010-4h.09A1.65 1.65 0 004.6 9a1.65 1.65 0 00-.33-1.82l-.06-.06a2 2 0 012.83-2.83l.06.06A1.65 1.65 0 009 4.68a1.65 1.65 0 001-1.51V3a2 2 0 014 0v.09a1.65 1.65 0 001 1.51 1.65 1.65 0 001.82-.33l.06-.06a2 2 0 012.83 2.83l-.06.06A1.65 1.65 0 0019.4 9a1.65 1.65 0 001.51 1H21a2 2 0 010 4h-.09a1.65 1.65 0 00-1.51 1z'/%3E%3C/svg%3E");
}
.abt-val:nth-child(4) .abt-val__icon::before{
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M14 9V5a3 3 0 00-6 0v4'/%3E%3Cpath d='M18.8 22H5.2c-.7 0-1.2-.5-1.2-1.2V11.2c0-.7.5-1.2 1.2-1.2h13.7c.6 0 1.1.5 1.1 1.2v9.7c0 .6-.5 1.1-1.2 1.1z'/%3E%3Ccircle cx='12' cy='16' r='1'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M14 9V5a3 3 0 00-6 0v4'/%3E%3Cpath d='M18.8 22H5.2c-.7 0-1.2-.5-1.2-1.2V11.2c0-.7.5-1.2 1.2-1.2h13.7c.6 0 1.1.5 1.1 1.2v9.7c0 .6-.5 1.1-1.2 1.1z'/%3E%3Ccircle cx='12' cy='16' r='1'/%3E%3C/svg%3E");
}
.abt-val h3{
  font-family: var(--font-brand);
  font-size: 1.15rem; font-weight: 700;
  color: var(--brand-navy);
  margin-block-end: .3em;
}
.abt-val p{
  font-size: .92rem;
  color: var(--c-gray-700);
  line-height: 1.7;
}

/* ── TOOLS & MATERIALS ── */
.abt-tools{
  position: relative;
  padding-block: var(--section-gap);
  background:
    linear-gradient(rgba(36,52,71,.92), rgba(36,52,71,.92)),
    var(--tools-bg) center/cover no-repeat;
  color: rgba(255,255,255,.92);
  overflow: clip;
}
.abt-tools__grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.abt-tools__copy h2{
  font-family: var(--font-brand);
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 800;
  margin-block-end: .6em;
}
.abt-bubbles{
  list-style: none; padding: 0; margin: 0 0 1.5em;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.abt-bubbles li{
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .88rem; font-weight: 600;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.abt-bubbles li:hover{
  background: rgba(201,167,106,.2);
  border-color: rgba(201,167,106,.4);
}
.abt-note{
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-block-end: 1.5em;
}
.abt-tools__vis{
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-lg);
  background: var(--tools-bg) center/cover no-repeat;
  box-shadow: var(--elev-2);
  transition: transform .4s ease;
}
.abt-tools__vis:hover{
  transform: scale(1.02);
}

/* ── EDITOR CONTENT ── */
.abt-content{
  padding-block: var(--section-gap);
  max-width: 72ch;
  margin-inline: auto;
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  line-height: 1.85;
  color: var(--c-gray-700);
}
.abt-content h2, .abt-content h3{
  font-family: var(--font-brand);
  color: var(--brand-navy);
  margin-block: 1.2em .4em;
}
.abt-content img{
  border-radius: var(--radius);
  box-shadow: var(--elev-1);
}

/* ── SERVICE COVERAGE ── */
.abt-coverage{
  text-align: center;
  padding-block: var(--section-gap-sm);
  background: var(--brand-beige);
}
.abt-coverage h2{
  font-family: var(--font-brand);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 800;
  color: var(--brand-navy);
  margin-block-end: .5em;
}
.abt-coverage p{
  font-size: clamp(.92rem, 1.5vw, 1.02rem);
  color: var(--c-gray-700);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.75;
  margin-block-end: 1.5em;
}
.abt-coverage__link{
  color: var(--brand-olive) !important;
  border-color: var(--brand-olive) !important;
}

/* ── CTA BAR ── */
.abt-ctaBar{
  background:
    radial-gradient(800px 400px at 70% 30%, color-mix(in srgb, var(--brand-gold) 25%, transparent), transparent 65%),
    linear-gradient(135deg, var(--brand-olive), var(--brand-navy));
  padding-block: clamp(48px, 7vw, 80px);
  color: #fff;
  text-align: center;
}
.abt-ctaBar__box{
  max-width: 640px;
  margin-inline: auto;
}
.abt-ctaBar__box h3{
  font-family: var(--font-brand);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-block-end: .4em;
}
.abt-ctaBar__box p{
  font-size: clamp(.92rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-block-end: 1.5em;
}
.abt-ctaBar__actions{
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px;
}
.abt-ctaBar__actions .btn-primary{
  box-shadow: 0 0 0 0 transparent;
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.abt-ctaBar__actions .btn-primary:hover{
  box-shadow: var(--neon-glow-global);
}
.abt-ctaBar__actions .btn-ghost{
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.abt-ctaBar__actions .btn-ghost:hover{
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.55);
}

/* ── ABOUT responsive ── */
@media(max-width: 900px){
  .abt-hero__grid{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .abt-hero__copy{ order: 2; }
  .abt-hero__media{ order: 1; max-height: 320px; }
  .abt-hero__media img{ max-height: 320px; }
  .abt-stats{ justify-content: center; }
  .abt-cta{ justify-content: center; }
  .abt-sub{ margin-inline: auto; }
  .abt-tools__grid{
    grid-template-columns: 1fr;
  }
  .abt-tools__vis{ min-height: 220px; }
}
@media(max-width: 600px){
  .abt-stats{ gap: 10px; }
  .abt-stats li{ min-width: 80px; padding: .5rem .7rem; }
  .abt-stats li b{ font-size: 1.3rem; }
  .abt-badges__row{ gap: 14px; }
  .abt-badges__row img{ height: 40px; }
  .abt-values__grid{ grid-template-columns: 1fr; }
}

/* ── ABOUT reduced-motion ── */
@media(prefers-reduced-motion: reduce){
  .abt-orb{ animation: none; }
  .abt-reveal{ opacity: 1; transform: none; transition: none; }
  .abt-hero__media img{ transition: none; }
  .abt-tools__vis{ transition: none; }
}

/* =========================================================
   CONTACT PAGE — Premium Styles (ct-*)
   Scoped to .ct wrapper  ·  RTL-ready  ·  Responsive
   ========================================================= */

/* ── HERO (compact) ── */
.ct-hero{
  position: relative;
  overflow: clip;
  isolation: isolate;
  text-align: center;
  background:
    radial-gradient(900px 500px at 60% 20%, color-mix(in srgb, var(--brand-gold) 18%, transparent), transparent 60%),
    radial-gradient(700px 400px at 20% 80%, color-mix(in srgb, var(--brand-olive) 18%, transparent), transparent 55%),
    linear-gradient(180deg, color-mix(in srgb, var(--brand-navy) 96%, #000), color-mix(in srgb, var(--brand-navy) 84%, #000));
  color: rgba(255,255,255,.92);
  padding-block: clamp(64px, 10vw, 110px) clamp(48px, 8vw, 90px);
}
.ct-hero__inner{
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
}
.ct-eyebrow{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-gold); background: rgba(201,167,106,.12);
  padding: .25rem .75rem; border-radius: 999px;
  border: 1px solid rgba(201,167,106,.25);
  margin-block-end: .7rem;
}
.ct-title{
  font-family: var(--font-brand);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 .4em;
  background: linear-gradient(135deg, #fff 40%, var(--brand-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ct-sub{
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  max-width: 560px;
  margin-inline: auto;
}

/* ── Contact Orbs ── */
.ct-orb{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .28;
  pointer-events: none;
  will-change: transform;
  z-index: 0;
}
.ct-orb--gold{
  width: 420px; height: 420px;
  top: -12%; right: -3%;
  background: radial-gradient(circle, var(--neon-accent-global), transparent 70%);
  animation: orbDrift-ct-a 16s ease-in-out infinite alternate;
}
.ct-orb--olive{
  width: 480px; height: 480px;
  bottom: -15%; left: -5%;
  background: radial-gradient(circle, var(--neon-primary-global), transparent 70%);
  animation: orbDrift-ct-b 20s ease-in-out infinite alternate;
}
@keyframes orbDrift-ct-a{
  to{ transform: translate3d(-20px, 30px, 0) scale(1.06); opacity: .33; }
}
@keyframes orbDrift-ct-b{
  to{ transform: translate3d(18px, -18px, 0) scale(1.04); opacity: .22; }
}

/* ── CARDS GRID ── */
.ct-cards{
  padding-block: var(--section-gap) var(--section-gap-sm);
}
.ct-cards__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ct-card{
  position: relative;
  background: var(--glass-light-bg);
  border: 1px solid var(--glass-light-border);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--glass-light-shadow);
  border-inline-start: 3px solid var(--brand-gold);
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.ct-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--elev-2), var(--neon-ring-global);
}

/* Card icon */
.ct-card__icon{
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand-olive) 12%, transparent);
  color: var(--brand-olive);
  flex-shrink: 0;
}
.ct-card__icon svg{
  width: 22px; height: 22px;
}
.ct-card__icon--wa{
  background: color-mix(in srgb, #25D366 12%, transparent);
  color: #25D366;
}
.ct-card__icon--mail{
  background: color-mix(in srgb, var(--color-primary) 10%, transparent);
  color: var(--color-primary);
}
.ct-card__icon--pin{
  background: color-mix(in srgb, var(--color-accent) 10%, transparent);
  color: var(--color-accent);
}

.ct-card h3{
  font-family: var(--font-brand);
  font-size: 1.05rem; font-weight: 700;
  color: var(--brand-navy);
  margin: 0;
}
.ct-card p{
  font-size: .92rem;
  color: var(--c-gray-700);
  margin: 0;
}
.ct-card__link{
  color: var(--brand-olive) !important;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--t-fast);
}
.ct-card__link:hover{
  color: var(--brand-gold) !important;
}
.ct-card__text{
  line-height: 1.65;
}

/* ── HOURS BADGE ── */
.ct-hours{
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-block-start: 32px;
  padding: .55rem 1.2rem;
  background: color-mix(in srgb, var(--brand-olive) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand-olive) 18%, transparent);
  border-radius: 999px;
  width: fit-content;
  margin-inline: auto;
  font-size: .88rem; font-weight: 700;
  color: var(--brand-olive);
}
.ct-hours__icon{
  width: 18px; height: 18px;
  animation: ct-pulse 2s ease-in-out infinite;
}
@keyframes ct-pulse{
  0%, 100%{ opacity: 1; }
  50%{ opacity: .5; }
}

/* ── COVERAGE ── */
.ct-areas{
  text-align: center;
  padding-block: var(--section-gap-sm);
  background: var(--brand-beige);
  border-radius: var(--radius-lg);
  margin-block-end: var(--section-gap-sm);
  padding-inline: clamp(24px, 4vw, 48px);
}
.ct-areas h2{
  font-family: var(--font-brand);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--brand-navy);
  margin-block-end: .4em;
}
.ct-areas p{
  font-size: clamp(.92rem, 1.5vw, 1rem);
  color: var(--c-gray-700);
  line-height: 1.75;
  margin-block-end: 1.2em;
}
.ct-areas__link{
  color: var(--brand-olive) !important;
  border-color: var(--brand-olive) !important;
}

/* ── EDITOR CONTENT ── */
.ct-editor{
  padding-block: var(--section-gap-sm);
  max-width: 72ch;
  margin-inline: auto;
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  line-height: 1.85;
  color: var(--c-gray-700);
}

/* ── CTA BAR (shared pattern with about) ── */
.ct-ctaBar{
  background:
    radial-gradient(800px 400px at 70% 30%, color-mix(in srgb, var(--brand-gold) 25%, transparent), transparent 65%),
    linear-gradient(135deg, var(--brand-olive), var(--brand-navy));
  padding-block: clamp(48px, 7vw, 80px);
  color: #fff;
  text-align: center;
}
.ct-ctaBar__box{
  max-width: 600px;
  margin-inline: auto;
}
.ct-ctaBar__box h3{
  font-family: var(--font-brand);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-block-end: .4em;
}
.ct-ctaBar__box p{
  font-size: clamp(.92rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-block-end: 1.5em;
}
.ct-ctaBar__actions{
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px;
}
.ct-ctaBar__actions .btn-primary{
  box-shadow: 0 0 0 0 transparent;
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.ct-ctaBar__actions .btn-primary:hover{
  box-shadow: var(--neon-glow-global);
}
.ct-ctaBar__actions .btn-ghost{
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.ct-ctaBar__actions .btn-ghost:hover{
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.55);
}

/* ── CONTACT responsive ── */
@media(max-width: 768px){
  .ct-cards__grid{
    grid-template-columns: 1fr;
  }
}
@media(max-width: 480px){
  .ct-card{
    padding: 20px;
  }
}

/* ── CONTACT reduced-motion ── */
@media(prefers-reduced-motion: reduce){
  .ct-orb{ animation: none; }
  .ct-hours__icon{ animation: none; }
}


/* ═══════════════════════════════════════════════════════════════
   SHARED BLOG UTILITIES  (.chip .dot .pill)
   ═══════════════════════════════════════════════════════════════ */
.chip{
  display: inline-block;
  padding: 3px 10px;
  font-size: .78rem;
  font-weight: 600;
  border-radius: 4px;
  background: rgba(201,167,106,.18);
  color: var(--brand-gold);
  text-decoration: none;
  line-height: 1.4;
  transition: background var(--t-fast) ease;
}
.chip:hover{ background: rgba(201,167,106,.32); color: var(--brand-gold); }
.chip--time{
  background: rgba(81,98,91,.18);
  color: var(--brand-olive);
}
.dot{
  font-style: normal;
  color: rgba(255,255,255,.35);
  font-size: .75rem;
  user-select: none;
}
/* Light-bg variant */
.post-body .dot,
.ar-card .dot,
.sr-card .dot,
.blog-card .dot{ color: rgba(36,52,71,.3); }
.post-body .chip,
.ar-card .chip,
.sr-card .chip,
.blog-card .chip{
  background: rgba(201,167,106,.12);
}

.pill{
  display: inline-block;
  padding: 6px 18px;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.12);
  transition: all var(--t-fast) ease;
}
.pill:hover{ background: rgba(255,255,255,.14); color: #fff; }
.pill.is-active{
  background: var(--brand-gold);
  color: var(--brand-navy);
  border-color: var(--brand-gold);
}


/* ═══════════════════════════════════════════════════════════════
   SINGLE POST  (.post-*)
   ═══════════════════════════════════════════════════════════════ */

/* ── Reading progress bar ── */
.post-progress{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 9999;
  background: rgba(255,255,255,.08);
}
.post-progress > span{
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand-gold), var(--color-accent));
  transition: width .15s linear;
  border-radius: 0 2px 2px 0;
}

/* ── Breadcrumbs (shared shape) ── */
.post-breadcrumbs,
.ar-breadcrumbs,
.sr-breadcrumbs,
.au-breadcrumbs{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  padding: 18px 0 8px;
  flex-wrap: wrap;
}
.post-breadcrumbs a,
.ar-breadcrumbs a,
.sr-breadcrumbs a,
.au-breadcrumbs a{
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color var(--t-fast) ease;
}
.post-breadcrumbs a:hover,
.ar-breadcrumbs a:hover,
.sr-breadcrumbs a:hover,
.au-breadcrumbs a:hover{ color: var(--brand-gold); }
.post-breadcrumbs span[aria-current],
.ar-breadcrumbs span[aria-current],
.sr-breadcrumbs span[aria-current],
.au-breadcrumbs span[aria-current]{
  color: rgba(255,255,255,.9);
}

/* ── Hero ── */
.post-hero{
  text-align: center;
  padding: clamp(40px,6vw,80px) 0 clamp(32px,4vw,56px);
  background: linear-gradient(170deg, var(--brand-navy) 0%, #1a2332 100%);
}
.post-title{
  font-family: var(--font-brand);
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.22;
  margin: 0 auto 16px;
  max-width: 780px;
}
.post-excerpt{
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,.72);
  max-width: 620px;
  margin: 0 auto 20px;
  line-height: 1.7;
}
.post-meta{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px,4vw,48px);
}
.post-cover{
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
  position: relative;
  will-change: transform;
}
.post-cover img{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.post-cover .shine{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.08) 50%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s ease;
}
.post-cover:hover .shine{ opacity: 1; }

/* ── Body: 2-column ── */
.post-body{
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(24px,3vw,48px);
  padding: clamp(32px,5vw,64px) 0;
  background: var(--brand-beige);
  color: var(--brand-navy);
  position: relative;
}

/* ── Table of Contents (sticky sidebar) ── */
.post-toc{
  position: sticky;
  top: 100px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  border: 1px solid rgba(36,52,71,.08);
}
.toc-head{
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: .92rem;
  color: var(--brand-navy);
  margin-bottom: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toc-head::after{
  content: '\25BC';
  font-size: .55rem;
  transition: transform .3s ease;
}
.post-toc.is-collapsed .toc-head::after{ transform: rotate(-90deg); }
.post-toc.is-collapsed .toc-nav{ display: none; }
.toc-nav ol{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.toc-nav a{
  display: block;
  font-size: .82rem;
  color: rgba(36,52,71,.6);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  border-inline-start: 2px solid transparent;
  transition: all var(--t-fast) ease;
}
.toc-nav a:hover{ color: var(--brand-navy); background: rgba(201,167,106,.08); }
.toc-nav a.is-active{
  color: var(--brand-gold);
  border-inline-start-color: var(--brand-gold);
  background: rgba(201,167,106,.06);
  font-weight: 600;
}
.toc-lvl-3 a{ padding-inline-start: 20px; font-size: .78rem; }

/* ── Article prose ── */
.post-content{
  max-width: 720px;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.85;
  color: var(--brand-navy);
}
.post-content h2{
  font-family: var(--font-brand);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  margin: 2em 0 .6em;
  color: var(--brand-navy);
  scroll-margin-top: 100px;
}
.post-content h3{
  font-family: var(--font-brand);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  margin: 1.5em 0 .5em;
  color: var(--brand-navy);
  scroll-margin-top: 100px;
}
.post-content p{
  margin: 0 0 1.2em;
}
.post-content a{
  color: var(--brand-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast) ease;
}
.post-content a:hover{ color: var(--color-accent); }
.post-content img,
.post-content figure img{
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  margin: 1em 0;
}
.post-content figure{
  margin: 1.5em 0;
}
.post-content figcaption{
  text-align: center;
  font-size: .82rem;
  color: rgba(36,52,71,.55);
  margin-top: 8px;
}
.post-content blockquote{
  margin: 1.5em 0;
  padding: 16px 24px;
  border-inline-start: 4px solid var(--brand-gold);
  background: rgba(201,167,106,.06);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: rgba(36,52,71,.8);
}
.post-content ul, .post-content ol{
  padding-inline-start: 1.4em;
  margin: 0 0 1.2em;
}
.post-content li{ margin-bottom: .4em; }
.post-content pre{
  background: var(--brand-navy);
  color: #e0e0e0;
  padding: 20px 24px;
  border-radius: 12px;
  overflow-x: auto;
  font-size: .88rem;
  line-height: 1.6;
  margin: 1.5em 0;
}
.post-content code{
  font-size: .88em;
  background: rgba(36,52,71,.06);
  padding: 2px 6px;
  border-radius: 4px;
}
.post-content pre code{
  background: none;
  padding: 0;
}
.post-content table{
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: .92rem;
}
.post-content th, .post-content td{
  padding: 10px 14px;
  border: 1px solid rgba(36,52,71,.12);
  text-align: start;
}
.post-content th{
  background: rgba(36,52,71,.04);
  font-weight: 700;
}

/* ── Multi-page links ── */
.post-pages{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 2em 0;
  font-size: .9rem;
  color: rgba(36,52,71,.6);
}
.post-pages span{
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(201,167,106,.1);
  color: var(--brand-gold);
  font-weight: 600;
}

/* ── Share bar ── */
.post-share{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 2.5em 0;
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(36,52,71,.08);
}
.share-label{
  font-weight: 700;
  font-size: .9rem;
  color: var(--brand-navy);
}
.share-btn{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  border: 1px solid rgba(36,52,71,.12);
  background: rgba(36,52,71,.03);
  color: var(--brand-navy);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--t-fast) ease;
}
.share-btn:hover{
  background: var(--brand-gold);
  color: var(--brand-navy);
  border-color: var(--brand-gold);
}

/* ── Takeaways ── */
.post-takeaways{
  margin: 2em 0;
  padding: 20px 24px;
  background: rgba(81,98,91,.06);
  border-radius: 12px;
  border-inline-start: 4px solid var(--brand-olive);
}
.post-takeaways h2{
  font-size: 1.1rem !important;
  margin: 0 0 12px !important;
}
.post-takeaways ul{
  margin: 0;
  padding-inline-start: 1.2em;
}

/* ── Author box ── */
.post-author{
  display: flex;
  align-items: center;
  gap: clamp(16px,2vw,28px);
  padding: clamp(24px,3vw,40px);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  margin: clamp(32px,4vw,56px) auto;
  max-width: 800px;
  border: 1px solid rgba(36,52,71,.06);
}
.author-avatar{
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid rgba(201,167,106,.25);
}
.author-name{
  font-family: var(--font-brand);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0 0 4px;
}
.author-bio{
  font-size: .88rem;
  color: rgba(36,52,71,.65);
  line-height: 1.6;
  margin: 0;
}

/* ── Related posts ── */
.post-related{
  padding: clamp(32px,4vw,56px) 0;
  max-width: 960px;
  margin: 0 auto;
}
.rel-title{
  font-family: var(--font-brand);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 800;
  color: var(--brand-navy);
  margin: 0 0 clamp(20px,3vw,32px);
  text-align: center;
}
.rel-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(16px,2vw,24px);
}
.rel-card{
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(36,52,71,.06);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.rel-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.rel-card figure{
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.rel-card figure img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.rel-card:hover figure img{ transform: scale(1.05); }
.rel-card h3{
  font-family: var(--font-brand);
  font-size: .95rem;
  font-weight: 700;
  color: var(--brand-navy);
  padding: 14px 16px 16px;
  margin: 0;
  line-height: 1.4;
}

/* ── Post navigation (prev/next) ── */
.post-nav{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: clamp(24px,3vw,40px) 0;
  max-width: 800px;
  margin: 0 auto;
}
.post-prev, .post-next{
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  border: 1px solid rgba(36,52,71,.06);
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
}
.post-prev:hover, .post-next:hover{
  border-color: rgba(201,167,106,.3);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.post-prev a, .post-next a{
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.post-prev span, .post-next span{
  font-size: .75rem;
  font-weight: 600;
  color: rgba(36,52,71,.45);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.post-prev strong, .post-next strong{
  font-size: .92rem;
  color: var(--brand-navy);
  font-weight: 700;
  line-height: 1.4;
}
.post-next{ text-align: end; }

/* ── CTA band ── */
.post-cta-band{
  text-align: center;
  padding: clamp(40px,5vw,64px) 0;
  background: linear-gradient(135deg, var(--brand-navy), #1a2332);
  border-radius: var(--radius-lg);
  margin: clamp(24px,3vw,40px) auto;
  max-width: 960px;
}
.post-cta-band__title{
  font-family: var(--font-brand);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}
.post-cta-band__text{
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  margin: 0 0 24px;
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.6;
}
.post-cta-band__actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Single post responsive ── */
@media(max-width: 900px){
  .post-body{
    grid-template-columns: 1fr;
  }
  .post-toc{
    position: relative;
    top: auto;
    max-height: none;
  }
}
@media(max-width: 480px){
  .post-hero{ padding: 28px 0 24px; }
  .post-nav{ grid-template-columns: 1fr; }
  .post-author{ flex-direction: column; text-align: center; }
  .post-share{ flex-direction: column; align-items: stretch; }
  .post-share .share-btn{ justify-content: center; }
}

/* ── Single reduced-motion ── */
@media(prefers-reduced-motion: reduce){
  .post-progress > span{ transition: none; }
  .post-cover{ will-change: auto; }
  .post-cover:hover .shine{ opacity: 0; }
  .rel-card:hover, .rel-card:hover figure img{ transform: none; }
}


/* ═══════════════════════════════════════════════════════════════
   ARCHIVE PAGE  (.ar-*)
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.ar-hero{
  background: linear-gradient(170deg, var(--brand-navy) 0%, #1a2332 100%);
  padding: clamp(36px,5vw,72px) 0 clamp(32px,4vw,56px);
  position: relative;
  overflow: hidden;
}
.ar-hero__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px,3vw,40px);
  align-items: center;
}
.ar-title{
  font-family: var(--font-brand);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 12px;
}
.ar-sub{
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  margin: 0 0 20px;
}
.ar-filters{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ar-cover{
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}
.ar-cover img{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.ar-shine{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.1) 50%, transparent 60%);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.ar-cover:hover .ar-shine{ opacity: 1; }

/* Decorative orbs */
.ar-orb{
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: orbDrift-ar 20s ease-in-out infinite;
}
.ar-orb--gold{
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,167,106,.12) 0%, transparent 70%);
  top: -100px; right: -60px;
}
.ar-orb--olive{
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(81,98,91,.1) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  animation-duration: 24s;
}
@keyframes orbDrift-ar{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(25px,18px) scale(1.04); }
}

/* ── Archive body: grid + sidebar ── */
.ar{
  padding: clamp(32px,4vw,56px) 0;
  background: var(--brand-beige);
}
.ar-layout{
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(24px,3vw,40px);
  align-items: start;
}

/* ── Card grid ── */
.ar-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(16px,2vw,24px);
}
.ar-card{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .45s ease, transform .45s ease;
}
.ar-grid.is-visible .ar-card{
  opacity: 1;
  transform: translateY(0);
}
.ar-link{
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(36,52,71,.06);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ar-link:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  border-color: rgba(201,167,106,.25);
}
.ar-media{
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.ar-media img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.ar-link:hover .ar-media img{ transform: scale(1.04); }
.ar-media .ar-shine{
  z-index: 1;
}
.ar-meta{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px 0;
  font-size: .8rem;
  flex-wrap: wrap;
}
.ar-name{
  font-family: var(--font-brand);
  font-size: clamp(.95rem, 1.8vw, 1.12rem);
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0;
  padding: 8px 18px 0;
  line-height: 1.4;
}
.ar-excerpt{
  font-size: .88rem;
  color: rgba(36,52,71,.6);
  line-height: 1.6;
  padding: 6px 18px 18px;
  margin: 0;
  flex: 1;
}

/* ── Pagination (shared) ── */
.ar-pagination,
.sr-pager,
.au-pagination{
  padding: clamp(24px,3vw,40px) 0;
  display: flex;
  justify-content: center;
}
.ar-pagination .nav-links,
.sr-pager .nav-links,
.au-pagination .nav-links{
  display: flex;
  align-items: center;
  gap: 6px;
}
.ar-pagination .page-numbers,
.sr-pager .page-numbers,
.au-pagination .page-numbers{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(36,52,71,.1);
  color: var(--brand-navy);
  background: #fff;
  transition: all var(--t-fast) ease;
}
.ar-pagination .page-numbers:hover,
.sr-pager .page-numbers:hover,
.au-pagination .page-numbers:hover{
  background: rgba(201,167,106,.1);
  border-color: rgba(201,167,106,.3);
}
.ar-pagination .page-numbers.current,
.sr-pager .page-numbers.current,
.au-pagination .page-numbers.current{
  background: var(--brand-gold);
  color: var(--brand-navy);
  border-color: var(--brand-gold);
}
.ar-pagination .page-numbers.dots,
.sr-pager .page-numbers.dots,
.au-pagination .page-numbers.dots{
  border: none;
  background: none;
  min-width: auto;
  padding: 0 4px;
}
.ar-pagination .prev, .ar-pagination .next,
.sr-pager .prev, .sr-pager .next,
.au-pagination .prev, .au-pagination .next{
  font-weight: 700;
}
.ar-empty{
  text-align: center;
  padding: var(--section-gap);
  color: rgba(36,52,71,.5);
  font-size: 1.05rem;
}

/* ── Archive responsive ── */
@media(max-width: 900px){
  .ar-hero__grid{ grid-template-columns: 1fr; }
  .ar-cover{ max-width: 420px; margin: 0 auto; }
  .ar-layout{ grid-template-columns: 1fr; }
}
@media(max-width: 480px){
  .ar-orb{ display: none; }
  .ar-grid{ grid-template-columns: 1fr; }
  .ar-filters{ overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
}

/* ── Archive reduced-motion ── */
@media(prefers-reduced-motion: reduce){
  .ar-orb{ animation: none; }
  .ar-card{ opacity: 1; transform: none; transition: none; }
  .ar-link:hover, .ar-link:hover .ar-media img{ transform: none; }
  .ar-cover:hover .ar-shine{ opacity: 0; }
}


/* ═══════════════════════════════════════════════════════════════
   SEARCH RESULTS  (.sr-*)
   ═══════════════════════════════════════════════════════════════ */
.sr-hero{
  background: linear-gradient(170deg, var(--brand-navy) 0%, #1a2332 100%);
  padding: clamp(36px,5vw,64px) 0 clamp(28px,4vw,48px);
}
.sr-hero .container{
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.sr-title{
  font-family: var(--font-brand);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
}
/* Search form in hero */
.sr-form{
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
}
.sr-form input[type="search"]{
  flex: 1;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px 0 0 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: .95rem;
  outline: none;
  backdrop-filter: blur(6px);
  transition: border-color var(--t-fast) ease;
}
.sr-form input[type="search"]::placeholder{ color: rgba(255,255,255,.45); }
.sr-form input[type="search"]:focus{ border-color: var(--brand-gold); }
.sr-form button,
.sr-form input[type="submit"]{
  padding: 12px 24px;
  border: none;
  border-radius: 0 999px 999px 0;
  background: var(--brand-gold);
  color: var(--brand-navy);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: background var(--t-fast) ease;
}
.sr-form button:hover,
.sr-form input[type="submit"]:hover{
  background: #d4b579;
}
[dir="rtl"] .sr-form input[type="search"]{ border-radius: 0 999px 999px 0; }
[dir="rtl"] .sr-form button,
[dir="rtl"] .sr-form input[type="submit"]{ border-radius: 999px 0 0 999px; }

/* ── Search body ── */
.sr-body{
  padding: clamp(32px,4vw,56px) 0;
  background: var(--brand-beige);
}
.sr-layout{
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(24px,3vw,40px);
  align-items: start;
}
.sr-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(16px,2vw,24px);
}

/* ── Search card (reuse archive card pattern) ── */
.sr-card{
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(36,52,71,.06);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.sr-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.sr-card__media{
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  text-decoration: none;
}
.sr-card__media img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.sr-card:hover .sr-card__media img{ transform: scale(1.04); }
.sr-card__body{
  padding: 16px 18px 18px;
}
.sr-card__meta{
  font-size: .8rem;
  color: rgba(36,52,71,.45);
  margin-bottom: 6px;
}
.sr-card__title{
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.4;
}
.sr-card__title a{
  color: var(--brand-navy);
  text-decoration: none;
  transition: color var(--t-fast) ease;
}
.sr-card__title a:hover{ color: var(--brand-gold); }
.sr-card__excerpt{
  font-size: .86rem;
  color: rgba(36,52,71,.6);
  line-height: 1.6;
  margin: 0;
}

/* ── Search empty ── */
.sr-empty{
  text-align: center;
  padding: var(--section-gap);
}
.sr-empty p{
  color: rgba(36,52,71,.55);
  font-size: 1.05rem;
  margin: 0 0 20px;
}

/* ── Search responsive ── */
@media(max-width: 900px){
  .sr-layout{ grid-template-columns: 1fr; }
}
@media(max-width: 480px){
  .sr-grid{ grid-template-columns: 1fr; }
  .sr-form{ flex-direction: column; gap: 8px; }
  .sr-form input[type="search"],
  .sr-form button,
  .sr-form input[type="submit"]{ border-radius: 999px !important; }
}

/* ── Search reduced-motion ── */
@media(prefers-reduced-motion: reduce){
  .sr-card:hover, .sr-card:hover .sr-card__media img{ transform: none; }
}


/* ═══════════════════════════════════════════════════════════════
   COMMENTS  (.cmt__*)
   ═══════════════════════════════════════════════════════════════ */
.post-comments{
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(24px,3vw,40px) 0;
}
.cmt__count{
  font-family: var(--font-brand);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 800;
  color: var(--brand-navy);
  margin: 0 0 clamp(16px,2vw,28px);
}
.cmt__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cmt__list .children{
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  padding-inline-start: clamp(20px,3vw,40px);
  border-inline-start: 2px solid rgba(201,167,106,.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Single comment item */
.cmt__item{
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(36,52,71,.06);
  padding: 0;
  overflow: hidden;
}
.cmt__item.is-pending{
  opacity: .65;
  border-style: dashed;
}
.cmt__body{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: clamp(16px,2vw,24px);
}
.cmt__avatar{
  margin: 0;
}
.cmt__avatar img{
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,167,106,.2);
}
.cmt__content{
  min-width: 0;
}
.cmt__meta{
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.cmt__author{
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: .92rem;
  color: var(--brand-navy);
}
.cmt__author a{ color: var(--brand-navy); text-decoration: none; }
.cmt__author a:hover{ color: var(--brand-gold); }
.cmt__time{
  font-size: .78rem;
  color: rgba(36,52,71,.45);
}
.cmt__pending{
  font-size: .78rem;
  color: var(--color-accent);
  font-style: italic;
}
.cmt__text{
  font-size: .92rem;
  line-height: 1.7;
  color: rgba(36,52,71,.8);
  margin-bottom: 8px;
}
.cmt__text p{ margin: 0 0 .6em; }
.cmt__text p:last-child{ margin-bottom: 0; }
.cmt__actions{
  display: flex;
  gap: 12px;
}
.cmt__actions .comment-reply-link{
  font-size: .8rem;
  font-weight: 600;
  color: var(--brand-gold);
  text-decoration: none;
  transition: color var(--t-fast) ease;
}
.cmt__actions .comment-reply-link:hover{ color: var(--color-accent); }
.cmt__edit a{
  font-size: .78rem;
  color: rgba(36,52,71,.4);
  text-decoration: none;
}

/* ── Comment form ── */
.cmt__form-wrap{
  margin-top: clamp(20px,3vw,36px);
}
.cmt__form-wrap .comment-reply-title{
  font-family: var(--font-brand);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin: 0 0 16px;
}
.cmt__form-wrap .comment-reply-title small{
  font-size: .78rem;
  font-weight: 500;
}
.cmt__form-wrap .comment-reply-title small a{
  color: var(--brand-gold);
  text-decoration: none;
}
.cmt__form-wrap .comment-form{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cmt__form-wrap .comment-form p{
  margin: 0;
}
.cmt__form-wrap .comment-form input[type="text"],
.cmt__form-wrap .comment-form input[type="email"],
.cmt__form-wrap .comment-form input[type="url"],
.cmt__form-wrap .comment-form textarea{
  width: 100%;
  padding: 12px 16px;
  font-size: .92rem;
  border: 1px solid rgba(36,52,71,.12);
  border-radius: 12px;
  background: #fff;
  color: var(--brand-navy);
  outline: none;
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
  font-family: inherit;
}
.cmt__form-wrap .comment-form input:focus,
.cmt__form-wrap .comment-form textarea:focus{
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(201,167,106,.15);
}
.cmt__form-wrap .comment-form textarea{
  min-height: 140px;
  resize: vertical;
}
.cmt__form-wrap .comment-form input::placeholder,
.cmt__form-wrap .comment-form textarea::placeholder{
  color: rgba(36,52,71,.35);
}
.cmt__form-wrap .form-submit{
  margin-top: 4px;
}
.cmt__form-wrap .comment-form .submit{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 700;
  font-family: var(--font-brand);
  border: none;
  background: var(--brand-gold);
  color: var(--brand-navy);
  cursor: pointer;
  transition: background var(--t-fast) ease, transform .15s ease;
}
.cmt__form-wrap .comment-form .submit:hover{
  background: #d4b579;
  transform: translateY(-2px);
}

/* ── Comments responsive ── */
@media(max-width: 480px){
  .cmt__body{ grid-template-columns: 1fr; }
  .cmt__avatar{ display: flex; align-items: center; gap: 10px; }
  .cmt__list .children{ padding-inline-start: 16px; }
}


/* ═══════════════════════════════════════════════════════════════
   AUTHOR PAGE  (.au-*)
   ═══════════════════════════════════════════════════════════════ */
.au-hero{
  background: linear-gradient(170deg, var(--brand-navy) 0%, #1a2332 100%);
  padding: clamp(40px,6vw,80px) 0 clamp(32px,4vw,56px);
  text-align: center;
}
.au-avatar{
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(201,167,106,.35);
  margin: 0 auto 16px;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.au-name{
  font-family: var(--font-brand);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}
.au-bio{
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,.68);
  max-width: 560px;
  margin: 0 auto 16px;
  line-height: 1.7;
}
.au-url a{
  color: var(--brand-gold);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  transition: color var(--t-fast) ease;
}
.au-url a:hover{ color: #fff; }
.au-badge{
  display: inline-block;
  margin-top: 12px;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(201,167,106,.15);
  color: var(--brand-gold);
  font-size: .85rem;
  font-weight: 600;
}

/* ── Author body ── */
.au-body{
  padding: clamp(32px,4vw,56px) 0;
  background: var(--brand-beige);
}
.au-layout{
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(24px,3vw,40px);
  align-items: start;
}
.au-section-title{
  font-family: var(--font-brand);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 800;
  color: var(--brand-navy);
  margin: 0 0 clamp(16px,2vw,24px);
}
.au-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(16px,2vw,24px);
}

/* ── Author responsive ── */
@media(max-width: 900px){
  .au-layout{ grid-template-columns: 1fr; }
}
@media(max-width: 480px){
  .au-grid{ grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   BLOG SIDEBAR  (.bsb__*)
   ═══════════════════════════════════════════════════════════════ */
.bsb{
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bsb__widget{
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid rgba(36,52,71,.06);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.bsb__title{
  font-family: var(--font-brand);
  font-size: .95rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(201,167,106,.2);
}

/* ── Widget lists (recent posts, categories, archives, meta) ── */
.bsb__widget ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bsb__widget ul li{
  font-size: .88rem;
}
.bsb__widget ul li a{
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(36,52,71,.7);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 8px;
  transition: all var(--t-fast) ease;
}
.bsb__widget ul li a:hover{
  background: rgba(201,167,106,.08);
  color: var(--brand-navy);
}
.bsb__widget ul li.current-cat > a,
.bsb__widget ul li.current_page_item > a{
  color: var(--brand-gold);
  font-weight: 600;
  background: rgba(201,167,106,.06);
}
/* Nested sub-categories */
.bsb__widget ul ul{
  padding-inline-start: 16px;
  margin-top: 4px;
}

/* ── Tag cloud ── */
.bsb__widget .tagcloud{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bsb__widget .tagcloud a{
  display: inline-block;
  padding: 4px 12px;
  font-size: .78rem !important; /* override WP inline sizes */
  border-radius: 999px;
  background: rgba(36,52,71,.04);
  border: 1px solid rgba(36,52,71,.08);
  color: rgba(36,52,71,.6);
  text-decoration: none;
  transition: all var(--t-fast) ease;
}
.bsb__widget .tagcloud a:hover{
  background: var(--brand-gold);
  color: var(--brand-navy);
  border-color: var(--brand-gold);
}

/* ── Search widget ── */
.bsb__widget .search-form{
  display: flex;
  gap: 0;
}
.bsb__widget .search-form .search-field{
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(36,52,71,.1);
  border-radius: 999px 0 0 999px;
  font-size: .88rem;
  background: rgba(36,52,71,.02);
  color: var(--brand-navy);
  outline: none;
  transition: border-color var(--t-fast) ease;
}
[dir="rtl"] .bsb__widget .search-form .search-field{ border-radius: 0 999px 999px 0; }
.bsb__widget .search-form .search-field:focus{
  border-color: var(--brand-gold);
}
.bsb__widget .search-form .search-submit{
  padding: 10px 16px;
  border: none;
  border-radius: 0 999px 999px 0;
  background: var(--brand-gold);
  color: var(--brand-navy);
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  transition: background var(--t-fast) ease;
}
[dir="rtl"] .bsb__widget .search-form .search-submit{ border-radius: 999px 0 0 999px; }
.bsb__widget .search-form .search-submit:hover{ background: #d4b579; }

/* ── Calendar widget ── */
.bsb__widget table#wp-calendar{
  width: 100%;
  font-size: .82rem;
  border-collapse: collapse;
}
.bsb__widget table#wp-calendar caption{ font-weight: 700; margin-bottom: 8px; }
.bsb__widget table#wp-calendar th,
.bsb__widget table#wp-calendar td{
  text-align: center;
  padding: 4px;
}
.bsb__widget table#wp-calendar a{ color: var(--brand-gold); font-weight: 600; }

/* ── Sidebar responsive: below grid on mobile ── */
@media(max-width: 900px){
  .bsb{
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}


/* ═══════════════════════════════════════════════════════════════
   SEARCHFORM  (.sf)
   ═══════════════════════════════════════════════════════════════ */
.sf{
  display: flex;
  gap: 0;
  max-width: 480px;
}
.sf__field{
  flex: 1;
  padding: 12px 18px;
  border: 1px solid rgba(36,52,71,.12);
  border-radius: 999px 0 0 999px;
  font-size: .92rem;
  background: #fff;
  color: var(--brand-navy);
  outline: none;
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
}
.sf__field:focus{
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(201,167,106,.12);
}
.sf__field::placeholder{ color: rgba(36,52,71,.4); }
.sf__submit{
  padding: 12px 22px;
  border: none;
  border-radius: 0 999px 999px 0;
  background: var(--brand-gold);
  color: var(--brand-navy);
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: background var(--t-fast) ease;
}
.sf__submit:hover{ background: #d4b579; }
[dir="rtl"] .sf__field{ border-radius: 0 999px 999px 0; }
[dir="rtl"] .sf__submit{ border-radius: 999px 0 0 999px; }


/* ═══════════════════════════════════════════════════════════════
   SINGLE SERVICE — Premium (.svc-hero, .svc-facts, .svc-tabs …)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Hero ─── */
.svc-hero{
  position: relative;
  overflow: clip;
  isolation: isolate;
  padding: clamp(48px,7vw,96px) 0 clamp(40px,6vw,72px);
  background:
    radial-gradient(900px 550px at 30% 85%, color-mix(in srgb, var(--brand-gold) 14%, transparent), transparent 60%),
    radial-gradient(700px 400px at 75% 15%, color-mix(in srgb, var(--brand-olive) 20%, transparent), transparent 55%),
    linear-gradient(170deg, var(--brand-navy) 0%, #1a2332 100%);
  color: rgba(255,255,255,.92);
}
.svc-hero__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px,4vw,48px);
  align-items: center;
}
.svc-hero__copy{ display: flex; flex-direction: column; gap: 16px; }

/* Kicker (icon + label) */
.svc-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.svc-ico{
  width: 48px; height: 48px;
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--glass-dark-bg);
  padding: 6px;
  border: 1px solid var(--glass-dark-border);
}
.svc-label{
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-gold);
  background: rgba(201,167,106,.12);
  padding: 6px 14px;
  border-radius: 999px;
}

/* Title + subtitle */
.svc-title{
  font-family: var(--font-brand);
  font-size: clamp(1.7rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
  margin: 0;
  text-shadow: 0 0 32px rgba(0,0,0,.25);
}
.svc-short{
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  max-width: 48ch;
  margin: 0;
}

/* Feature badges */
.svc-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}
.svc-badge{
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  color: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* CTA row */
.svc-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* Cover image */
.svc-cover{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.28);
  margin: 0;
  aspect-ratio: 4 / 3;
}
.svc-cover img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.22,1,.36,1), filter .35s ease;
  filter: brightness(.88);
}
.svc-cover:hover img{
  transform: scale(1.04);
  filter: brightness(1);
}
.svc-shine{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.1) 50%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s ease;
}
.svc-cover:hover .svc-shine{ opacity: 1; }

/* Orbs */
.svc-orb{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .3;
  pointer-events: none;
  z-index: -1;
}
.svc-orb--gold{
  width: 480px; height: 480px;
  top: -12%; right: -6%;
  background: radial-gradient(circle, var(--brand-gold), transparent 70%);
  animation: svcOrb-a 18s ease-in-out infinite alternate;
}
.svc-orb--olive{
  width: 420px; height: 420px;
  bottom: -14%; left: -8%;
  background: radial-gradient(circle, var(--brand-olive), transparent 70%);
  animation: svcOrb-b 22s ease-in-out infinite alternate;
}
@keyframes svcOrb-a{
  0%  { transform: translate3d(0,0,0) scale(1);   opacity: .28; }
  50% { transform: translate3d(35px,-25px,0) scale(1.08); opacity: .38; }
  100%{ transform: translate3d(-18px,15px,0) scale(.94); opacity: .26; }
}
@keyframes svcOrb-b{
  0%  { transform: translate3d(0,0,0) scale(1);   opacity: .22; }
  50% { transform: translate3d(-30px,22px,0) scale(1.06); opacity: .32; }
  100%{ transform: translate3d(12px,-12px,0) scale(.92); opacity: .20; }
}

/* ─── Body layout: 2-column (tabs + facts sidebar) ─── */
main.svc{
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(24px,3vw,40px);
  padding-block: clamp(40px,5vw,72px);
  background: var(--brand-beige);
  align-items: start;
}

/* ─── Sticky Facts Sidebar ─── */
.svc-facts{
  position: sticky;
  top: 100px;
  background: var(--glass-light-bg);
  border: 1px solid var(--glass-light-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: clamp(20px,2.5vw,28px);
  box-shadow: var(--glass-light-shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  order: 2;
}
.fact{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.fact:last-of-type{ border-bottom: none; }
.fact b{
  font-size: .88rem;
  font-weight: 700;
  color: var(--brand-navy);
}
.fact span{
  font-size: .88rem;
  color: var(--c-gray-700);
}
.svc-mini-cta{
  margin-top: 4px;
}
.svc-mini-cta .btn{
  width: 100%;
  justify-content: center;
}

/* ─── Tabs ─── */
.svc-tabs{
  order: 1;
  min-width: 0;
}
.svc-tablist{
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: clamp(20px,3vw,32px);
  border-bottom: 2px solid rgba(0,0,0,.06);
}
.svc-tablist::-webkit-scrollbar{ display: none; }
.svc-tab{
  font-family: var(--font-brand);
  font-size: .92rem;
  font-weight: 700;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: var(--c-gray-700);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color var(--t-fast) ease;
  border-radius: 0;
}
.svc-tab::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand-gold);
  transform: scaleX(0);
  transition: transform var(--t-fast) ease;
}
.svc-tab.is-active{
  color: var(--brand-navy);
}
.svc-tab.is-active::after{
  transform: scaleX(1);
}
.svc-tab:hover:not(.is-active){
  color: var(--brand-gold);
}

/* ─── Panels ─── */
.svc-panel{
  display: none;
  animation: svcFadeIn .35s ease;
}
.svc-panel.is-active{ display: block; }
@keyframes svcFadeIn{
  from{ opacity: 0; transform: translateY(8px); }
  to  { opacity: 1; transform: translateY(0);   }
}

/* Overview panel content inherits post-content typography */
.svc-content h2{ font-family: var(--font-brand); font-size: clamp(1.25rem,2.5vw,1.6rem); font-weight: 800; color: var(--brand-navy); margin: 1.6em 0 .6em; line-height: 1.25; }
.svc-content h3{ font-family: var(--font-brand); font-size: clamp(1.05rem,2vw,1.3rem); font-weight: 700; color: var(--brand-olive); margin: 1.4em 0 .5em; }
.svc-content p{ line-height: 1.8; color: #444; margin-bottom: 1em; }
.svc-content a{ color: var(--brand-olive); text-decoration: underline; text-underline-offset: 3px; transition: color var(--t-fast); }
.svc-content a:hover{ color: var(--color-accent); }
.svc-content img,
.svc-content figure img{ border-radius: var(--radius); max-width: 100%; height: auto; }
.svc-content ul, .svc-content ol{ padding-inline-start: 1.4em; margin-bottom: 1em; }
.svc-content li{ margin-bottom: .4em; line-height: 1.7; color: #444; }
.svc-content blockquote{
  border-inline-start: 4px solid var(--brand-gold);
  background: rgba(201,167,106,.06);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.2em 0;
  font-style: italic;
  color: #555;
}

/* Excerpt quote block */
.svc-quote{
  border-inline-start: 4px solid var(--brand-gold);
  background: rgba(201,167,106,.08);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0 0;
  font-style: italic;
  color: #555;
  line-height: 1.7;
}

/* ─── Process Steps ─── */
.svc-steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
  position: relative;
  counter-reset: svc-step;
}
/* Vertical connector line */
.svc-steps::before{
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  inset-inline-start: 23px;
  width: 3px;
  background: linear-gradient(to bottom, var(--brand-gold), var(--brand-olive));
  border-radius: 3px;
  opacity: .25;
}
.svc-step{
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease;
}
.svc-step.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.step-cap{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-olive));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(201,167,106,.25);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.step-body{ padding-top: 6px; }
.step-title{
  font-family: var(--font-brand);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0 0 6px;
}
.step-body p{
  color: #555;
  line-height: 1.7;
  margin: 0;
}
.step-icon{
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  object-fit: contain;
  margin-top: 10px;
  background: var(--glass-light-bg);
  border: 1px solid var(--glass-light-border);
  padding: 4px;
}

/* ─── Service FAQ (simplified qx-* children) ─── */
.svc-accordion{
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-accordion .qx-item{
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.svc-accordion .qx-item:first-child{
  border-top: 1px solid rgba(0,0,0,.08);
}
.svc-accordion .qx-toggle{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  transition: color var(--t-fast) ease;
}
.svc-accordion .qx-q{
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-navy);
  text-align: start;
}
.svc-accordion .qx-toggle:hover .qx-q{
  color: var(--color-accent);
}
.svc-accordion .qx-toggle[aria-expanded="true"] .qx-q{
  color: var(--brand-olive);
}
.svc-accordion .qx-caret{
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  transition: transform .3s ease;
}
.svc-accordion .qx-caret::before,
.svc-accordion .qx-caret::after{
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  top: 50%;
  left: 50%;
}
.svc-accordion .qx-caret::before{
  width: 14px; height: 2.5px;
  transform: translate(-50%, -50%);
}
.svc-accordion .qx-caret::after{
  width: 2.5px; height: 14px;
  transform: translate(-50%, -50%);
  transition: transform .3s ease, opacity .3s ease;
}
.svc-accordion .qx-toggle[aria-expanded="true"] .qx-caret::after{
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* Panel expand */
.svc-accordion .qx-panel{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.4,0,.2,1), opacity .35s ease;
  overflow: hidden;
  opacity: 0;
}
.svc-accordion .qx-toggle[aria-expanded="true"] + .qx-panel{
  grid-template-rows: 1fr;
  opacity: 1;
}
.svc-accordion .qx-a{
  min-height: 0;
  overflow: hidden;
  color: #555;
  line-height: 1.75;
  padding-bottom: 1.2rem;
  font-size: .95rem;
}

/* ─── Gallery Grid ─── */
.svc-panel .svc-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-panel .svc-grid .svc-card{
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--elev-1);
  transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease;
}
.svc-panel .svc-grid .svc-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--elev-2);
}
.svc-panel .svc-grid .svc-card a{
  display: block;
  width: 100%;
  height: 100%;
}
.svc-panel .svc-grid .svc-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.svc-panel .svc-grid .svc-card:hover img{
  transform: scale(1.06);
}

/* ─── Related Services ─── */
.svc-related{
  grid-column: 1 / -1;
  padding-top: clamp(24px,3vw,40px);
  margin-top: clamp(24px,3vw,40px);
  border-top: 1px solid rgba(0,0,0,.06);
}
.rel-title{
  font-family: var(--font-brand);
  font-size: clamp(1.2rem,2.5vw,1.6rem);
  font-weight: 800;
  color: var(--brand-navy);
  margin: 0 0 20px;
}
.rel-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.rel-card{
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass-light-bg);
  border: 1px solid var(--glass-light-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--glass-light-shadow);
  transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, border-color var(--t-fast) ease;
}
.rel-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--elev-2);
  border-color: var(--brand-gold);
}
.rel-card figure{
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.rel-card figure img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.rel-card:hover figure img{
  transform: scale(1.05);
}
.rel-card h3{
  padding: 14px 18px;
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0;
}

/* ─── Coverage Areas Links ─── */
.svc-areas{
  grid-column: 1 / -1;
  padding-top: clamp(20px,2.5vw,32px);
}
.svc-areas__title{
  font-family: var(--font-brand);
  font-size: clamp(1.1rem,2vw,1.35rem);
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0 0 14px;
}
.svc-areas__list{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.area-tag{
  display: inline-flex;
  align-items: center;
  font-size: .82rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(81,98,91,.1);
  color: var(--brand-olive);
  text-decoration: none;
  transition: background var(--t-fast) ease, color var(--t-fast) ease;
}
.area-tag:hover{
  background: var(--brand-gold);
  color: var(--brand-navy);
}

/* ─── Lightbox ─── */
.svc-lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.svc-lightbox.is-open{
  opacity: 1;
  pointer-events: auto;
}
.svc-l__img{
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  transform: scale(.92);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.svc-lightbox.is-open .svc-l__img{
  transform: scale(1);
}
.svc-l__close{
  position: absolute;
  top: 20px;
  inset-inline-end: 24px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--t-fast) ease;
  z-index: 1;
}
.svc-l__close:hover{
  background: rgba(255,255,255,.3);
}
.svc-scrim{
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.svc-scrim.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* Empty state */
.svc-empty{
  text-align: center;
  color: var(--c-gray-600);
  padding: 32px 16px;
  font-size: .95rem;
}

/* ─── Single-service Responsive ─── */
@media (max-width: 1024px){
  main.svc{
    grid-template-columns: 1fr;
  }
  .svc-facts{
    position: static;
    order: -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }
  .fact{ border-bottom: none; padding: 10px 14px; background: rgba(0,0,0,.02); border-radius: var(--radius-sm); flex-direction: column; align-items: flex-start; gap: 4px; }
  .svc-mini-cta{ grid-column: 1 / -1; }
}
@media (max-width: 768px){
  .svc-hero__grid{
    grid-template-columns: 1fr;
  }
  .svc-cover{ max-width: 480px; margin-inline: auto; }
  .svc-panel .svc-grid{ grid-template-columns: repeat(2, 1fr); }
  .rel-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px){
  .svc-panel .svc-grid{ grid-template-columns: 1fr; }
  .rel-grid{ grid-template-columns: 1fr; }
  .svc-orb{ display: none; }
}
@media (prefers-reduced-motion: reduce){
  .svc-orb, .svc-cover img, .svc-shine, .svc-lightbox .svc-l__img{
    animation: none !important;
    transition: none !important;
  }
  .svc-step{ opacity: 1; transform: none; }
}


/* ═══════════════════════════════════════════════════════════════
   ARCHIVE SERVICE — Grid + Filters (.svc-archive)
   ═══════════════════════════════════════════════════════════════ */
.svc-archive{
  background: var(--c-white);
}

/* ─── Archive Hero ─── */
.svc-archive__hero{
  text-align: center;
  padding: clamp(48px,7vw,96px) 0 clamp(32px,4vw,56px);
  background: linear-gradient(170deg, var(--brand-navy) 0%, #1a2332 100%);
  color: #fff;
}
.svc-archive__title{
  font-family: var(--font-brand);
  font-size: clamp(1.6rem,4.5vw,2.8rem);
  font-weight: 800;
  margin: 0 0 12px;
  text-shadow: 0 0 24px rgba(0,0,0,.2);
}
.svc-archive__sub{
  font-size: clamp(.9rem,1.5vw,1.05rem);
  color: rgba(255,255,255,.72);
  max-width: 58ch;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* ─── Filters ─── */
.svc-archive__filters{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.svc-filter-tag{
  display: inline-flex;
  align-items: center;
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  color: rgba(255,255,255,.8);
  text-decoration: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--t-fast) ease, color var(--t-fast) ease, border-color var(--t-fast) ease;
}
.svc-filter-tag:hover{
  background: rgba(201,167,106,.15);
  border-color: var(--brand-gold);
  color: #fff;
}
.svc-filter-tag.is-active{
  background: var(--brand-gold);
  color: var(--brand-navy);
  border-color: var(--brand-gold);
}

/* ─── Card Grid ─── */
.svc-archive__grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(20px,3vw,32px);
  padding-block: clamp(40px,5vw,64px);
  background: var(--brand-beige);
}
.svc-archive .svc-card{
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass-light-bg);
  border: 1px solid var(--glass-light-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--glass-light-shadow);
  transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, border-color var(--t-fast) ease;
}
.svc-archive .svc-card:hover{
  transform: translateY(-7px);
  box-shadow: var(--elev-2);
  border-color: var(--brand-gold);
}
.svc-card__img-wrap{
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.svc-card__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  filter: brightness(.92);
}
.svc-archive .svc-card:hover .svc-card__img{
  transform: scale(1.05);
  filter: brightness(1);
}
.svc-card__body{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(16px,2vw,24px);
  flex: 1;
}
.svc-card__title{
  font-family: var(--font-brand);
  font-size: clamp(1rem,1.6vw,1.2rem);
  font-weight: 700;
  margin: 0;
}
.svc-card__title a{
  color: var(--brand-navy);
  text-decoration: none;
  transition: color var(--t-fast);
}
.svc-card__title a:hover{ color: var(--brand-gold); }
.svc-card__excerpt{
  color: var(--c-gray-700);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.svc-card__cta{
  align-self: flex-start;
  margin-top: 4px;
}

/* ─── Bottom CTA ─── */
.svc-archive__cta{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: clamp(32px,5vw,56px) 0 clamp(40px,6vw,64px);
}

/* Empty state */
.svc-archive__empty{
  grid-column: 1 / -1;
  text-align: center;
  color: var(--c-gray-600);
  padding: 48px 16px;
  font-size: 1rem;
}

/* ─── Archive Service Responsive ─── */
@media (max-width: 768px){
  .svc-archive__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px){
  .svc-archive__grid{ grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   SINGLE AREA — Hero + Body (.area-single)
   ═══════════════════════════════════════════════════════════════ */
.area-single{
  background: var(--c-white);
}

/* ─── Hero (background-image cover) ─── */
.area-single__hero{
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: clamp(280px, 40vh, 440px);
  display: flex;
  align-items: flex-end;
  padding: clamp(40px,6vw,80px) 0 clamp(32px,4vw,56px);
  isolation: isolate;
}
.area-single__hero::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,52,71,.35) 0%, rgba(36,52,71,.82) 100%);
  z-index: -1;
}
.area-single__hero-inner{
  position: relative;
  z-index: 1;
}
.area-single__title{
  font-family: var(--font-brand);
  font-size: clamp(1.7rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.area-single__intro{
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,.78);
  max-width: 52ch;
  line-height: 1.65;
  margin: 0;
}

/* ─── Body ─── */
.area-single__body{
  max-width: 780px;
  margin-inline: auto;
  padding: clamp(32px,5vw,64px) var(--spacing-4);
  display: flex;
  flex-direction: column;
  gap: clamp(28px,4vw,44px);
}

/* Content (inherits post-content patterns) */
.area-single__content h2{ font-family: var(--font-brand); font-size: clamp(1.2rem,2.5vw,1.5rem); font-weight: 800; color: var(--brand-navy); margin: 1.4em 0 .5em; line-height: 1.25; }
.area-single__content h3{ font-family: var(--font-brand); font-size: clamp(1.05rem,2vw,1.25rem); font-weight: 700; color: var(--brand-olive); margin: 1.2em 0 .5em; }
.area-single__content p{ line-height: 1.8; color: #444; margin-bottom: 1em; }
.area-single__content a{ color: var(--brand-olive); text-decoration: underline; text-underline-offset: 3px; transition: color var(--t-fast); }
.area-single__content a:hover{ color: var(--color-accent); }
.area-single__content img{ border-radius: var(--radius); max-width: 100%; height: auto; }
.area-single__content ul,
.area-single__content ol{ padding-inline-start: 1.4em; margin-bottom: 1em; }
.area-single__content li{ margin-bottom: .4em; line-height: 1.7; color: #444; }

/* ─── Coverage Callout ─── */
.area-single__coverage{
  background: rgba(201,167,106,.08);
  border-inline-start: 4px solid var(--brand-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
}
.area-single__coverage h3{
  font-family: var(--font-brand);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0 0 8px;
}
.area-single__coverage p{
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ─── Regions ─── */
.area-single__regions{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.area-single__regions-label{
  font-size: .88rem;
  font-weight: 700;
  color: var(--brand-navy);
}

/* ─── Services List ─── */
.area-single__services h2{
  font-family: var(--font-brand);
  font-size: clamp(1.1rem,2vw,1.35rem);
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0 0 14px;
}
.area-single__svc-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.area-single__svc-list li{
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.area-single__svc-list li:first-child{
  border-top: 1px solid rgba(0,0,0,.06);
}
.area-single__svc-list a{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 4px;
  text-decoration: none;
  color: var(--brand-olive);
  font-weight: 600;
  font-size: .95rem;
  transition: color var(--t-fast) ease, padding-inline-start var(--t-fast) ease;
}
.area-single__svc-list a::before{
  content: '←';
  font-size: .9rem;
  transition: transform var(--t-fast) ease;
}
[dir="rtl"] .area-single__svc-list a::before{ content: '→'; }
.area-single__svc-list a:hover{
  color: var(--brand-gold);
  padding-inline-start: 8px;
}
.area-single__svc-list a:hover::before{
  transform: translateX(-4px);
}
[dir="rtl"] .area-single__svc-list a:hover::before{
  transform: translateX(4px);
}

/* ─── CTA Block ─── */
.area-single__cta{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding-top: 8px;
}

/* ─── Single Area Responsive ─── */
@media (max-width: 768px){
  .area-single__hero{ min-height: 220px; }
}


/* ═══════════════════════════════════════════════════════════════
   ARCHIVE AREA — Grid + Filters (.area-archive)
   ═══════════════════════════════════════════════════════════════ */
.area-archive{
  background: var(--c-white);
}

/* ─── Archive Hero ─── */
.area-archive__hero{
  text-align: center;
  padding: clamp(48px,7vw,96px) 0 clamp(32px,4vw,56px);
  background: linear-gradient(170deg, var(--brand-navy) 0%, #1a2332 100%);
  color: #fff;
}
.area-archive__hero h1{
  font-family: var(--font-brand);
  font-size: clamp(1.6rem,4.5vw,2.8rem);
  font-weight: 800;
  margin: 0 0 12px;
  text-shadow: 0 0 24px rgba(0,0,0,.2);
}
.area-archive__hero p{
  font-size: clamp(.9rem,1.5vw,1.05rem);
  color: rgba(255,255,255,.72);
  max-width: 58ch;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* ─── Filters (area namespace) ─── */
.area-archive__filters{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.area-filter-tag{
  display: inline-flex;
  align-items: center;
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  color: rgba(255,255,255,.8);
  text-decoration: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--t-fast) ease, color var(--t-fast) ease, border-color var(--t-fast) ease;
}
.area-filter-tag:hover{
  background: rgba(81,98,91,.2);
  border-color: var(--c-olive);
  color: #fff;
}
.area-filter-tag.is-active{
  background: var(--brand-olive);
  color: #fff;
  border-color: var(--brand-olive);
}

/* ─── Card Grid ─── */
.area-archive__grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(20px,3vw,32px);
  padding-block: clamp(40px,5vw,64px);
  background: var(--brand-beige);
}
.area-card{
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass-light-bg);
  border: 1px solid var(--glass-light-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--glass-light-shadow);
  transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, border-color var(--t-fast) ease;
}
.area-card:hover{
  transform: translateY(-7px);
  box-shadow: var(--elev-2);
  border-color: var(--brand-olive);
}
.area-card__img-wrap{
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.area-card__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  filter: brightness(.92);
}
.area-card:hover .area-card__img{
  transform: scale(1.05);
  filter: brightness(1);
}
.area-card__body{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(16px,2vw,24px);
  flex: 1;
}
.area-card__title{
  font-family: var(--font-brand);
  font-size: clamp(1rem,1.6vw,1.2rem);
  font-weight: 700;
  margin: 0;
}
.area-card__title a{
  color: var(--brand-navy);
  text-decoration: none;
  transition: color var(--t-fast);
}
.area-card__title a:hover{ color: var(--brand-olive); }
.area-card__excerpt{
  color: var(--c-gray-700);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.area-card__cta{
  align-self: flex-start;
  margin-top: 4px;
}

/* ─── Bottom CTA ─── */
.area-archive__cta{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: clamp(32px,5vw,56px) 0 clamp(40px,6vw,64px);
}

/* Empty state */
.area-archive__empty{
  grid-column: 1 / -1;
  text-align: center;
  color: var(--c-gray-600);
  padding: 48px 16px;
  font-size: 1rem;
}

/* ─── Archive Area Responsive ─── */
@media (max-width: 768px){
  .area-archive__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px){
  .area-archive__grid{ grid-template-columns: 1fr; }
}
