/* ── About page (XWUI-composed, screenshot-matched dark layout) ────────── */
.ethar-ab {
  --ethar-ab-edge: clamp(var(--space-5, 1.25rem), 4.4vw, var(--space-12, 3rem));
  --ethar-ab-radius: var(--radius-md, 0.625rem);
  --ethar-ab-navy: var(--ethar-navy);
  --ethar-ab-mist: var(--ethar-mist);
  --ethar-ab-cocoa: var(--ethar-cocoa);
  --ethar-ab-gold: var(--ethar-gold);
  --ethar-ab-page: color-mix(in srgb, var(--ethar-ab-navy) 76%, var(--ethar-ab-cocoa));
  --ethar-ab-text: color-mix(in srgb, var(--ethar-ab-mist) 94%, transparent);
  position: relative;
  overflow: hidden;
  color: var(--ethar-ab-text);
  background: var(--ethar-ab-page);
}
/* Stacked, no overlay: the heading + intro paragraph sit ABOVE, the photo
 * BELOW — text never overlaps the image (per client feedback). */
.ethar-ab-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ethar-ab-navy);
}
.ethar-ab-hero xwui-hero {
  position: relative;
  width: 100%;
}
.ethar-ab-hero__media {
  width: 100%;
  display: block;
  line-height: 0;
}
.ethar-ab-hero__img,
.ethar-ab-hero__img .xwui-image-container,
.ethar-ab-hero__img .xwui-image-wrapper,
.ethar-ab-hero__img .xwui-image,
.ethar-ab-hero__img .xwui-image-loaded {
  display: block;
  width: 100%;
}
.ethar-ab-hero__img .xwui-image-container {
  /* ≈ the 1.6:1 source — a full-bleed banner showing the whole scene. */
  aspect-ratio: 16 / 10;
}
.ethar-ab-hero__img .xwui-image,
.ethar-ab-hero__img .xwui-image-loaded {
  object-fit: cover;
  object-position: center;
}
.ethar-ab-hero__xwui {
  --xwui-layout-max-width: none;
  --xwui-color-brand-500: var(--ethar-ab-gold);
  --xwui-color-text-primary: var(--ethar-ab-mist);
  --xwui-color-text-secondary: var(--ethar-ab-text);
  --xwui-color-surface-1: transparent;
  --xwui-color-border-default: transparent;
  padding-block: clamp(3.5rem, 6vw, 8rem) clamp(2.5rem, 4vw, 5rem);
  padding-inline: clamp(4rem, 7.4vw, 13rem) clamp(var(--space-5, 1.25rem), 4vw, 5rem);
}
.ethar-ab-hero__xwui .xwui-hero__text {
  align-items: flex-start;
  max-width: min(92vw, 55rem);
  text-align: right;
}
html[dir="ltr"] .ethar-ab-hero__xwui .xwui-hero__text {
  align-items: flex-end;
  text-align: right;
}
.ethar-ab-hero__xwui .xwui-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
/* Position the heading + intro on the physical RIGHT in English too (it is
 * already right in Arabic/RTL), per client feedback. */
