:root {
  --teal: #164275;
  --teal-900: #08233f;
  --teal-800: #0f355f;
  --gold: #ddb174;
  --gold-strong: #c8944d;
  --navy: #071827;
  --ink: #13263a;
  --muted: #65758a;
  --line: rgba(22, 66, 117, 0.12);
  --white: #ffffff;
  --ivory: #fbf8f1;
  --beige: #f2eadc;
  --glass: rgba(255, 255, 255, 0.78);
  --shadow: 0 22px 70px rgba(7, 24, 39, 0.14);
  --shadow-soft: 0 16px 45px rgba(22, 66, 117, 0.1);
  --radius-sm: 8px;
  --radius: 8px;
  --radius-lg: 8px;
  --container: 1180px;
  --font-ar: "Noto Kufi Arabic", "Tahoma", sans-serif;
  --font-display: "Fraunces", "Noto Kufi Arabic", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    repeating-linear-gradient(135deg, rgba(22, 66, 117, 0.028) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, #fffdf8 0%, #f8f4ec 48%, #ffffff 100%);
  font-family: var(--font-ar);
  line-height: 1.72;
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(22, 66, 117, 0.06), transparent 34%),
    linear-gradient(295deg, rgba(221, 177, 116, 0.11), transparent 40%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  z-index: 2000;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  box-shadow: 0 0 18px rgba(221, 177, 116, 0.55);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 126px) 0;
}

.section-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: padding 0.28s ease, transform 0.28s ease;
}

.site-header.is-scrolled {
  padding: 8px 0;
}

.navbar {
  width: min(100% - 28px, 1160px);
  min-height: 72px;
  margin-inline: auto;
  padding: 9px 10px 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.7)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(7, 24, 39, 0.1);
  backdrop-filter: blur(22px);
  transition: min-height 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.site-header.is-scrolled .navbar {
  min-height: 62px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 48px rgba(7, 24, 39, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-inline-end: 8px;
  min-width: max-content;
}

.brand-name-only {
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(221, 177, 116, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.brand-name-only strong {
  color: var(--teal);
  font-size: clamp(0.86rem, 1.04vw, 1rem);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(221, 177, 116, 0.6);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(221, 177, 116, 0.2), rgba(255, 255, 255, 0.9)),
    var(--white);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.72);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.brand-copy {
  display: grid;
  line-height: 1.18;
  max-width: 185px;
}

.brand-copy strong {
  color: var(--teal);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 800;
  white-space: normal;
}

.brand-copy small {
  color: var(--gold-strong);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 10px;
  border: 0;
  border-radius: 999px;
  color: rgba(19, 38, 58, 0.82);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 11px;
  bottom: 4px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 999px;
  background: var(--gold);
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--teal);
  background: rgba(22, 66, 117, 0.045);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-more {
  position: relative;
}

.more-toggle i {
  color: var(--gold-strong);
  font-size: 0.68rem;
  transition: transform 0.22s ease;
}

.nav-more.is-open .more-toggle i,
.nav-more:hover .more-toggle i {
  transform: rotate(180deg);
}

.more-menu {
  position: absolute;
  top: calc(100% + 14px);
  inset-inline-end: 0;
  z-index: 20;
  min-width: 250px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 70px rgba(7, 24, 39, 0.16);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transform-origin: top;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.more-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  inset-inline-end: 28px;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  border-inline-start: 1px solid rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.94);
}

.nav-more:hover .more-menu,
.nav-more.is-open .more-menu,
.nav-more:focus-within .more-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.more-menu .more-link {
  width: 100%;
  justify-content: flex-start;
  min-height: 44px;
  padding-inline: 14px;
}

.nav-more.has-active > .more-toggle {
  color: var(--teal);
  background: rgba(22, 66, 117, 0.045);
}

.nav-more.has-active > .more-toggle::after {
  transform: scaleX(1);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-inline-start: 12px;
  border-inline-start: 1px solid rgba(22, 66, 117, 0.1);
}

.language-toggle {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2px;
  min-width: 102px;
  padding: 4px;
  border: 1px solid rgba(22, 66, 117, 0.12);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.language-toggle:hover {
  border-color: rgba(221, 177, 116, 0.48);
  box-shadow: 0 10px 26px rgba(22, 66, 117, 0.08);
}

.lang-option {
  position: relative;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
  transition: color 0.25s ease, background 0.25s ease;
}

.lang-option.active {
  color: var(--navy);
  background: linear-gradient(135deg, rgba(221, 177, 116, 0.4), rgba(221, 177, 116, 0.18));
}

.nav-cta {
  position: relative;
  isolation: isolate;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  overflow: hidden;
  border: 1px solid rgba(22, 66, 117, 0.1);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-900));
  box-shadow: 0 14px 30px rgba(22, 66, 117, 0.2);
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(22, 66, 117, 0.26);
}

.nav-toggle {
  position: relative;
  isolation: isolate;
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(221, 177, 116, 0.44);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(145deg, var(--teal), var(--teal-900));
  box-shadow: 0 16px 34px rgba(7, 24, 39, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nav-toggle::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: -1;
  border: 1px solid rgba(221, 177, 116, 0.32);
  border-radius: 50%;
  opacity: 0.75;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle::after {
  content: "";
  position: absolute;
  inset: -35% auto -35% -60%;
  width: 42%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transition: left 0.5s ease;
}

.nav-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(221, 177, 116, 0.72);
  box-shadow: 0 20px 42px rgba(7, 24, 39, 0.23), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.nav-toggle:hover::after {
  left: 115%;
}

.nav-toggle.is-open {
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.2), transparent 32%),
    linear-gradient(145deg, var(--gold-strong), var(--teal));
}

.nav-toggle.is-open::before {
  transform: scale(1.18);
  opacity: 0.35;
}

.nav-toggle span {
  position: relative;
  z-index: 1;
  width: 19px;
  height: 2px;
  display: block;
  margin: 3.2px auto;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
}

.nav-toggle span:nth-child(2) {
  width: 15px;
}

.nav-toggle:hover span:nth-child(2),
.nav-toggle.is-open span:nth-child(2) {
  width: 19px;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 100px);
  display: grid;
  align-items: center;
  padding-top: clamp(74px, 8vw, 118px);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.97) 0%, rgba(255, 253, 248, 0.88) 48%, rgba(255, 253, 248, 0.58) 100%),
    linear-gradient(135deg, rgba(22, 66, 117, 0.1), rgba(221, 177, 116, 0.1)),
    url("https://images.unsplash.com/photo-1559757175-5700dde675bc?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(22, 66, 117, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 66, 117, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #fffdf8);
}

.focus-strip-section {
  position: relative;
  z-index: 4;
  margin-top: -42px;
}

.focus-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(22, 66, 117, 0.1);
  box-shadow: 0 24px 70px rgba(7, 24, 39, 0.13);
  backdrop-filter: blur(20px);
}

.focus-strip article {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease;
}

.focus-strip article:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.96);
}

.focus-strip i {
  color: var(--gold-strong);
  font-size: 1.08rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-strong);
  font-size: 0.85rem;
  font-weight: 800;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.hero h1,
.section-heading h2,
.section-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 4.2vw, 3.85rem);
  font-weight: 760;
  line-height: 1.08;
}

.hero h1 {
  max-width: 820px;
}

[dir="ltr"] .hero h1 {
  max-width: 900px;
}

.hero p,
.section-copy > p,
.featured-editorial p,
.final-cta p {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.85;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-900));
  box-shadow: 0 14px 34px rgba(22, 66, 117, 0.25);
}

.btn-secondary {
  color: var(--teal);
  border-color: rgba(22, 66, 117, 0.16);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.btn-youtube {
  color: var(--white);
  background: #c81d25;
  box-shadow: 0 14px 34px rgba(200, 29, 37, 0.22);
}

.btn-small {
  min-height: 44px;
  padding: 8px 18px;
  color: var(--teal);
  background: rgba(221, 177, 116, 0.18);
}

.btn-primary.btn-small {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-900));
  box-shadow: 0 12px 28px rgba(22, 66, 117, 0.22);
}

.shine::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  z-index: -1;
  width: 44%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transition: left 0.6s ease;
}

[dir="rtl"] .shine::before {
  left: auto;
  right: -60%;
}

.shine:hover::before {
  left: 122%;
}

[dir="rtl"] .shine:hover::before {
  left: auto;
  right: 122%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 690px);
  margin-top: 38px;
}

.trust-strip div {
  position: relative;
  min-height: 96px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.trust-strip div::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), rgba(221, 177, 116, 0));
}

.trust-strip div:hover {
  transform: translateY(-6px);
  border-color: rgba(221, 177, 116, 0.45);
  background: rgba(255, 255, 255, 0.9);
}

.trust-strip strong {
  display: block;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: clamp(1.36rem, 2.2vw, 1.86rem);
  line-height: 1;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(100%, 680px);
  margin-top: 18px;
}

.hero-signature span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 12px;
  border: 1px solid rgba(22, 66, 117, 0.1);
  border-radius: 999px;
  color: var(--teal-800);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 26px rgba(7, 24, 39, 0.06);
  backdrop-filter: blur(10px);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.portrait-frame {
  position: relative;
  width: min(100%, 465px);
  aspect-ratio: 0.82;
  padding: 12px;
  border: 1px solid rgba(221, 177, 116, 0.72);
  border-radius: 44% 56% 44% 56% / 56% 44% 56% 44%;
  background:
    linear-gradient(145deg, rgba(221, 177, 116, 0.55), rgba(255, 255, 255, 0.7)),
    rgba(255, 255, 255, 0.42);
  box-shadow: 0 28px 90px rgba(22, 66, 117, 0.24), 0 0 0 12px rgba(221, 177, 116, 0.08);
  transform: translate3d(0, 0, 0);
  animation: floatPortrait 5.8s ease-in-out infinite;
  transition: transform 0.35s ease;
}

.portrait-frame::before,
.portrait-frame::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
}

.portrait-frame::before {
  width: 150px;
  height: 150px;
  inset-inline-start: -30px;
  top: 42px;
  border: 1px solid rgba(221, 177, 116, 0.55);
}

.portrait-frame::after {
  width: 120px;
  height: 120px;
  inset-inline-end: -18px;
  bottom: 38px;
  background: rgba(22, 66, 117, 0.1);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(22, 66, 117, 0.13), rgba(221, 177, 116, 0.16)),
    var(--beige);
  filter: saturate(1.02) contrast(1.02);
}