html[dir="ltr"] .ethar-ab-hero__xwui .xwui-hero__inner {
  justify-content: flex-end;
}
.ethar-ab-hero__xwui .xwui-hero__eyebrow {
  display: none;
}
.ethar-ab-hero__xwui .xwui-hero__eyebrow-dot {
  display: none;
}
.ethar-ab-hero__xwui .xwui-hero__title {
  width: 100%;
  max-width: none;
  color: var(--ethar-ab-mist);
  font-size: clamp(4.5rem, 6.4vw, 10.5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
  text-align: right;
  text-shadow: 0 0.15rem 1.35rem rgb(2 9 23 / 0.72);
}
html[dir="ltr"] .ethar-ab-hero__xwui .xwui-hero__title {
  text-align: right;
}
.ethar-ab-hero__xwui .xwui-hero__subtitle {
  width: 100%;
  max-width: 39ch;
  color: var(--ethar-ab-mist);
  font-size: clamp(1.45rem, 2.05vw, 3.25rem);
  line-height: 1.72;
  text-align: right;
  text-shadow: 0 0.1rem 1rem rgb(2 9 23 / 0.7);
}
html[dir="ltr"] .ethar-ab-hero__xwui .xwui-hero__subtitle {
  text-align: right;
}
/* ≥48rem: overlay the copy on the photo, anchored to the BOTTOM — the clean
 * reflective-floor band, clear of the two men (left) and the Riyadh skyline
 * (right) — with a bottom scrim for legibility. ≤48rem keeps the stacked split. */
@media (min-width: 48rem) {
  .ethar-ab-hero {
    display: grid;
    position: relative;
    min-height: clamp(32rem, 46vw, 60rem);
    padding-block-end: 0;
  }
  .ethar-ab-hero > *,
  .ethar-ab-hero::after {
    grid-area: 1 / 1;
  }
  .ethar-ab-hero__media {
    align-self: stretch;
    height: 100%;
  }
  .ethar-ab-hero__img,
  .ethar-ab-hero__img .xwui-image-container,
  .ethar-ab-hero__img .xwui-image,
  .ethar-ab-hero__img .xwui-image-loaded {
    height: 100% !important;
  }
  .ethar-ab-hero__img .xwui-image-container {
    aspect-ratio: auto;
  }
  .ethar-ab-hero__img .xwui-image,
  .ethar-ab-hero__img .xwui-image-loaded {
    object-fit: cover;
    object-position: center;
  }
  .ethar-ab-hero::after {
    content: "";
    align-self: stretch;
    background: linear-gradient(
      0deg,
      rgb(2 9 23 / 0.58) 0%,
      rgb(2 9 23 / 0.28) 28%,
      transparent 62%
    );
    pointer-events: none;
  }
  .ethar-ab-hero xwui-hero {
    align-self: end;
    z-index: 1;
  }
  .ethar-ab-hero__xwui .xwui-hero__inner,
  html[dir="ltr"] .ethar-ab-hero__xwui .xwui-hero__inner {
    justify-content: flex-end;
  }
  .ethar-ab-hero__xwui .xwui-hero__text,
  html[dir="ltr"] .ethar-ab-hero__xwui .xwui-hero__text {
    align-items: flex-end;
    text-align: right;
  }
  .ethar-ab-hero__xwui .xwui-hero__title,
  .ethar-ab-hero__xwui .xwui-hero__subtitle {
    color: #ffffff !important;
    text-align: right !important;
    text-shadow: 0 0.15rem 1.35rem rgb(2 9 23 / 0.82);
  }
  .ethar-ab-hero__xwui {
    padding-block: clamp(4rem, 7vw, 8rem) clamp(2.5rem, 4vw, 5rem);
    padding-bottom: 200px !important;
    /* Keep a consistent right margin so the big right-aligned title never clips
       against the viewport edge at narrower widths (e.g. DevTools docked). */
    padding-inline-end: clamp(2rem, 3.5vw, 5rem);
  }
}
/* Mobile (stacked, < 48rem): photo first, then the copy on a WHITE block with
   dark text (the overlay scrim/light type only make sense over the photo). */
@media (max-width: 47.99rem) {
  .ethar-ab-hero__media {
    order: -1;
  }
  .ethar-ab-hero__xwui {
    background: #ffffff !important;
  }
  .ethar-ab-hero__xwui .xwui-hero__title {
    color: #0c1422 !important;
    text-shadow: none !important;
  }
  .ethar-ab-hero__xwui .xwui-hero__subtitle {
    color: #3a4350 !important;
    text-shadow: none !important;
  }
}
.ethar-ab-intro,
.ethar-ab-vm,
.ethar-ab-simple,
.ethar-ab-values-carousel {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  background: var(--ethar-ab-mist);
  color: var(--ethar-ab-navy);
  /* Shared so the vm card gap, the gap below the cards, and the futuristic
   * banner's height all stay EXACTLY in sync. */
  --ethar-ab-vm-gap: clamp(1.5rem, 1.4vw, 1.75rem);
  --ethar-ab-vm-card-h: clamp(11rem, 15vw, 16rem);
}
.ethar-ab-intro,
.ethar-ab-vm,
.ethar-ab-values-carousel {
  background: #ffffff !important;
}
.ethar-ab-intro {
  padding: clamp(3rem, 3.1vw, 4rem) var(--ethar-ab-edge) clamp(5.25rem, 5vw, 6.5rem);
}
.ethar-ab-intro__inner {
  width: 100%;
  margin-inline: auto;
  display: grid;
  /* Image column = half the screen width (per mockup); copy takes the rest. */
  grid-template-columns: minmax(0, 50vw) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  direction: ltr;
}
.ethar-ab-intro__media {
  width: 100%;
}
.ethar-ab-intro__image,
.ethar-ab-intro__image .xwui-image-container,
.ethar-ab-intro__image .xwui-image-wrapper,
.ethar-ab-intro__image .xwui-image,
.ethar-ab-intro__image .xwui-image-loaded {
  display: block;
  width: 100%;
  height: 100%;
}
.ethar-ab-intro__image .xwui-image-container {
  /* Match the 1.25:1 source (was 88/100 portrait + cover, which sliced the side
   * towers off). contain guarantees the whole tower image shows, centered. */
  aspect-ratio: 5 / 4;
  background: transparent;
}
.ethar-ab-intro__image .xwui-image,
.ethar-ab-intro__image .xwui-image-loaded {
  object-fit: contain;
  object-position: center;
}
.ethar-ab-intro__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  direction: rtl;
  text-align: right;
}
html[dir="ltr"] .ethar-ab-intro__copy {
  align-items: flex-start;
  direction: ltr;
  text-align: left;
}
.ethar-ab-intro__title {
  max-width: 14ch;
  margin: 0;
  /* Heading: dark charcoal (per mockup). */
  color: #2b2825;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: var(--font-weight-bold, 700);
  letter-spacing: 0;
  line-height: 1.12;
}
.ethar-ab-intro__title--bottom {
  margin-block-end: clamp(1.25rem, 2vw, 2rem);
}
.ethar-ab-intro__lead {
  margin: 0 0 clamp(1.25rem, 1.8vw, 1.75rem);
  /* Lead: cocoa brown (per mockup). */
  color: var(--ethar-ab-cocoa);
  font-size: 60px !important;
  font-weight: 400;
  line-height: 1.5;
}
.ethar-ab-intro__body {
  max-width: 46rem;
  margin: 0 0 clamp(2rem, 2.8vw, 3rem);
  /* Body: neutral warm gray (per mockup — NOT brown). */
  color: #6b6660;
  font-size: 25px !important;
  line-height: 2.5;
}
html[dir="rtl"] .ethar-ab-intro__copy xwui-typography:has(.ethar-ab-intro__body) {
  display: flex;
  justify-content: end;
}
.ethar-ab-vm {
  display: flex;
  flex-direction: column;
  gap: var(--ethar-ab-vm-gap);
  /* Bottom padding == the inter-card gap, so the space before the futuristic
   * banner equals the gap between the two cards (banner section adds 0 on top). */
  padding: clamp(1.5rem, 1.7vw, 2.1rem) var(--ethar-ab-edge) var(--ethar-ab-vm-gap);
}
.ethar-ab-vm__card {
  width: min(100%, 116.875rem);
  /* Narrow band (per mockup) — short height with large type. */
  min-height: var(--ethar-ab-vm-card-h);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(8rem, 14rem) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 4.5vw, 5.5rem);
  overflow: hidden;
  padding: clamp(2rem, 3.5vw, 3.25rem) clamp(2.5rem, 5.5vw, 6.5rem);
  /* Near-black charcoal fading to dark cocoa-brown at the bottom (per mockup). */
  background: linear-gradient(180deg, #0c0a0d 0%, #171113 52%, #33251f 100%);
  color: var(--ethar-ab-mist);
}
.ethar-ab-vm__icon {
  justify-self: center;
  /* Shrink to the icon — not a giant container. */
  width: clamp(5.5rem, 8vw, 8.5rem);
  max-width: 100%;
}
.ethar-ab-vm__icon,
.ethar-ab-vm__icon .xwui-image-container,
.ethar-ab-vm__icon .xwui-image-wrapper,
.ethar-ab-vm__icon .xwui-image,
.ethar-ab-vm__icon .xwui-image-loaded {
  display: block;
  background: transparent;
}
.ethar-ab-vm__icon .xwui-image,
.ethar-ab-vm__icon .xwui-image-loaded {
  object-fit: contain;
}
/* The icon PNGs are dark line-art on a WHITE background (no alpha). invert()
 * turns the white field near-black (≈ the block) and the lines light; screen
 * then drops that dark field entirely so the icon reads as warm line-art on the
 * brown block with no visible box. */
.ethar-ab-vm__icon img,
.ethar-ab-vm__icon .xwui-image,
.ethar-ab-vm__icon .xwui-image-loaded {
  filter: invert(1) sepia(0.5) saturate(1.4) brightness(1.05);
  mix-blend-mode: screen;
}
.ethar-ab-vm__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  direction: rtl;
  text-align: right;
}
html[dir="ltr"] .ethar-ab-vm__copy {
  align-items: flex-start;
  direction: ltr;
  text-align: left;
}
.ethar-ab-vm__title {
  margin: 0 0 clamp(0.85rem, 1.6vw, 1.4rem);
  /* Warm champagne/cream heading (per mockup). */
  color: color-mix(in srgb, var(--ethar-ab-gold) 42%, var(--ethar-ab-mist));
  font-size: 50px !important;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.06;
}
html[dir="rtl"] .ethar-ab-vm__title {
  width: 100%;
  align-self: flex-end;
  text-align: right;
}
html[dir="rtl"] .ethar-ab-vm__copy {
  width: 100%;
  justify-self: stretch;
  align-items: stretch;
  text-align: right;
}
html[dir="rtl"] .ethar-ab-vm__copy xwui-typography,
html[dir="rtl"] .ethar-ab-vm__copy .xwui-typography {
  width: 100%;
  text-align: right;
  display: flex !important;
  justify-content: end !important;
}
.ethar-ab-vm__body {
  max-width: 64rem;
  margin: 0;
  color: color-mix(in srgb, var(--ethar-ab-mist) 88%, transparent);
  /* ~⅓ of the heading. !important so xwui-typography-body doesn't override it
     down to the base size (it was rendering at 16px EN / 18.4px AR). */
  font-size: clamp(1.1rem, 1.4vw, 1.5rem) !important;
  line-height: 1.8;
}

.ethar-ab-vm__copy,
html[dir="ltr"] .ethar-ab-vm__copy,
html[dir="rtl"] .ethar-ab-vm__copy {
  align-items: center !important;
  text-align: center !important;
}

.ethar-ab-vm__title,
html[dir="rtl"] .ethar-ab-vm__title,
.ethar-ab-vm__body {
  width: 100%;
  align-self: center !important;
  margin-inline: auto;
  text-align: center !important;
}

.ethar-ab-vm__copy xwui-typography,
.ethar-ab-vm__copy .xwui-typography,
html[dir="rtl"] .ethar-ab-vm__copy xwui-typography,
html[dir="rtl"] .ethar-ab-vm__copy .xwui-typography {
  text-align: center !important;
  justify-content: center !important;
}

/* ── 4. Simple banner image ─────────────────────────────────────────────────
 * Same width + side insets as the brown vm cards; wide-banner proportions
 * (per references/4-simple-img.png), softly rounded. */