.portrait-halo {
  position: absolute;
  inset: 7%;
  z-index: -1;
  border-radius: inherit;
  filter: blur(34px);
  background: rgba(221, 177, 116, 0.36);
}

.portrait-badge {
  position: absolute;
  inset-inline-start: -18px;
  bottom: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(221, 177, 116, 0.36);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.portrait-badge i {
  color: var(--gold-strong);
}

.visual-card {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  color: var(--teal);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  font-size: 0.86rem;
  font-weight: 800;
  animation: floatLabel 6.4s ease-in-out infinite;
}

.visual-card i {
  color: var(--gold-strong);
}

.visual-card-one {
  top: 15%;
  inset-inline-start: 0;
}

.visual-card-two {
  bottom: 16%;
  inset-inline-end: 0;
  animation-delay: -2.6s;
}

.hero-bg-line {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(22, 66, 117, 0.08);
  border-radius: 999px;
}

.line-one {
  width: 44vw;
  height: 44vw;
  top: 12%;
  inset-inline-start: -18vw;
}

.line-two {
  width: 28vw;
  height: 28vw;
  right: auto;
  bottom: 8%;
  inset-inline-end: -10vw;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}

.image-stack {
  position: relative;
}

.image-stack img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  background: var(--beige);
  box-shadow: var(--shadow);
}

.image-stack::before {
  content: "";
  position: absolute;
  inset: 24px -18px -18px 24px;
  z-index: -1;
  border: 1px solid rgba(221, 177, 116, 0.62);
  border-radius: var(--radius-lg);
}

[dir="rtl"] .image-stack::before {
  inset: 24px 24px -18px -18px;
}

.experience-note {
  position: absolute;
  inset-inline-end: -12px;
  bottom: 28px;
  width: min(78%, 265px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.experience-note strong {
  color: var(--teal);
  font-size: 2rem;
  line-height: 1;
}

.experience-note span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  position: relative;
  max-width: 720px;
  margin-bottom: 34px;
  padding-inline-start: 22px;
}

.section-heading::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), rgba(221, 177, 116, 0));
}

.section-heading h2,
.section-copy h2,
.final-cta h2 {
  font-size: clamp(1.45rem, 2.55vw, 2.35rem);
  line-height: 1.22;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.about-section::after,
.courses-section::after,
.gallery-section::after {
  content: "";
  position: absolute;
  inset-inline: max(16px, calc((100% - var(--container)) / 2));
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(221, 177, 116, 0.6), transparent);
}

.about-section,
.centers-section,
.courses-section,
.gallery-section {
  isolation: isolate;
}

.about-section::before,
.centers-section::before,
.courses-section::before,
.gallery-section::before {
  content: "";
  position: absolute;
  inset: 8% auto auto max(18px, calc((100% - var(--container)) / 2));
  z-index: -1;
  width: 160px;
  height: 220px;
  opacity: 0.13;
  background:
    linear-gradient(90deg, var(--teal) 1px, transparent 1px),
    linear-gradient(var(--teal) 1px, transparent 1px);
  background-size: 22px 22px;
  transform: rotate(-8deg);
}

[dir="rtl"] .about-section::before,
[dir="rtl"] .centers-section::before,
[dir="rtl"] .courses-section::before,
[dir="rtl"] .gallery-section::before {
  inset: 8% max(18px, calc((100% - var(--container)) / 2)) auto auto;
  transform: rotate(8deg);
}

.mini-card,
.stat-card,
.initiative-card,
.program-card,
.media-card,
.contact-card,
.testimonial-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.mini-card {
  position: relative;
  padding: 20px;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.mini-card::after,
.stat-card::after,
.initiative-card::before,
.program-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 45%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mini-card:hover {
  transform: translateY(-5px);
  border-color: rgba(221, 177, 116, 0.48);
  background: rgba(255, 255, 255, 0.95);
}

.mini-card:hover::after,
.stat-card:hover::after,
.initiative-card:hover::before,
.program-card:hover::after,
.contact-card:hover::after {
  opacity: 1;
}

.mini-card i,
.stat-card i,
.media-card i,
.contact-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  color: var(--gold-strong);
  background: rgba(221, 177, 116, 0.16);
}

.mini-card h3,
.initiative-card h3,
.program-card h3,
.media-card h3,
.contact-card h3 {
  margin: 0;
  color: var(--teal-900);
  font-size: 0.98rem;
  line-height: 1.55;
}

.mini-card p,
.initiative-card p,
.program-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.achievements-section,
.media-section,
.footer {
  background:
    repeating-linear-gradient(90deg, rgba(22, 66, 117, 0.022) 0 1px, transparent 1px 56px),
    linear-gradient(135deg, rgba(22, 66, 117, 0.04), rgba(221, 177, 116, 0.1)),
    var(--ivory);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  position: relative;
  min-height: 216px;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset-inline: 24px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(221, 177, 116, 0));
}

.stat-card:hover,
.initiative-card:hover,
.program-card:hover,
.media-card:hover,
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 65px rgba(7, 24, 39, 0.15);
}

.stat-card.is-tilting,
.initiative-card.is-tilting,
.program-card.is-tilting {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-6px);
}

.stat-card strong {
  display: block;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  line-height: 1.2;
}