.ethar-ab-simple {
  display: none !important;
  /* Top padding 0: the gap above the banner comes entirely from the vm section's
   * bottom padding (== inter-card gap). */
  padding: 0 var(--ethar-ab-edge) clamp(2.5rem, 4vw, 4.5rem);
}
.ethar-ab-simple__media,
.ethar-ab-simple__media .xwui-image-container,
.ethar-ab-simple__media .xwui-image-wrapper,
.ethar-ab-simple__media .xwui-image,
.ethar-ab-simple__media .xwui-image-loaded {
  display: block;
  width: 100%;
  height: 100%;
}
.ethar-ab-simple__media {
  width: min(100%, 116.875rem);
  /* Height == the brown vm cards (shared var); was driven by aspect-ratio. */
  height: var(--ethar-ab-vm-card-h);
  margin-inline: auto;
  border-radius: var(--ethar-ab-radius, 0.625rem);
  overflow: hidden;
}
.ethar-ab-simple__media .xwui-image-container {
  /* Fill the fixed-height media instead of imposing the banner aspect-ratio. */
  aspect-ratio: auto;
  height: 100%;
}
.ethar-ab-simple__media img,
.ethar-ab-simple__media .xwui-image,
.ethar-ab-simple__media .xwui-image-loaded {
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* ── 5. Values carousel ───────────────────────────────────────────────────── */
.ethar-ab-values-carousel {
  --ethar-ab-vcar-width: min(100%, 116.875rem);
  --ethar-ab-vcar-gap: clamp(0.85rem, 1.35vw, 1.5rem);
  --ethar-ab-vcard-w: clamp(9.5rem, 13vw, 12rem);
  padding: clamp(3rem, 4vw, 4.75rem) var(--ethar-ab-edge) clamp(4.5rem, 6vw, 7rem);
  color: #070d18;
}

.ethar-ab-vcar__title {
  width: var(--ethar-ab-vcar-width);
  margin: 0 auto clamp(2.25rem, 4vw, 4rem);
  color: #2b2825;
  font-size: 3rem !important;
  font-weight: 400 !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
  text-align: left;
}
html[dir="rtl"] .ethar-ab-vcar__title {
  text-align: right;
}

.ethar-ab-vcar {
  width: var(--ethar-ab-vcar-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.75rem, 2.1vw, 2rem);
  direction: ltr;
}

.ethar-ab-vcar__strip-host {
  min-width: 0;
  display: block;
}

.ethar-ab-vcar__strip-host .xwui-box-container {
  width: 100%;
  min-width: 0;
}

.ethar-ab-vcar__strip {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: var(--ethar-ab-vcar-gap);
  padding-block: clamp(0.85rem, 1.4vw, 1.35rem);
  direction: ltr;
}

.ethar-ab-vcar [data-value-card] {
  flex: 0 0 var(--ethar-ab-vcard-w);
  width: var(--ethar-ab-vcard-w);
  min-width: var(--ethar-ab-vcard-w);
  max-width: var(--ethar-ab-vcard-w);
  aspect-ratio: 5 / 6;
  display: block;
  color: color-mix(in srgb, var(--ethar-ab-gold) 38%, var(--ethar-ab-mist));
  cursor: pointer;
}

.ethar-ab-vcard {
  box-sizing: border-box;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.4rem 1rem;
  border: 0;
  border-radius: 0.5rem;
  outline: 1px solid transparent;
  outline-offset: 0;
  background: linear-gradient(180deg, #091022 0%, #080d1b 72%, #09060a 100%);
  color: color-mix(in srgb, var(--ethar-ab-gold) 38%, var(--ethar-ab-mist));
  box-shadow: none;
  transition:
    color 0.2s ease,
    outline-color 0.2s ease,
    outline-offset 0.2s ease,
    box-shadow 0.2s ease;
}

.ethar-ab-vcard .xwui-card-body {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: inherit;
}

.ethar-ab-vcard__icon-wrap-host,
.ethar-ab-vcard__icon-wrap {
  order: 1;
}

.ethar-ab-vcard xwui-typography,
.ethar-ab-vcard .ethar-ab-vcard__label {
  order: 2;
}

.ethar-ab-vcar [data-value-card].is-active .ethar-ab-vcard,
.ethar-ab-vcard.is-active {
  outline-color: color-mix(in srgb, var(--ethar-ab-gold) 78%, #ffffff);
  outline-offset: 0.42rem;
  background: linear-gradient(180deg, #4b3a2d 0%, #221610 62%, #09060a 100%);
  color: color-mix(in srgb, var(--ethar-ab-gold) 78%, #ffffff);
  box-shadow: 0 0.9rem 1.55rem rgb(7 13 24 / 0.18);
}

.ethar-ab-vcar [data-value-card]:focus-visible {
  outline: none;
}
.ethar-ab-vcar [data-value-card]:focus-visible .ethar-ab-vcard {
  outline: 2px solid var(--ethar-ab-gold);
  outline-offset: 0.42rem;
}

.ethar-ab-vcard__icon-wrap,
.ethar-ab-vcard__icon-wrap-host {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.ethar-ab-vcard__icon {
  display: block;
  width: 4rem;
  height: 4rem;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: var(--ethar-ab-vcard-icon) center / contain no-repeat;
  mask: var(--ethar-ab-vcard-icon) center / contain no-repeat;
  opacity: 0.92;
}
.ethar-ab-vcar [data-value-card].is-active .ethar-ab-vcard__icon {
  opacity: 1;
}

.ethar-ab-vcard .ethar-ab-vcard__label {
  margin: 0;
  color: inherit;
  font-size: 1.15rem !important;
  line-height: 1.2 !important;
  text-align: center;
}

.ethar-ab-vcar xwui-button,
.ethar-ab-vcar .xwui-button-container,
.ethar-ab-vcar .xwui-button-item-wrapper {
  display: inline-flex;
}

.xwui-button.ethar-ab-vcar__arrow {
  width: 3.25rem;
  height: 3.25rem;
  min-width: 3.25rem;
  min-height: 3.25rem;
  padding: 0;
  display: inline-grid;
  place-items: center;
  position: relative;
  border: 1px solid var(--ethar-ab-navy) !important;
  border-radius: 50%;
  background: var(--ethar-ab-navy) !important;
  color: var(--ethar-ab-mist) !important;
  box-shadow: 0 3px 12px rgb(7 13 24 / 0.22);
}
.xwui-button.ethar-ab-vcar__arrow:hover:not(:disabled) {
  background: color-mix(in srgb, var(--ethar-ab-navy) 86%, #000) !important;
}
.xwui-button.ethar-ab-vcar__arrow .xwui-item-standard-layout,
.xwui-button.ethar-ab-vcar__arrow .xwui-item-content-block,
.xwui-button.ethar-ab-vcar__arrow .xwui-button-icon,
.xwui-button.ethar-ab-vcar__arrow .material-icons,
.xwui-button.ethar-ab-vcar__arrow .xwui-icon {
  display: none !important;
}
.xwui-button.ethar-ab-vcar__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.72rem;
  height: 0.72rem;
  border-color: currentColor;
  border-style: solid;
  border-width: 0;
}
.xwui-button.ethar-ab-vcar__arrow--prev::before {
  left: 50%;
  border-left-width: 2px;
  border-bottom-width: 2px;
  transform: translate(-38%, -50%) rotate(45deg);
}
.xwui-button.ethar-ab-vcar__arrow--next::before {
  right: 50%;
  border-right-width: 2px;
  border-top-width: 2px;
  transform: translate(38%, -50%) rotate(45deg);
}

.ethar-ab-vcar__desc {
  width: min(100%, 66rem);
  margin: clamp(2rem, 3.3vw, 3.5rem) auto 0;
  text-align: center;
  direction: ltr;
}
html[dir="rtl"] .ethar-ab-vcar__desc {
  direction: rtl;
}
.ethar-ab-vcar__desc-title {
  margin: 0 0 0.75rem;
  color: var(--ethar-ab-cocoa);
  font-size: 1.8rem !important;
  font-weight: var(--font-weight-bold, 700) !important;
  line-height: 1.25 !important;
  text-align: center !important;
}
.ethar-ab-vcar__desc-body {
  max-width: 58rem;
  margin: 0 auto;
  color: #6b6660;
  font-size: 1.12rem !important;
  line-height: 1.85 !important;
  text-align: center !important;
}
.ethar-ab-vcar__desc xwui-typography,
.ethar-ab-vcar__desc .xwui-typography {
  width: 100%;
  justify-content: center;
  text-align: center !important;
}
.ethar-ab-vcar__desc xwui-typography {
  display: block;
}
.ethar-ab-vcar__desc .xwui-typography.xwui-typography-body.ethar-ab-vcar__desc-body,
.ethar-ab-vcar__desc .xwui-typography-body.ethar-ab-vcar__desc-body {
  display: block;
  margin: 0 auto;
}

/* ── 6. Presence map ───────────────────────────────────────────────────────── */
.ethar-ab-map {
  position: relative;
  isolation: isolate;
  display: flex !important;
  align-items: center;
  width: 100vw;
  min-height: clamp(620px, 57.5vw, 980px);
  margin-inline: calc(50% - 50vw);
  padding: clamp(48px, 5.6vw, 96px) var(--ethar-ab-edge);
  box-sizing: border-box;
  overflow: hidden;
  background: linear-gradient(180deg, #e8ece9 0%, #e2e2dd 55%, #cbc9c5 100%);
  color: #07101d;
  line-height: normal;
}
.ethar-ab-map__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 6vw, 112px);
  width: min(100%, 1460px);
  margin-inline: auto;
  direction: ltr;
}
.ethar-ab-map__visual {
  position: relative;
  display: block;
  justify-self: start;
  width: min(100%, 850px);
  aspect-ratio: 1536 / 1024;
  /* Lets the hover ripple be sized relative to the map width (cqi), so it stays
     proportional and never grows over the baked-in city labels. */
  container-type: inline-size;
}
.ethar-ab-map__art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ethar-ab-map__pins {
  position: absolute;
  inset: 0;
}
.ethar-ab-map__pin {
  position: absolute !important;
  left: var(--pin-x);
  top: var(--pin-y);
  z-index: 2;
  width: clamp(24px, 2.1vw, 36px) !important;
  height: clamp(24px, 2.1vw, 36px) !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  transform: translate(-50%, -50%);
  border: 0 !important;
  border-radius: 50% !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  appearance: none;
  cursor: pointer;
}
.ethar-ab-map__pin::before,
.ethar-ab-map__pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.25cqi;
  height: 1.25cqi;
  border: 2px solid rgb(169 115 50 / 0.58);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.62);
  pointer-events: none;
}
.ethar-ab-map__pin:hover::before,
.ethar-ab-map__pin:focus-visible::before {
  animation: ethar-ab-map-ripple 1.45s ease-out infinite;
}
.ethar-ab-map__pin:hover::after,
.ethar-ab-map__pin:focus-visible::after {
  animation: ethar-ab-map-ripple 1.45s ease-out 0.36s infinite;
}
@keyframes ethar-ab-map-ripple {
  0% {
    opacity: 0.68;
    transform: translate(-50%, -50%) scale(0.62);
  }
  72% {
    opacity: 0.12;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.4);
  }
}
.ethar-ab-map__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-self: end;
  width: min(100%, 520px);
  min-height: clamp(430px, 40vw, 620px);
  padding-block: clamp(10px, 2vw, 34px) clamp(8px, 1.8vw, 28px);
  box-sizing: border-box;
  direction: rtl;
  text-align: right;
}
.ethar-ab-map__title {
  margin: 0 0 clamp(28px, 3.8vw, 58px) !important;
  color: #07101d !important;
  font-size: clamp(58px, 5.4vw, 96px) !important;
  font-weight: 400 !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
}
.ethar-ab-map__body {
  max-width: 510px;
  margin: 0 !important;
  color: #5b453c !important;
  font-size: clamp(25px, 2.2vw, 38px) !important;
  font-weight: var(--font-weight-normal, 400) !important;
  line-height: 1.75 !important;
  letter-spacing: 0 !important;
}
html[dir="ltr"] .ethar-ab-map__copy {
  direction: ltr;
  text-align: left;
  align-items: flex-start;
}

/* ── 7. Chairman quote ─────────────────────────────────────────────────────── */
.ethar-ab-chairman {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  color: #070d18;
  padding-block-start: 80px;
  padding-block-end: 120px;
}
.ethar-ab-chairman__title {
  width: min(calc(100% - 18.4vw), 137.5rem);
  margin-inline: auto;
  /* Title sits on the physical LEFT, above the panel (was pushed right). */
  padding-inline-end: 0;
  box-sizing: border-box;
  text-align: left;
  direction: rtl;
}
.ethar-ab-chairman__title-line {
  display: block;
  margin: 0;
  color: #070d18;
  font-size: 50px !important;
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0;
}
.ethar-ab-chairman__stage {
  position: relative;
  width: min(calc(100% - 18.4vw), 137.5rem);
  margin: clamp(3rem, 4.8vw, 8rem) auto 0;
}
.ethar-ab-chairman__panel {
  position: relative;
  /* Sit flush on the physical LEFT: the photo-wrap is absolutely pinned to the
   * physical right (`right:0`), so the panel must take the left. A physical
   * `margin-right:auto` does this in BOTH directions (RTL over-constrained
   * margins would otherwise force the panel flush-right, hiding it entirely
   * behind the photo — the "chairman card not visible" bug). Width is a touch
   * over half so the photo bleeds in over the panel's right padding, matching
   * the designer concept's overlap. z-index keeps the card body above nothing
   * but documents intent: only its padded right edge tucks under the photo. */
  width: min(52%, 68rem);
  margin-right: auto;
  z-index: 1;
  box-sizing: border-box;
  padding-block: clamp(6rem, 6.2vw, 10.35rem) clamp(4rem, 5.4vw, 9rem);
  padding-inline: clamp(3.75rem, 4vw, 6.7rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  direction: rtl;
  text-align: right;
  /* Kept the navy→cocoa warmth but darkened the lower stops: the old gradient
   * faded to light tan (#93654c), so the white message text lost contrast at the
   * bottom and read as unreadable. Now it stays dark enough for white throughout. */
  background: linear-gradient(
    180deg,
    #090e1a 0%,
    #1a151f 28%,
    #2a201c 58%,
    #382923 84%,
    #453026 100%
  );
}
/* Large decorative quotation marks at the top-left and bottom-right corners of
 * the message panel (per client request). */
.ethar-ab-chairman__panel::before,
.ethar-ab-chairman__panel::after {
  position: absolute;
  z-index: 2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 7vw, 8rem);
  line-height: 1;
  color: color-mix(in srgb, var(--ethar-ab-gold) 60%, transparent);
  pointer-events: none;
}
.ethar-ab-chairman__panel::before {
  content: "\201C";
  top: clamp(0.4rem, 1.4vw, 1.4rem);
  left: clamp(0.75rem, 1.8vw, 2rem);
}
.ethar-ab-chairman__panel::after {
  content: "\201D";
  bottom: clamp(-0.4rem, 0.6vw, 0.6rem);
  right: clamp(0.75rem, 1.8vw, 2rem);
}
.ethar-ab-chairman__photo-wrap {
  position: absolute;
  right: 0;
  top: calc(-1 * clamp(3rem, 4vw, 6.7rem));
  width: 50%;
  height: 100%;
  /* Cap height so a longer/larger message can't drag the height:100% photo into
     an oversized portrait crop (the "chairman photo too big" regression). */
  max-height: min(84vh, 48rem);
  display: block;
  overflow: hidden;
  background: #090e1a;
  /* Sharp corners — !important to beat the xwui-image component's own radius. */
  border-radius: 0 !important;
}
.ethar-ab-chairman__photo-wrap xwui-image,
.ethar-ab-chairman__photo {
  display: block;
  width: 100%;
  height: 100% !important;
  border-radius: 0 !important;
}
.ethar-ab-chairman__photo .xwui-image-container,
.ethar-ab-chairman__photo .xwui-image-wrapper,
.ethar-ab-chairman__photo .xwui-image,
.ethar-ab-chairman__photo .xwui-image-loaded {
  display: block;
  width: 100%;
  height: 100% !important;
  border-radius: 0 !important;
}
.ethar-ab-chairman__photo .xwui-image,
.ethar-ab-chairman__photo .xwui-image-loaded {
  object-fit: cover !important;
  object-position: center;
}
.ethar-ab-chairman__message {
  margin: 0 0 clamp(1.1rem, 1.5vw, 1.9rem);
  color: #fff;
  /* Without !important, xwui-typography-body wins the cascade and pins this to
     the base size — the quote read tiny. Keep it readable but not so large that
     the height:100% photo beside it grows into an oversized portrait crop. */
  font-size: clamp(1.25rem, 1.2vw, 1.6rem) !important;
  font-weight: var(--font-weight-normal, 400);
  line-height: 1.95;
  letter-spacing: 0;
  /* Justify the message body (align by width) on every screen. */
  text-align: justify !important;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.35);
}
.ethar-ab-chairman__message--final {
  margin-bottom: calc(clamp(1.1rem, 1.5vw, 1.9rem) + 15px) !important;
}
.ethar-ab-chairman__name {
  margin: 20px 0 0 !important;
  color: #fff;
  font-size: clamp(1.8rem, 1.85vw, 2.8rem);
  font-weight: var(--font-weight-semibold, 600);
  line-height: 1.3;
  letter-spacing: 0;
}
.ethar-ab-chairman__role {
  margin: clamp(0.4rem, 0.7vw, 0.9rem) 0 0;
  color: color-mix(in srgb, #fff 82%, transparent);
  font-size: clamp(1.35rem, 1.4vw, 2rem);
  font-weight: var(--font-weight-medium, 500);
  line-height: 1.3;
  letter-spacing: 0;
}

@media (max-width: 60rem) {
  .ethar-ab-intro__inner {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 7vw, 4rem);
  }
  .ethar-ab-intro__media {
    width: min(100%, 42rem);
    margin-inline: auto;
  }
  .ethar-ab-intro__copy,
  html[dir="ltr"] .ethar-ab-intro__copy {
    width: min(100%, 42rem);
    margin-inline: auto;
  }
  .ethar-ab-values-carousel {
    padding-block: 3rem 4.5rem;
  }
  .ethar-ab-vcar__title {
    font-size: 2.5rem !important;
    margin-bottom: 2rem;
  }
  .ethar-ab-vcar {
    gap: 0.9rem;
  }
  .ethar-ab-vm__card {
    grid-template-columns: minmax(8rem, 13rem) minmax(0, 1fr);
  }
  .ethar-ab-map {
    min-height: 0;
    padding-block: clamp(48px, 9vw, 78px);
  }
  .ethar-ab-map__inner {
    grid-template-columns: 1fr;
    gap: clamp(34px, 8vw, 64px);
  }
  .ethar-ab-map__copy {
    order: 1;
    justify-self: center;
    width: min(100%, 560px);
    min-height: 0;
    padding-block: 0;
  }
  .ethar-ab-map__visual {
    order: 2;
    justify-self: center;
    width: min(100%, 720px);
  }
  .ethar-ab-chairman {
    padding: clamp(3rem, 8vw, 5rem) var(--ethar-ab-edge);
    overflow: visible;
  }
  .ethar-ab-chairman__title {
    width: 100%;
    margin: 0 0 clamp(1.75rem, 5vw, 3rem);
    text-align: center;
    direction: inherit;
  }
  .ethar-ab-chairman__stage {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .ethar-ab-chairman__photo-wrap,
  .ethar-ab-chairman__panel {
    position: relative;
    inset: auto;
    width: 100%;
  }
  .ethar-ab-chairman__photo-wrap {
    order: 1;
    height: auto;
    aspect-ratio: 1500 / 863;
  }
  .ethar-ab-chairman__panel {
    order: 2;
    min-height: 0;
    margin: 0;
    padding: 40px !important;
    text-align: right;
    overflow-wrap: anywhere;
  }
  html[dir="ltr"] .ethar-ab-chairman__panel {
    direction: ltr;
    text-align: left;
  }
  .ethar-ab-chairman__message,
  .ethar-ab-chairman__name,
  .ethar-ab-chairman__role {
    max-width: 100%;
    text-wrap: pretty;
  }
}

@media (max-width: 45rem) {
  .ethar-ab {
    --ethar-ab-edge: var(--space-4, 1rem);
  }
  .ethar-ab-hero {
    min-height: 0 !important;
    background-position: center;
  }
  .ethar-ab-hero__media,
  .ethar-ab-hero__img .xwui-image-wrapper {
    line-height: 0;
  }
  .ethar-ab-hero__img,
  .ethar-ab-hero__img .xwui-image-container,
  .ethar-ab-hero__img .xwui-image-wrapper {
    background: transparent !important;
  }
  .ethar-ab-hero__xwui .xwui-hero__inner {
    display: flex;
  }
  .ethar-ab-hero__xwui .xwui-hero__title {
    max-width: none;
    font-size: clamp(3.25rem, 14vw, 4.75rem);
  }
  .ethar-ab-hero__xwui .xwui-hero__subtitle {
    font-size: clamp(1.1rem, 5vw, 1.45rem);
  }
  .ethar-ab-hero__xwui {
    padding-block-end: clamp(3.5rem, 14vw, 5.5rem);
    padding-inline: clamp(1.25rem, 6vw, 2.5rem) clamp(1rem, 4vw, 1.5rem);
  }
  .ethar-ab-intro {
    padding: clamp(2.25rem, 8vw, 3.25rem) var(--ethar-ab-edge) clamp(3rem, 10vw, 4.5rem);
  }
  .ethar-ab-intro__inner {
    gap: clamp(1.75rem, 7vw, 2.75rem);
  }
  .ethar-ab-intro__media {
    width: min(100%, 30rem);
  }
  .ethar-ab-intro__image .xwui-image-container {
    aspect-ratio: 4 / 3;
  }
  .ethar-ab-intro__copy,
  html[dir="ltr"] .ethar-ab-intro__copy {
    gap: clamp(0.9rem, 4vw, 1.35rem);
    align-items: stretch;
  }
  html[dir="rtl"] .ethar-ab-intro__copy {
    text-align: right;
  }
  html[dir="ltr"] .ethar-ab-intro__copy {
    text-align: left;
  }
  .ethar-ab-intro__title {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 3.4rem);
    line-height: 1.12;
  }
  .ethar-ab-intro__title--bottom {
    margin-block-end: clamp(0.5rem, 3vw, 1rem);
  }
  .ethar-ab-intro__lead {
    margin: 0;
    font-size: clamp(1.2rem, 6vw, 1.85rem) !important;
    line-height: 1.45;
  }
  .ethar-ab-intro__body {
    max-width: none;
    margin-bottom: clamp(1.25rem, 5vw, 2rem);
    font-size: clamp(1rem, 4.3vw, 1.22rem) !important;
    line-height: 1.85;
  }
  .ethar-ab-values-carousel {
    --ethar-ab-vcar-gap: 0.8rem;
    --ethar-ab-vcard-w: clamp(9.5rem, 45vw, 10.5rem);
    padding: 2.5rem var(--ethar-ab-edge) 3.5rem;
  }
  .ethar-ab-vcar__title {
    width: 100%;
    margin-bottom: 1.5rem;
    font-size: 2.15rem !important;
    line-height: 1.16 !important;
  }
  .ethar-ab-vcar {
    width: 100%;
    gap: 0.55rem;
  }
  .ethar-ab-vcar__strip {
    padding-block: 0.65rem;
  }
  .ethar-ab-vcard {
    padding: 1.1rem 0.8rem;
    gap: 0.75rem;
  }
  .ethar-ab-vcard .xwui-card-body {
    gap: 0.75rem;
  }
  .ethar-ab-vcard__icon {
    width: 3.25rem;
    height: 3.25rem;
  }
  .ethar-ab-vcard .ethar-ab-vcard__label {
    font-size: 1rem !important;
  }
  .ethar-ab-vcar [data-value-card].is-active .ethar-ab-vcard,
  .ethar-ab-vcard.is-active {
    outline-offset: 0.25rem;
  }
  .xwui-button.ethar-ab-vcar__arrow {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
  }
  .ethar-ab-vcar__desc {
    width: 100%;
    margin-top: 1.6rem;
  }
  .ethar-ab-vcar__desc-title {
    font-size: 1.5rem !important;
  }
  .ethar-ab-vcar__desc-body {
    font-size: 1rem !important;
    line-height: 1.7 !important;
  }
  .ethar-ab-vm {
    gap: var(--space-5, 1.25rem);
    padding-block: var(--space-5, 1.25rem) var(--space-10, 2.5rem);
  }
  .ethar-ab-vm__card {
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: var(--space-5, 1.25rem);
    padding: var(--space-8, 2rem) var(--space-5, 1.25rem);
  }
  .ethar-ab-vm__card > xwui-image {
    width: 100% !important;
    display: grid !important;
    place-items: center !important;
    justify-self: center !important;
    margin-inline: auto !important;
  }
  .ethar-ab-vm__icon {
    width: clamp(7.5rem, 36vw, 11.5rem);
    justify-self: center !important;
    align-self: center !important;
    margin-inline: auto !important;
  }
  .ethar-ab-vm__icon.xwui-image-container,
  .xwui-image-container.ethar-ab-vm__icon,
  .xwui-box.xwui-image-container.ethar-ab-vm__icon {
    display: grid !important;
    place-items: center !important;
    justify-self: center !important;
    margin-inline: auto !important;
  }
  .ethar-ab-vm__icon .xwui-image-container,
  .ethar-ab-vm__icon .xwui-image-wrapper,
  .ethar-ab-vm__icon img,
  .ethar-ab-vm__icon .xwui-image,
  .ethar-ab-vm__icon .xwui-image-loaded {
    margin-inline: auto !important;
  }
  .ethar-ab-vm__copy,
  html[dir="ltr"] .ethar-ab-vm__copy {
    align-items: center;
    text-align: center;
  }
  .ethar-ab-vm__title {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }
  .ethar-ab-vm__body {
    font-size: clamp(1.1rem, 4.4vw, 1.45rem) !important;
    line-height: 1.9;
  }
  .ethar-ab-map__title {
    font-size: clamp(42px, 14vw, 60px) !important;
    margin-bottom: 24px !important;
  }
  .ethar-ab-map__body {
    font-size: clamp(19px, 6.2vw, 25px) !important;
    line-height: 1.75 !important;
  }
  .ethar-ab-map__pin {
    width: 21px !important;
    height: 21px !important;
  }
  .ethar-ab-map__pin::before,
  .ethar-ab-map__pin::after {
    width: 12px;
    height: 12px;
  }
  .ethar-ab-chairman__title-line {
    font-size: clamp(2.35rem, 11vw, 3.75rem) !important;
    line-height: 1.16;
  }
  .ethar-ab-chairman__name {
    margin-top: 20px !important;
    font-size: clamp(1.7rem, 6.4vw, 2.25rem);
    line-height: 1.35;
  }
  .ethar-ab-chairman__role {
    font-size: clamp(1.35rem, 5.2vw, 1.75rem);
    line-height: 1.35;
  }
  .ethar-ab-chairman__message {
    margin-bottom: clamp(1rem, 4vw, 1.4rem);
    /* Was 0.98rem (smaller than the base) — bumped up so the message reads
     * comfortably on phones, per client. !important so xwui-typography-body
     * can't pull it back down to the base size. */
    font-size: 18px !important;
    line-height: 1.3 !important;
  }
  .ethar-ab-chairman__panel p,
  .ethar-ab-chairman__panel .xwui-typography {
    font-size: 18px !important;
    line-height: 1.3 !important;
  }
  .ethar-ab-chairman__message--final {
    margin-bottom: calc(clamp(1rem, 4vw, 1.4rem) + 15px) !important;
  }
}