.stat-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.initiative-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.initiative-card {
  position: relative;
  min-height: 420px;
  padding: 26px;
  overflow: hidden;
  border-radius: var(--radius);
  transform-style: preserve-3d;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.initiative-card::after {
  content: "";
  position: absolute;
  inset-inline: 26px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0.15);
  opacity: 0.45;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.initiative-card:hover {
  border-color: rgba(221, 177, 116, 0.5);
  transform: perspective(900px) rotateX(2deg) translateY(-9px);
}

.initiative-card:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.initiative-logo {
  width: 112px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 24px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--ivory);
}

.initiative-logo.logo-inclusion {
  object-fit: cover;
  object-position: center bottom;
}

.initiative-logo.logo-cdc {
  background: var(--white);
}

.card-icon {
  position: absolute;
  top: 32px;
  inset-inline-end: 28px;
  color: rgba(22, 66, 117, 0.18);
  font-size: 2.6rem;
}

.text-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--teal);
  font-weight: 800;
}

.text-btn i {
  color: var(--gold-strong);
  transition: transform 0.22s ease;
}

.text-btn:hover i {
  transform: translateX(-5px);
}

[dir="ltr"] .text-btn:hover i {
  transform: translateX(5px);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.program-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-card:nth-child(2) {
  transform: translateY(26px);
}

.program-card:nth-child(2):hover {
  transform: translateY(18px);
}

.program-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.program-card:hover::before {
  transform: scaleX(1);
}

.program-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(22, 66, 117, 0.12), rgba(221, 177, 116, 0.16)),
    var(--beige);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.program-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.program-body {
  padding: 22px;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(221, 177, 116, 0.2);
  font-size: 0.74rem;
  font-weight: 800;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 18px;
}

.featured-editorial {
  position: relative;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 24px;
  padding: clamp(18px, 2.4vw, 26px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 35, 63, 0.94), rgba(22, 66, 117, 0.82)),
    url("https://images.unsplash.com/photo-1495020689067-958852a7765e?auto=format&fit=crop&w=1200&q=85") center/cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.featured-editorial::after {
  content: "";
  position: absolute;
  inset-inline: 42px;
  bottom: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(221, 177, 116, 0.74), transparent);
}

.video-feature {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(221, 177, 116, 0.32);
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  background: var(--navy);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
}

.video-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.video-feature iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 24, 39, 0.58));
}

.video-feature:hover img {
  transform: scale(1.045);
  filter: saturate(1.1) contrast(1.05);
}

.video-feature-embed::after {
  display: none;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, background 0.25s ease;
}

[dir="rtl"] .play-button i {
  transform: translateX(-1px);
}

.video-feature:hover .play-button {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold);
}

.featured-copy {
  position: relative;
  z-index: 1;
}

.subpage-hero {
  position: relative;
  min-height: 66vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 22%, rgba(221, 177, 116, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.82)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset-inline-start: max(18px, calc((100% - var(--container)) / 2));
  top: 23%;
  width: 118px;
  height: 180px;
  border-inline-start: 1px solid rgba(221, 177, 116, 0.55);
  border-top: 1px solid rgba(221, 177, 116, 0.35);
  pointer-events: none;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset-inline-end: -110px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(22, 66, 117, 0.06);
  pointer-events: none;
}

.centers-page-hero {
  background:
    radial-gradient(circle at 14% 22%, rgba(221, 177, 116, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.8)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.gallery-page-hero {
  background:
    radial-gradient(circle at 14% 22%, rgba(221, 177, 116, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.8)),
    url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.subpage-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.62fr);
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
}

.subpage-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: clamp(1.62rem, 3.15vw, 2.9rem);
  line-height: 1.18;
  text-wrap: balance;
}

.subpage-hero p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.12vw, 1.04rem);
  line-height: 1.9;
}

.subpage-portrait {
  position: relative;
  width: min(100%, 340px);
  margin-inline: auto;
  padding: 8px;
  border: 1px solid rgba(221, 177, 116, 0.62);
  border-radius: calc(var(--radius) + 10px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 70px rgba(7, 24, 39, 0.16);
}

.subpage-portrait img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  object-position: center top;
  border-radius: calc(var(--radius) + 6px);
}

.gallery-page-hero .subpage-portrait img {
  object-position: 28% top;
}

.interview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.interview-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(221, 177, 116, 0.22);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(251, 248, 241, 0.82)),
    var(--white);
  box-shadow: 0 18px 54px rgba(7, 24, 39, 0.08);
}

.video-embed-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.featured-interview {
  grid-column: span 2;
}

.video-embed {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(221, 177, 116, 0.36);
  border-radius: calc(var(--radius) + 4px);
  aspect-ratio: 16 / 9;
  background: var(--navy);
  box-shadow: 0 18px 45px rgba(7, 24, 39, 0.16);
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.media-subheading {
  margin-top: clamp(48px, 7vw, 82px);
}

.external-interview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.interview-card h3,
.center-profile h2 {
  margin: 0;
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
}

.interview-card p,
.center-profile p {
  color: var(--muted);
  font-size: 0.94rem;
}

.audio-tile {
  min-height: 220px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-900));
}

.audio-tile i {
  font-size: 3.2rem;
}

.spotify-tile {
  background: linear-gradient(135deg, #1db954, #0b5f32);
}

.facebook-tile {
  background: linear-gradient(135deg, #1877f2, #164275);
}

.mcd-tile {
  background: linear-gradient(135deg, #164275, #071827 62%, #ddb174);
}

.upcoming-panel {
  margin-top: 22px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(221, 177, 116, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(22, 66, 117, 0.06), rgba(221, 177, 116, 0.1));
}

.upcoming-panel h2 {
  margin: 0 0 18px;
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
}

.upcoming-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.upcoming-list span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.logo-cluster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.logo-cluster img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  padding: 20px;
  border: 1px solid rgba(221, 177, 116, 0.28);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(251, 248, 241, 0.82)),
    var(--white);
  box-shadow: 0 20px 58px rgba(7, 24, 39, 0.11);
}

.logo-cluster img:nth-child(2) {
  transform: translateY(34px);
}

.center-directory {
  display: grid;
  gap: 18px;
}

.center-profile {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(221, 177, 116, 0.24);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(251, 248, 241, 0.82)),
    var(--white);
  box-shadow: 0 20px 60px rgba(7, 24, 39, 0.09);
}

.center-logo-wrap {
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgba(22, 66, 117, 0.08);
  border-radius: calc(var(--radius) + 4px);
  background: var(--white);
}

.center-logo-wrap img {
  width: 100%;
  height: 100%;
  max-height: 180px;
  object-fit: contain;
}

.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.training-hero-card {
  position: relative;
  overflow: hidden;
  align-self: center;
  max-width: 430px;
  min-height: 0;
  aspect-ratio: 1.05;
  margin-inline: auto;
  padding: 10px;
  border: 1px solid rgba(221, 177, 116, 0.46);
  border-radius: calc(var(--radius) + 14px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(251, 248, 241, 0.78)),
    var(--white);
  box-shadow: 0 30px 86px rgba(7, 24, 39, 0.16);
}

.training-hero-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 26px;
  top: 26px;
  z-index: 2;
  width: 74px;
  height: 74px;
  border-inline-start: 2px solid rgba(221, 177, 116, 0.9);
  border-top: 2px solid rgba(221, 177, 116, 0.68);
  border-radius: 10px 0 0 0;
  pointer-events: none;
}

.training-hero-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius) + 10px);
  background: linear-gradient(180deg, transparent 48%, rgba(7, 24, 39, 0.7));
  pointer-events: none;
}

.training-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  border-radius: calc(var(--radius) + 10px);
}

.course-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.course-topic-card {
  position: relative;
  min-height: 245px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(221, 177, 116, 0.22);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(250, 246, 239, 0.86)),
    var(--white);
  box-shadow: 0 18px 52px rgba(7, 24, 39, 0.08);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.course-topic-card::after {
  content: "";
  position: absolute;
  inset-inline: 24px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--gold), rgba(22, 66, 117, 0));
  transform: scaleX(0.18);
  transform-origin: right;
  opacity: 0.55;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

[dir="ltr"] .course-topic-card::after {
  transform-origin: left;
}

.course-topic-card:hover {
  border-color: rgba(221, 177, 116, 0.5);
  box-shadow: var(--shadow-strong);
  transform: translateY(-6px);
}

.course-topic-card:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.course-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.course-topic-card i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: rgba(221, 177, 116, 0.18);
}

.program-index {
  color: rgba(22, 66, 117, 0.16);
  font-family: var(--font-display);
  font-size: 2.65rem;
  font-weight: 760;
  line-height: 1;
}

.course-category {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--gold-strong);
  background: rgba(221, 177, 116, 0.14);
  font-size: 0.72rem;
  font-weight: 800;
}

.course-topic-card h3 {
  margin: 0;
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  line-height: 1.28;
}

.course-topic-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.training-contact-strip {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: clamp(34px, 6vw, 62px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(221, 177, 116, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(22, 66, 117, 0.08), rgba(221, 177, 116, 0.14)),
    var(--ivory);
}

.training-contact-strip h2 {
  max-width: 760px;
  margin: 0;
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.3vw, 2rem);
}

.training-contact-strip .btn:not(.btn-secondary) {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-900));
  box-shadow: 0 16px 34px rgba(22, 66, 117, 0.22);
}

.gallery-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-archive-grid .gallery-item:nth-child(1) {
  grid-row: span 2;
}

.gallery-archive-grid .gallery-item:nth-child(4) {
  grid-column: span 2;
}

.featured-editorial h3 {
  max-width: 780px;
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.42rem, 2.25vw, 2.25rem);
  line-height: 1.32;
}

.featured-editorial p {
  color: rgba(255, 255, 255, 0.78);
}

.featured-editorial .btn {
  margin-top: 28px;
}

.editorial-list {
  display: grid;
  gap: 14px;
}

.media-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 126px;
  padding: 18px;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.media-card::after {
  content: "\f08e";
  position: absolute;
  inset-inline-end: 18px;
  bottom: 16px;
  color: rgba(22, 66, 117, 0.35);
  font-family: "Font Awesome 6 Free";
  font-size: 0.78rem;
  font-weight: 900;
  transition: color 0.22s ease, transform 0.22s ease;
}

a.media-card:hover::after {
  color: var(--gold-strong);
  transform: translateY(-2px);
}

[dir="rtl"] .media-card {
  grid-template-columns: 1fr 54px;
}

[dir="rtl"] .media-card i {
  order: 2;
}

.media-card i {
  margin: 0;
}

.media-card span {
  display: block;
  color: var(--gold-strong);
  font-size: 0.8rem;
  font-weight: 800;
}

.testimonials-section {
  background:
    repeating-linear-gradient(135deg, rgba(221, 177, 116, 0.045) 0 1px, transparent 1px 48px),
    var(--white);
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 14px;
}

.testimonial-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonial-track {
  display: flex;
  transition: transform 0.48s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 248, 241, 0.94)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1300&q=80") center/cover;
  background-blend-mode: screen;
}

.quote-icon {
  color: var(--gold);
  font-size: 2.1rem;
}

.testimonial-card p {
  width: min(100%, 820px);
  margin: 20px auto;
  color: var(--ink);
  font-size: clamp(0.96rem, 1.45vw, 1.08rem);
  line-height: 1.86;
}

.testimonial-card strong {
  display: block;
  color: var(--teal);
  font-size: 1.05rem;
}

.testimonial-card span {
  color: var(--muted);
  font-weight: 700;
}

.carousel-btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 66, 117, 0.12);
  border-radius: 50%;
  color: var(--teal);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.carousel-btn:hover {
  transform: translateY(-3px);
  background: var(--ivory);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(22, 66, 117, 0.22);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.carousel-dots button.active {
  width: 28px;
  background: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(190px, 18vw, 240px);
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--beige);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.45s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(8, 35, 63, 0.66));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item span {
  position: absolute;
  inset: auto 18px 18px auto;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--white);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

[dir="rtl"] .gallery-item span {
  inset: auto auto 18px 18px;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.04);
}

.gallery-item:hover::after,
.gallery-item:hover span {
  opacity: 1;
}

.gallery-item:hover span {
  transform: translateY(0);
}

.contact-section {
  padding-bottom: clamp(82px, 10vw, 140px);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 60px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 35, 63, 0.96), rgba(22, 66, 117, 0.92)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=85") center/cover;
  background-blend-mode: multiply;
  box-shadow: var(--shadow);
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(221, 177, 116, 0.32);
  border-radius: var(--radius);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .section-kicker {
  color: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-actions {
  position: fixed;
  inset-inline-end: 18px;
  bottom: 18px;
  z-index: 990;
  display: grid;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.floating-actions.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-actions a,
.floating-actions button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: var(--white);
  background: rgba(22, 66, 117, 0.92);
  box-shadow: 0 15px 35px rgba(7, 24, 39, 0.2);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease;
}

.floating-actions a:hover,
.floating-actions button:hover {
  transform: translateY(-4px);
  background: var(--gold-strong);
}

.contact-card a {
  color: var(--muted);
  font-weight: 700;
  word-break: break-word;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 340px;
  margin-top: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: rgba(221, 177, 116, 0.18);
  transition: transform 0.22s ease, background 0.22s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: rgba(221, 177, 116, 0.34);
}

.footer {
  position: relative;
  padding: 56px 0 0;
  border-top: 1px solid rgba(221, 177, 116, 0.18);
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(8, 35, 63, 0.98), rgba(7, 24, 39, 0.98)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80") center/cover;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(221, 177, 116, 0.12), transparent 42%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 48px);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 1.25fr) minmax(260px, 0.9fr) minmax(230px, 0.75fr) minmax(270px, 0.95fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: start;
}

.footer-intro,
.footer-links {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.footer p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.75;
}

.footer .brand-copy strong {
  color: var(--white);
}

.footer .brand-copy small {
  color: var(--gold);
}

.footer-brand-name-only {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-brand-name-only strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  font-weight: 760;
}

.footer .brand-mark {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.footer h3 {
  position: relative;
  margin: 0 0 10px;
  padding-bottom: 10px;
  color: var(--white);
  font-size: 0.94rem;
}

.footer h3::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.footer a:not(.brand) {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  margin: 5px 0;
  padding: 3px 6px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.footer a:not(.brand):hover {
  color: var(--gold);
  transform: translateX(-4px);
  background: rgba(255, 255, 255, 0.06);
}

[dir="ltr"] .footer a:not(.brand):hover {
  transform: translateX(4px);
}

.footer-links a i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  border-radius: var(--radius);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.footer-links a span {
  min-width: 0;
  overflow-wrap: normal;
}

.footer-contact-panel {
  padding: 16px;
  border: 1px solid rgba(221, 177, 116, 0.2);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
}

.footer-contact-copy {
  margin: 0 0 12px;
  font-size: 0.78rem;
  line-height: 1.65;
}

.footer-contact-list {
  display: grid;
  gap: 8px;
}

.footer-contact-list a {
  min-height: 42px;
  margin: 0;
  padding: 6px 8px;
  border: 1px solid rgba(221, 177, 116, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.footer-contact-list a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.footer-contact-list a i {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  font-size: 0.92rem;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.footer-bottom p {
  max-width: none;
  margin: 0;
  font-size: 0.92rem;
}


.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 24, 39, 0.86);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(100%, 1040px);
  max-height: 82vh;
  object-fit: contain;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  background: var(--beige);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  inset-inline-end: 24px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition: opacity 0.78s ease, transform 0.78s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes floatPortrait {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-16px) rotate(1deg);
  }
}

@keyframes floatLabel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1180px) {
  .navbar {
    border-radius: 22px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-panel {
    position: fixed;
    top: 96px;
    inset-inline: 16px;
    display: grid;
    gap: 16px;
    max-height: calc(100vh - 120px);
    padding: 18px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links {
    display: grid;
    gap: 4px;
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
    border-radius: var(--radius);
  }

  .nav-more {
    display: grid;
  }

  .more-toggle {
    justify-content: space-between;
  }

  .more-menu {
    position: static;
    min-width: 0;
    margin-top: 6px;
    padding: 6px;
    border-radius: var(--radius);
    box-shadow: none;
    background: rgba(22, 66, 117, 0.04);
    transform: none;
    display: none;
  }

  .more-menu::before {
    display: none;
  }

  .nav-more.is-open .more-menu {
    display: grid;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-actions {
    justify-content: space-between;
    padding: 14px 0 0;
    border-inline-start: 0;
    border-top: 1px solid rgba(22, 66, 117, 0.1);
  }

  .language-toggle {
    justify-self: start;
  }

  .nav-cta {
    min-width: 116px;
  }

  .hero-grid,
  .split-layout,
  .editorial-grid,
  .subpage-hero-grid {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    min-height: auto;
  }

  .training-hero-card {
    width: min(100%, 430px);
    min-height: 0;
    aspect-ratio: 1.28;
  }

  .training-hero-card img {
    min-height: 0;
  }

  .focus-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: auto;
  }

  .portrait-frame {
    width: min(86vw, 430px);
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .initiative-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-card {
    grid-column: auto;
  }

  .program-card:nth-child(2),
  .program-card:nth-child(2):hover {
    transform: none;
  }

  .interview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .training-contact-strip {
    flex-direction: column;
  }

  .external-interview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-interview {
    grid-column: 1 / -1;
  }

  .center-profile {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 56px 0;
  }

  .navbar {
    width: min(100% - 20px, 1280px);
    min-height: 62px;
    padding: 7px 9px;
    border-radius: 24px;
  }

  .nav-panel {
    top: 78px;
    inset-inline: 10px;
    max-height: calc(100vh - 96px);
    padding: 12px;
    border-radius: 20px;
  }

  .nav-link {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .nav-actions {
    padding-top: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy {
    max-width: 145px;
  }

  .brand-name-only {
    min-height: 40px;
    padding: 7px 12px;
  }

  .brand-copy strong {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .brand-name-only strong {
    font-size: 0.82rem;
  }

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
    background:
      radial-gradient(circle at 88% 18%, rgba(221, 177, 116, 0.22), transparent 30%),
      linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.9)),
      url("https://images.unsplash.com/photo-1559757175-5700dde675bc?auto=format&fit=crop&w=1200&q=82") center/cover;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(112px, 34vw);
    gap: 14px;
    align-items: start;
  }

  .hero-content {
    display: contents;
  }

  .hero .eyebrow {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    margin-bottom: 8px;
    font-size: clamp(0.68rem, 2.7vw, 0.78rem);
    line-height: 1.7;
  }

  .hero .eyebrow::before {
    width: 22px;
  }

  .hero h1 {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(1.42rem, 6vw, 2rem);
    line-height: 1.22;
    text-wrap: balance;
  }

  [dir="ltr"] .hero h1 {
    font-size: clamp(1.34rem, 5.4vw, 1.82rem);
  }

  .hero p {
    grid-column: 1 / -1;
    grid-row: 4;
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.85;
  }

  .hero-visual {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: start;
    min-height: 0;
    padding-top: 4px;
    perspective: none;
  }

  .portrait-frame {
    width: 100%;
    min-width: 112px;
    aspect-ratio: 0.78;
    padding: 5px;
    border-radius: 30px;
    box-shadow: 0 18px 44px rgba(22, 66, 117, 0.2), 0 0 0 7px rgba(221, 177, 116, 0.07);
    animation: none;
  }

  .portrait-frame::before,
  .portrait-frame::after,
  .portrait-halo,
  .portrait-badge,
  .visual-card {
    display: none;
  }

  .portrait-frame img {
    border-radius: 25px;
    object-position: center top;
  }

  .hero-actions,
  .trust-strip,
  .hero-signature {
    grid-column: 1 / -1;
  }

  .hero-actions {
    grid-row: 5;
    gap: 10px;
    margin-top: 14px;
  }

  .trust-strip {
    grid-row: 6;
    gap: 8px;
    margin-top: 18px;
  }

  .trust-strip strong {
    font-size: 1.24rem;
  }

  .trust-strip span {
    margin-top: 5px;
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .hero-signature {
    grid-row: 7;
    margin-top: 12px;
  }

  .hero-signature span {
    min-height: 30px;
    padding: 4px 10px;
    font-size: 0.7rem;
  }

  .section-heading {
    padding-inline-start: 16px;
  }

  .section-heading::before {
    inset-inline-start: 0;
  }

  .section-heading h2,
  .section-copy h2,
  .final-cta h2 {
    font-size: clamp(1.35rem, 6.2vw, 2rem);
    line-height: 1.26;
  }

  .section-copy > p,
  .featured-editorial p,
  .final-cta p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 12px;
    font-size: 0.74rem;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 10px 18px;
    font-size: 0.82rem;
  }

  .about-cards,
  .stats-grid,
  .initiative-grid,
  .program-grid,
  .contact-grid,
  .interview-grid,
  .course-catalog-grid,
  .external-interview-grid {
    gap: 12px;
  }

  .mini-card,
  .stat-card,
  .initiative-card,
  .program-card,
  .course-topic-card,
  .interview-card,
  .contact-card,
  .center-profile,
  .featured-editorial,
  .final-cta {
    padding: 18px;
  }

  .stat-card {
    min-height: 150px;
  }

  .stat-card i,
  .contact-card i {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .stat-card strong {
    font-size: clamp(1.32rem, 7vw, 1.82rem);
  }

  .stat-card p,
  .mini-card p,
  .initiative-card p,
  .program-card p,
  .course-topic-card p,
  .interview-card p,
  .contact-card a {
    font-size: 0.84rem;
    line-height: 1.65;
  }

  .program-card img {
    height: 190px;
  }

  .program-body {
    padding: 18px;
  }

  .course-card-top {
    margin-bottom: 18px;
  }

  .program-index {
    font-size: 2rem;
  }

  .trust-strip,
  .about-cards,
  .focus-strip,
  .stats-grid,
  .initiative-grid,
  .program-grid,
  .contact-grid,
  .footer-grid,
  .interview-grid,
  .course-catalog-grid,
  .external-interview-grid,
  .gallery-archive-grid {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    min-height: auto;
    padding-top: 76px;
  }

  .subpage-hero::before,
  .subpage-hero::after {
    display: none;
  }

  .social-links {
    max-width: 190px;
  }

  .subpage-hero h1 {
    font-size: clamp(1.35rem, 6.2vw, 2rem);
    line-height: 1.26;
  }

  .subpage-hero p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .subpage-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(112px, 34vw);
    gap: 14px;
    align-items: start;
  }

  .subpage-hero-grid > .reveal:first-child {
    display: contents;
  }

  .subpage-hero .eyebrow {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 8px;
    font-size: clamp(0.68rem, 2.7vw, 0.78rem);
    line-height: 1.7;
  }

  .subpage-hero .eyebrow::before {
    width: 22px;
  }

  .subpage-hero h1 {
    grid-column: 1;
    grid-row: 2;
  }

  .subpage-hero p {
    grid-column: 1 / -1;
    grid-row: 4;
    margin-top: 8px;
  }

  .subpage-portrait,
  .logo-cluster,
  .training-hero-card {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: start;
    width: 100%;
    margin: 0;
  }

  .subpage-portrait {
    min-width: 112px;
    padding: 5px;
    border-radius: 24px;
    box-shadow: 0 16px 42px rgba(7, 24, 39, 0.14);
  }

  .subpage-portrait img {
    aspect-ratio: 0.78;
    border-radius: 20px;
  }

  .gallery-page-hero .subpage-portrait img {
    object-position: 28% top;
  }

  .training-hero-card {
    min-height: 0;
    aspect-ratio: 0.78;
    padding: 5px;
    border-radius: 24px;
  }

  .training-hero-card img {
    min-height: 0;
    border-radius: 20px;
    object-position: center 52%;
  }

  .logo-cluster {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }

  .logo-cluster img:nth-child(2) {
    transform: none;
  }

  .logo-cluster img {
    min-height: 54px;
    padding: 8px;
  }

  .center-logo-wrap {
    min-height: 132px;
  }

  .trust-strip div {
    min-height: 76px;
    padding: 12px 10px;
  }

  .portrait-badge {
    inset-inline-start: 12px;
    bottom: 28px;
  }

  .image-stack img {
    min-height: 260px;
  }

  .testimonial-wrap {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }

  .gallery-archive-grid {
    grid-auto-rows: 210px;
  }

  .gallery-item.tall,
  .gallery-item.wide,
  .gallery-archive-grid .gallery-item:nth-child(1),
  .gallery-archive-grid .gallery-item:nth-child(4) {
    grid-row: auto;
    grid-column: auto;
  }

  .footer-intro,
  .footer-links {
    padding: 0;
  }

  .footer {
    padding-top: 42px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-contact-list a {
    min-height: 40px;
    padding: 7px 8px;
    font-size: 0.82rem;
  }

  .footer-contact-list a i {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .footer-bottom {
    display: grid;
    gap: 12px;
  }

  .media-card,
  [dir="rtl"] .media-card {
    grid-template-columns: 1fr;
  }

  [dir="rtl"] .media-card i {
    order: 0;
  }

  .visual-card {
    position: static;
    justify-self: center;
    margin-top: 12px;
  }

  .visual-card-two {
    margin-top: -2px;
  }

  .floating-actions {
    inset-inline-end: 12px;
    bottom: 12px;
  }

  .floating-actions a,
  .floating-actions button {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .hero-grid,
  .subpage-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(96px, 31vw);
    gap: 10px;
  }

  .hero h1,
  .subpage-hero h1 {
    font-size: clamp(1.24rem, 6vw, 1.62rem);
  }

  .hero .eyebrow,
  .subpage-hero .eyebrow {
    font-size: 0.64rem;
  }

  .portrait-frame,
  .subpage-portrait,
  .training-hero-card {
    min-width: 96px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .focus-strip article {
    min-height: 74px;
    padding: 12px;
    font-size: 0.82rem;
  }

  .gallery-grid,
  .gallery-archive-grid {
    grid-auto-rows: 170px;
  }

  .mini-card,
  .stat-card,
  .initiative-card,
  .program-card,
  .course-topic-card,
  .interview-card,
  .contact-card,
  .center-profile,
  .featured-editorial,
  .final-cta {
    padding: 16px;
  }

  .program-card img {
    height: 170px;
  }

  .footer-contact-list a {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
