/* Cinematic editorial layer */
:root {
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-smooth: cubic-bezier(.65, 0, .35, 1);
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.nav {
  transition: background .45s ease, box-shadow .45s ease, border-color .45s ease;
}

.nav.scrolled {
  background: rgba(255, 253, 248, .975);
  border-color: transparent;
  box-shadow: 0 18px 55px rgba(7, 38, 27, .11);
}

.navin,
.logo {
  transition: height .45s var(--ease-out), width .45s var(--ease-out);
}

.nav.scrolled .navin { height: 82px; }
.nav.scrolled .logo { width: 181px; height: 76px; }

.languageControl {
  position: relative;
  z-index: 5;
}

.languageControl .lang {
  min-width: 91px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--black);
  border-color: rgba(7, 88, 61, .19);
  box-shadow: 0 7px 20px rgba(7, 38, 27, .07);
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.languageControl .lang:hover,
.languageControl.open .lang {
  background: #fff;
  border-color: rgba(201, 154, 53, .7);
  box-shadow: 0 10px 26px rgba(7, 38, 27, .12);
}

.languageControl .lang .activeFlag { font-size: 18px; line-height: 1; }

.languageControl .lang svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform .3s var(--ease-out);
}

.languageControl.open .lang svg { transform: rotate(180deg); }

.languagePanel {
  position: absolute;
  top: calc(100% + 13px);
  right: 0;
  width: 245px;
  padding: 9px;
  border: 1px solid rgba(7, 88, 61, .13);
  border-radius: 19px;
  background: rgba(255, 253, 248, .985);
  box-shadow: 0 24px 65px rgba(6, 34, 24, .18);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.97);
  transform-origin: top right;
  transition: opacity .25s ease, visibility .25s ease, transform .35s var(--ease-out);
}

.languageControl.open .languagePanel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.languageOption {
  width: 100%;
  display: grid;
  grid-template-columns: 39px 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 0;
  border-radius: 13px;
  color: var(--black);
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}

.languageOption:hover,
.languageOption:focus-visible { background: rgba(7, 88, 61, .07); outline: none; }
.languageOption.selected { background: var(--green); color: #fff; }
.languageOption .languageFlag { font-size: 23px; line-height: 1; }
.languageOption > span:last-child { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.languageOption strong { font-size: 14px; }
.languageOption small { opacity: .6; font-size: 10px; letter-spacing: .09em; }
body.rtl .languagePanel { right: auto; left: 0; transform-origin: top left; }
body.rtl .languageOption { text-align: right; }

.hero {
  --hero-shift: 0px;
  background-position: center calc(50% + var(--hero-shift));
  background-size: cover;
}

.hero:before {
  background:
    linear-gradient(90deg, rgba(6, 18, 12, .97), rgba(6, 18, 12, .76) 42%, rgba(6, 18, 12, .12) 76%),
    linear-gradient(0deg, rgba(6, 18, 12, .48), transparent 38%);
}

.hero:after {
  inset: 22px;
  border-color: rgba(220, 174, 72, .32);
  transition: inset 1.1s var(--ease-out), opacity 1.1s ease;
}

.hero.hero-ready:after { inset: 31px; }

.heroGrid > div:first-child {
  transform: translate3d(0, var(--hero-content-y, 0), 0);
  opacity: var(--hero-content-opacity, 1);
  will-change: transform, opacity;
}

.tag { color: #f4cf79; }
.tag:before { width: 46px; }

h1 {
  text-wrap: balance;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, .15));
}

.cta,
.outline,
.footerBtn,
.submit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.cta:before,
.outline:before,
.footerBtn:before,
.submit:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -80%;
  left: -35%;
  width: 28%;
  height: 260%;
  background: rgba(255, 255, 255, .28);
  transform: rotate(22deg) translateX(-260%);
  transition: transform .8s var(--ease-out);
}

.cta:hover:before,
.outline:hover:before,
.footerBtn:hover:before,
.submit:hover:before { transform: rotate(22deg) translateX(620%); }

.marquee {
  position: relative;
  box-shadow: 0 12px 35px rgba(101, 13, 26, .18);
}

.track { gap: 34px; }
.track:hover { animation-play-state: paused; }
.track i {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: rgba(243, 200, 102, .85);
  transform: rotate(-38deg);
}

section { position: relative; }

.head h2,
.story h2,
.method h2,
.world h2,
.enroll h2 { text-wrap: balance; }

.cards { perspective: 1200px; }

.card {
  --rx: 0deg;
  --ry: 0deg;
  transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(0);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .55s var(--ease-out), box-shadow .55s ease, border-color .55s ease;
}

.card:hover {
  transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-10px);
  border-color: rgba(201, 154, 53, .5);
  box-shadow: 0 36px 90px rgba(17, 20, 17, .2);
}

.card img {
  transition: transform 1.1s var(--ease-out), filter .8s ease;
  transform: scale(1.035);
}

.card:hover img {
  transform: scale(1.11);
  filter: saturate(1.08) contrast(1.03);
}

.card .num {
  box-shadow: 0 9px 22px rgba(173, 22, 37, .28);
}

.collage,
.methodPhoto,
.gallery figure {
  will-change: transform;
}

.collage,
.methodPhoto { transform: translate3d(0, var(--frame-y, 0), 0); }

.collage .big,
.collage .small,
.methodPhoto img {
  transition: filter .8s ease;
  animation: photoDrift 12s var(--ease-smooth) infinite alternate;
}

.collage:hover img,
.methodPhoto:hover img { filter: saturate(1.08) contrast(1.03); }

.story:after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -220px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 154, 53, .13), transparent 68%);
  pointer-events: none;
}

.step {
  position: relative;
  transition: background .45s ease, transform .55s var(--ease-out), border-color .45s ease;
}

.step:before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .65s var(--ease-out);
}

.step.is-active {
  background: rgba(255, 255, 255, .72);
  transform: translateX(8px);
}

.step.is-active:before { transform: scaleY(1); }

.step > span {
  transition: background .45s ease, color .45s ease, transform .55s var(--ease-out);
}

.step.is-active > span {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.08);
}

.world {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(225, 181, 82, .13), transparent 24%),
    linear-gradient(125deg, #06472f, var(--green) 54%, #043b28);
}

.world:after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000, transparent);
  pointer-events: none;
}

.worldGrid { position: relative; z-index: 1; }

.countries span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px 8px 8px;
  backdrop-filter: blur(8px);
  transition: transform .35s var(--ease-out), background .35s ease, border-color .35s ease;
}

.countries .countryFlag {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
  font-size: 19px;
  line-height: 1;
}

.countries span:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.13);
  border-color: rgba(239, 197, 104, .5);
}

.countries b {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #112218;
  font-size: 10px;
  letter-spacing: .06em;
}

.mediaGrid { align-items: stretch; }

.video,
.social { transition: transform .6s var(--ease-out), box-shadow .6s ease; }
.video:hover,
.social:hover { transform: translateY(-7px); box-shadow: 0 38px 90px rgba(17,20,17,.22); }

.social:after,
.enrollIntro:after {
  content: "";
  width: 330px;
  height: 330px;
  right: -145px;
  bottom: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 68%);
}

.socialMark {
  width: 53px;
  height: 53px;
  fill: none;
  stroke: #f5cf77;
  stroke-width: 1.35;
}

.gallery {
  height: 510px;
  grid-template-columns: 1.35fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 18px 55px rgba(17,20,17,.14);
  transform: translate3d(0, var(--frame-y, 0), 0);
}

.gallery figure:first-child { grid-row: 1 / 3; }

.gallery figure:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 22, 15, .28));
  pointer-events: none;
}

.gallery figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1.08);
  animation: galleryMotion 14s var(--ease-smooth) infinite alternate;
}

.gallery figure:nth-child(1) img { content: url('assets/quran-study.webp'); animation-duration: 17s; }
.gallery figure:nth-child(2) img { content: url('assets/arabic-lesson.webp'); object-position: center 30%; animation-delay: -5s; }
.gallery figure:nth-child(3) img { content: url('assets/hero-learning.webp'); object-position: 68% center; animation-delay: -9s; }

.socialPills svg,
.waFloat svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socialPills .fillIcon { fill: currentColor; stroke: none; }
.socialPills a:last-child svg path { fill: currentColor; stroke: none; }

.waFloat {
  width: 62px;
  height: 62px;
  font-size: 0;
  background: #128c58;
  border: 1px solid rgba(255,255,255,.35);
  animation: whatsappPulse 3.6s ease-in-out infinite;
}

.waFloat svg { width: 27px; height: 27px; stroke-width: 1.7; }

.footerCta {
  background:
    radial-gradient(circle at 82% 20%, rgba(239, 197, 104, .28), transparent 24%),
    linear-gradient(110deg, #9d1220, var(--red) 52%, #77101a);
}

.brandBox,
.contactBox a {
  transition: transform .4s var(--ease-out), background .4s ease, border-color .4s ease;
}

.brandBox:hover,
.contactBox a:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.07);
  border-color: rgba(239,197,104,.28);
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 42px, 0);
  transition: opacity 1s ease, transform 1.05s var(--ease-out), filter 1s ease;
}

.reveal[data-reveal="left"] { transform: translate3d(-55px, 18px, 0); }
.reveal[data-reveal="right"] { transform: translate3d(55px, 18px, 0); }
.reveal[data-reveal="scale"] { transform: scale(.94) translateY(24px); }
.reveal.in { opacity: 1; filter: blur(0); transform: none; }

.cards .reveal:nth-child(2) { transition-delay: .12s; }
.cards .reveal:nth-child(3) { transition-delay: .24s; }

.cursorGlow {
  position: fixed;
  z-index: 1;
  width: 420px;
  height: 420px;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: .42;
  background: radial-gradient(circle, rgba(201,154,53,.09), transparent 66%);
  transform: translate3d(calc(var(--pointer-x, -500px) - 50%), calc(var(--pointer-y, -500px) - 50%), 0);
  transition: opacity .35s ease;
}

@keyframes photoDrift {
  from { transform: scale(1.015) translate3d(0, 0, 0); }
  to { transform: scale(1.075) translate3d(0, -10px, 0); }
}

@keyframes galleryMotion {
  from { transform: scale(1.08) translate3d(-1.2%, 0, 0); }
  to { transform: scale(1.16) translate3d(1.2%, -1.2%, 0); }
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 14px 35px rgba(18,130,76,.34), 0 0 0 0 rgba(18,140,88,.22); }
  50% { box-shadow: 0 18px 42px rgba(18,130,76,.42), 0 0 0 11px rgba(18,140,88,0); }
}

@media (max-width: 960px) {
  .gallery { height: 430px; }
}

@media (max-width: 620px) {
  .nav.scrolled .navin { height: 72px; }
  .nav.scrolled .logo { width: 142px; height: 64px; }
  .languageControl .lang { min-width: 65px; padding: 9px 10px; }
  .languageControl .lang .activeFlag { font-size: 16px; }
  .languagePanel { width: 225px; right: -70px; }
  body.rtl .languagePanel { left: -70px; right: auto; }
  .hero { background-size: cover; animation: none; }
  .hero.hero-ready:after { inset: 16px; }
  .gallery { height: auto; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 260px 190px; }
  .gallery figure:first-child { grid-column: 1 / 3; grid-row: auto; }
  .gallery img { height: 100%; }
  .cursorGlow { display: none; }
  .waFloat { width: 56px; height: 56px; right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .collage img,
  .methodPhoto img,
  .gallery figure img,
  .waFloat { animation: none !important; }
  .collage,
  .methodPhoto,
  .gallery figure { transform: none !important; }
  .cursorGlow { display: none; }
}

/* Learning guides and photographic rhythm */
.usefulInfo { background:#fffdf8; border-top:1px solid #e1e7e1; }
.usefulInfo h2,.faqSection h2 { font:500 clamp(32px,3.8vw,52px)/1.15 Georgia,serif; letter-spacing:-.035em; margin:0 0 36px; color:#07583d; max-width:780px; }
.infoGrid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:36px; }
.infoItem { border-top:2px solid #c99a35; padding-top:24px; }
.infoIndex { font:italic 26px Georgia,serif; color:#ad1625; }
.infoItem h3 { font:500 25px/1.3 Georgia,serif; margin:18px 0 14px; color:#183c2b; }
.infoItem p { font-size:16px; line-height:1.85; color:#4b5b51; margin:0; }
.faqSection { background:#f1f5f2; }
.faqLayout { display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; }
.faqLayout details { border-bottom:1px solid #cdd8d0; }
.faqLayout summary { cursor:pointer; padding:24px 34px 24px 0; position:relative; font-size:18px; line-height:1.5; font-weight:600; color:#163e2b; list-style:none; }
.faqLayout summary::-webkit-details-marker { display:none; }
.faqLayout summary:after { content:'+'; position:absolute; inset-inline-end:0; top:20px; font:30px Georgia; color:#ad1625; transition:transform .3s; }
.faqLayout details[open] summary:after { transform:rotate(45deg); }
.faqLayout details p { margin:0; padding:0 24px 26px 0; color:#45594c; line-height:1.85; animation:answerIn .3s ease-out; }
@keyframes answerIn { from { opacity:0;transform:translateY(-5px) } to {opacity:1;transform:none} }
main .card img, main .collage img, main .methodPhoto img, main .gallery img { content:normal!important; }
.gallery { height:600px; grid-template-columns:1.2fr 1fr; grid-template-rows:1fr 1fr; gap:22px; margin-top:44px; }
.gallery figure { border-radius:16px; background:#fff; display:flex; flex-direction:column; box-shadow:0 10px 35px #142f2012; }
.gallery figure:after { display:none; }
.photoOpen { display:block; flex:1; min-height:0; width:100%; border:0; padding:0; overflow:hidden; background:#173c2a; cursor:zoom-in; }
.gallery .photoOpen img { display:block; height:100%; width:100%; object-fit:cover; transition:transform .8s ease; }
.gallery figure:nth-child(2) img { object-position:center 47%; }
.gallery figure:nth-child(3) img { object-position:68% center; }
.gallery figcaption { padding:18px 20px; font:500 19px/1.4 Georgia,serif; color:#163e2b; }
.imageNote { font-size:13px; color:#637168; margin:22px 0 0; }
.photoViewer { width:min(1100px,95vw); max-width:95vw; max-height:95dvh; border:0; padding:20px; border-radius:18px; background:#0d2017; color:white; overflow:auto; }
.photoViewer::backdrop { background:#03110de8; backdrop-filter:blur(9px); }
.photoViewer>img { display:block; width:100%; height:75dvh; object-fit:contain; }
.photoViewer>p { text-align:center; margin:16px 0 0; }
.photoClose { position:absolute; top:12px; inset-inline-end:12px; border:1px solid #ffffff60; color:white; background:#10261d; border-radius:50%; width:44px;height:44px; font-size:30px; cursor:pointer; }
.homePage #media { background:#f3f6f3; }
.homePage .mediaGrid { grid-template-columns:1.6fr .8fr; }
.videoPlaceholder { background:linear-gradient(90deg,#07170ef0,#07170ec4),url('assets/hero-learning.webp') center/cover; }
.homePage #methode .methodPhoto { height:520px; }
.homePage #methode h2 { max-width:600px; }
.collage .big { object-position:center 50%; }
.collage .small { object-position:center; }
.methodPhoto img { object-position:center 50%; }
@media(max-width:960px) { .infoGrid{gap:24px} .faqLayout{grid-template-columns:1fr;gap:12px} .homePage .mediaGrid{grid-template-columns:1fr} }
@media(max-width:620px) { .infoGrid{grid-template-columns:1fr;gap:32px} .gallery{height:auto;grid-template-columns:1fr;grid-template-rows:360px 360px 300px} .gallery figure:first-child{grid-column:auto;grid-row:auto} .gallery figcaption{font-size:18px;padding:14px} .homePage #methode .methodPhoto{height:400px} .faqLayout summary{font-size:16px} }
/* Editorial programme cards and contact details */
body[data-page="programmes"] .cards { gap:28px; align-items:stretch; }
body[data-page="programmes"] .card { min-height:540px; padding:0 28px 28px; background:#fff; color:#132a1e; border:1px solid #e1e6df; border-radius:18px; justify-content:flex-start; box-shadow:0 14px 40px #10311f0c; }
body[data-page="programmes"] .card:after { display:none; }
body[data-page="programmes"] .card img { position:relative; inset:auto; z-index:0; width:calc(100% + 56px); max-width:none; height:250px; margin:0 -28px 28px; object-fit:cover; transform:none; }
body[data-page="programmes"] .card .num { z-index:2; background:#fffdf8; color:#07583d; box-shadow:0 4px 15px #0001; }
body[data-page="programmes"] .card h3 { font-size:30px; line-height:1.2; }
body[data-page="programmes"] .card p { color:#4c5c52; font-size:16px; line-height:1.75; padding-bottom:26px; }
body[data-page="programmes"] .card a { margin-top:auto; display:block; padding:14px 16px; background:#07583d; border-radius:10px; text-align:center; color:white; font-size:15px; }
body[data-page="programmes"] .card a:hover { background:#ad1625; }
.enrollIntro .contact a { display:flex; flex-direction:column; padding:17px 0; border-top:1px solid #ffffff3b; text-decoration:none; font-size:14px; color:#f7e7cc; }
.enrollIntro .contact strong { color:white; font-weight:500; font-size:17px; overflow-wrap:anywhere; }
.enrollIntro .contact a:hover strong { text-decoration:underline; text-underline-offset:5px; }
.field input,.field select { min-height:52px; }
.form .fine { line-height:1.65; }
.innerPage .head { padding-bottom:32px; border-bottom:1px solid #dce3dc; }
.innerPage .head p { font-size:17px; line-height:1.8; }
.noise { display:none; }
@media(max-width:620px) { body[data-page="programmes"] .card{min-height:0} body[data-page="programmes"] .card img{height:220px} .enrollIntro .contact strong{font-size:16px} .innerPage .head{gap:12px;margin-bottom:30px} }
/* Shared multipage layout */
body { font-family: Arial, sans-serif; }
body.rtl { font-family: Tahoma, Arial, sans-serif; }
h1,h2,.card h3,.social h3,.footerCta h3,.quote { font-family: Georgia, 'Times New Roman', serif; }
body.rtl h1,body.rtl h2,body.rtl h3 { font-family: Tahoma, Arial, sans-serif; letter-spacing: normal; line-height: 1.55; }
.pageTitle { color: inherit; font: 500 clamp(40px,5vw,72px)/1.08 Georgia,serif; letter-spacing:-.035em; margin:16px 0 24px; text-shadow:none; }
.innerPage main { min-height:55vh; }
.innerPage footer { margin-top:0; }
.innerPage .enroll { padding:80px 0; }
.legalPage { max-width:860px; padding:80px 22px; }
.legalPage h1 { color:var(--green); font-size:clamp(40px,5vw,70px); line-height:1.12; text-shadow:none; letter-spacing:-.035em; }
.legalPage h2 { color:var(--green); font-size:28px; margin-top:38px; }
.legalPage p { line-height:1.85; overflow-wrap:anywhere; }
.legalPage a { color:var(--red); text-underline-offset:4px; }
.legalLinks { display:flex; flex-wrap:wrap; gap:24px; padding-top:24px; }
.legalLinks a,.legalLinks button { color:#d5e0d9; font:inherit; font-size:14px; background:none; border:0; padding:0; cursor:pointer; text-decoration:underline; text-underline-offset:4px; }
.contactBox strong { overflow-wrap:anywhere; }
.foot { grid-template-columns:minmax(0,1.2fr) minmax(0,.65fr) minmax(0,.8fr) minmax(0,1.2fr); }
.brandBox { background:#fff9ee; color:#334339; }
.brandBox:hover { background:#fff9ee; }
.brandBox .socialPills a { border-color:#b7bdb5; }
.footLogo { filter:none; }
.consentBanner { position:fixed; z-index:120; bottom:20px; left:20px; width:min(560px,calc(100% - 40px)); max-height:calc(100dvh - 40px); overflow:auto; padding:28px; background:#fffdf8; color:#15271d; border:1px solid #c99a35; border-radius:20px; box-shadow:0 20px 80px #0005; }
.consentBanner h2 { margin:0 0 12px; font-size:28px; }
.consentBanner p { margin:0 0 12px; font-size:15px; }
.consentBanner a { font-size:14px; text-underline-offset:3px; }
.consentActions { display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.consentActions button,.videoPlaceholder button { flex:1; border:1px solid #07583d; background:#07583d; color:white; font:600 14px/1.4 Arial,sans-serif; padding:13px 16px; border-radius:10px; cursor:pointer; min-height:46px; }
.videoPlaceholder { min-height:inherit; height:100%; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; padding:40px; color:#fff; background:linear-gradient(140deg,#062f22,#111a16); }
.videoPlaceholder p { max-width:340px; }
.videoPlaceholder button { flex:none; background:#c99a35; color:#101c15; }
[hidden] { display:none!important; }
.srOnly { position:absolute; width:1px; height:1px; overflow:hidden; clip-path:inset(50%); }
.menuToggle { display:none; background:transparent; border:1px solid #bcc9c0; border-radius:12px; padding:11px; font:600 14px Arial,sans-serif; }
.mobileNavigation { padding:18px 24px 24px; background:#fffdf8; border-top:1px solid #d9dfda; max-height:70vh; overflow:auto; }
.mobileNavigation a { display:block; padding:12px; text-decoration:none; color:#07583d; border-bottom:1px solid #e3e7e3; font-size:17px; }
a[aria-current="page"] { text-decoration:underline; text-underline-offset:6px; }
:focus-visible { outline:3px solid #c99a35; outline-offset:4px; }
section[id] { scroll-margin-top:110px; }
.field label { font-size:14px; }
.hero h1 { line-height:1.03; letter-spacing:-.04em; }
@media(max-width:960px) { .menuToggle{display:block} .foot{grid-template-columns:1fr 1fr} .links{gap:10px} }
@media(max-width:620px) { .links>.cta{display:none} .logo{width:130px} .shell{width:calc(100% - 32px)} .foot{grid-template-columns:1fr} .consentBanner{padding:22px;bottom:12px;left:12px;width:calc(100% - 24px)} .consentActions{flex-direction:column} .pageTitle{font-size:42px} }
@media(prefers-reduced-motion:reduce) { html{scroll-behavior:auto!important} .reveal,.reveal.in,.heroGrid>div:first-child{opacity:1!important;filter:none!important;transform:none!important} }

/* Coherent editorial system: brand colours, clear hierarchy, restrained motion. */
:root { --paper:#f1f4f1; --white:#fffefa; --radius:18px; }
body { font-family:Arial,Helvetica,sans-serif; line-height:1.75; }
button,input,select,textarea { font-family:inherit; }
section { padding-block:clamp(64px,7.5vw,104px); }
.shell { width:min(1220px,calc(100% - 64px)); }
h1,h2,h3,.head h2,.story h2,.method h2,.enroll h2,.world h2,.social h3,.footerCta h3,.quote { font-family:Georgia,'Times New Roman',serif; font-weight:500; }
.head h2,.story h2,.method h2,.enroll h2,.world h2 { font-size:clamp(34px,4.1vw,56px); line-height:1.15; letter-spacing:-.035em; }
.eyebrow,.tag { font-size:14px; letter-spacing:.1em; }
.links a { font-size:14px; font-weight:600; }
.links { gap:24px; }
.top { height:auto; min-height:34px; font-size:13px; }
.top a,.contactBox strong { direction:ltr; unicode-bidi:isolate; }
.hero,.heroGrid { min-height:680px; }
.heroGrid { display:flex; align-items:center; padding-block:76px; }
.heroGrid>div:first-child { width:min(750px,65%); padding:0; }
.hero h1 { font-size:clamp(50px,5.7vw,80px); line-height:1.08; letter-spacing:-.045em; filter:none; text-shadow:none; }
.hero .lead { max-width:580px; line-height:1.8; }
.hero:after,.hero.hero-ready:after { inset:24px; }
.cta,.outline,.footerBtn,.submit { border-radius:10px; font-weight:600; box-shadow:none; min-height:48px; }
.cta:before,.outline:before,.footerBtn:before,.submit:before { display:none; }
.card { border-radius:var(--radius); box-shadow:0 12px 32px #11281816; }
.card h3 { font-size:32px; line-height:1.2; }
.card p { font-size:16px; line-height:1.7; }
.card a { font-size:15px; min-height:44px; display:inline-flex; align-items:center; }
.card:after { background:linear-gradient(180deg,#06160e00 5%,#06160e99 38%,#06160ef5 85%); }
.card:hover { transform:translateY(-5px); box-shadow:0 18px 44px #11281820; }
.story:before,.story:after,.world:after,.social:after,.enrollIntro:after,.cursorGlow { display:none; }
.story { background:#10271c; }
.collage .big,.collage .small { border-radius:var(--radius); animation:none; }
.collage .small { border-color:#10271c; }
.quote { border-left:0; border-inline-start:3px solid var(--gold); font-size:24px; line-height:1.5; }
.fact span { font-size:14px; }
.methodPhoto { overflow:hidden; border-radius:150px 150px var(--radius) var(--radius); }
.methodPhoto img { border-radius:inherit; animation:none; }
.methodPhoto:after { inset:14px; border-radius:inherit; pointer-events:none; }
.step p { font-size:16px; }
.step:before { left:auto; inset-inline-start:0; }
.step.is-active { transform:none; }
.countries span { font-size:14px; }
.video,.social { border-radius:var(--radius); box-shadow:0 12px 36px #11281815; }
.video { min-height:360px; }
.video:hover,.social:hover { transform:none; box-shadow:0 12px 36px #11281815; }
.videoPlaceholder { background:linear-gradient(90deg,#07170ef0,#07170ec4),url('assets/hero-learning.webp') center/cover; }
.social { min-height:360px; background:#921b2c; padding:32px; }
.social h3 { font-size:36px; line-height:1.15; }
.social a { border-radius:10px; overflow-wrap:anywhere; }
.faqLayout summary { padding-inline:0 34px; }
.faqLayout details p { padding-inline:0 24px; }
.enrollBox { border-radius:var(--radius); box-shadow:0 16px 50px #11281810; }
.enrollIntro { background:#921b2c; }
.form .fine { font-size:14px; }
.submit:disabled { opacity:.55; cursor:not-allowed; }
footer { margin-top:0; }
.footerCta { background:#921b2c; padding-block:42px; }
.footerCta:after,.footerMain:after { display:none; }
.footerCta h3 { font-size:clamp(28px,3.3vw,44px); line-height:1.2; }
.footerMain { background:#10271c; padding:64px 0 30px; }
.foot { gap:32px; grid-template-columns:minmax(0,1.35fr) minmax(0,.65fr) minmax(0,.8fr) minmax(0,1.15fr); }
.brandBox { padding:22px; border-radius:14px; background:#fffefa; }
.brandBox:hover { transform:none; background:#fffefa; }
.footLogo { height:108px; width:220px; }
.foot h4 { font-size:14px; letter-spacing:.06em; }
.foot p,.foot a { font-size:15px; }
.contactBox a { border-radius:8px; }
.copy { font-size:14px; gap:20px; flex-wrap:wrap; }
.legalLinks { border-top:1px solid #ffffff18; margin-top:22px; }
.socialPills a { width:44px; height:44px; }
.brandBox .socialPills a:hover,.brandBox .socialPills a:focus-visible { color:var(--red); border-color:var(--red); background:#fff; transform:none; }
.waFloat { animation:none; }
.languageControl .lang,.menuToggle { min-height:44px; }
.languageOption small { font-size:12px; }
.languageOption:focus-visible,.field input:focus-visible,.field select:focus-visible { outline:3px solid var(--red); outline-offset:3px; }
.pageTitle,.legalPage h1 { filter:none; }
.skipLink { position:fixed; top:12px; inset-inline-start:12px; z-index:200; background:white; color:var(--green); padding:12px 20px; transform:translateY(-180%); border:2px solid var(--gold); border-radius:8px; }
.skipLink:focus { transform:none; }
.reveal { opacity:1; filter:none; transform:none; }
.motionReady .reveal:not(.in) { opacity:0; transform:translateY(20px); }
.reveal { transition:opacity .65s ease,transform .65s var(--ease-out); }
.photoTools { display:flex; align-items:center; justify-content:center; gap:16px; margin-top:12px; }
.photoTools button { color:white; background:transparent; border:1px solid #ffffff60; border-radius:8px; min-height:44px; padding:8px 18px; font:inherit; cursor:pointer; }
.photoTools output { min-width:52px; text-align:center; }
.photoViewer { padding-top:60px; }
.photoViewer>img { height:65dvh; }
body.rtl h1,body.rtl h2,body.rtl h3,body.rtl .head h2,body.rtl .story h2,body.rtl .method h2,body.rtl .enroll h2,body.rtl .world h2,body.rtl .social h3,body.rtl .footerCta h3,body.rtl .quote { font-family:Tahoma,Arial,sans-serif; letter-spacing:0; line-height:1.55; }
body.rtl .eyebrow,body.rtl .tag,body.rtl .track,body.rtl .foot h4 { letter-spacing:0; }
body.rtl .hero:before { background:linear-gradient(270deg,#06120cf7,#06120cc2 42%,#06120c30 90%); }
@media(max-width:1100px) { .links{gap:15px} .links a{font-size:14px} .foot{grid-template-columns:1fr 1fr} }
@media(max-width:960px) { .shell{width:calc(100% - 40px)} .heroGrid>div:first-child{width:82%} .storyGrid,.methodGrid{gap:42px} .hero,.heroGrid{min-height:620px} .cards{gap:24px} .video{aspect-ratio:16/9;min-height:300px} }
@media(max-width:620px) {
 .shell{width:calc(100% - 36px)}
 .navin,.nav.scrolled .navin{height:76px}
 .logo,.nav.scrolled .logo{width:130px;height:64px}
 .hero,.heroGrid{min-height:0}
 .heroGrid{padding:76px 10px 64px}
 .heroGrid>div:first-child{width:100%}
 .hero h1{font-size:clamp(39px,10.6vw,56px);line-height:1.12}
 .hero:before{background:linear-gradient(90deg,#06120cee,#06120cb8)}
 .hero:after,.hero.hero-ready:after{inset:12px}
 .tag{font-size:13px;letter-spacing:.05em}
 .tag:before{width:22px;flex-shrink:0}
 .actions{gap:12px}.actions a{width:100%;justify-content:center}
 .languagePanel{right:0;width:min(235px,calc(100vw - 36px))}
 body.rtl .languagePanel{left:0;right:auto}
 .head{margin-bottom:32px}
 .head h2,.story h2,.method h2,.enroll h2,.world h2{font-size:34px;line-height:1.2}
 .foot{grid-template-columns:1fr;gap:28px}
 .video{min-height:280px;aspect-ratio:auto}
 .videoPlaceholder{padding:28px}
 .social{padding:28px;min-height:320px}
 .form,.enrollIntro{padding:26px}
 .facts{grid-template-columns:1fr;gap:0}
 .fact{border:0;border-top:1px solid #ffffff25;border-radius:0;padding:14px 0;display:flex;justify-content:space-between;gap:16px}
 .collage{height:420px}
 .copy{gap:10px}
 .consentBanner h2{font-size:25px}
 .photoViewer{padding:56px 12px 20px}
 .photoTools{gap:8px}.photoTools button{padding-inline:12px;font-size:14px}
 body.rtl .hero h1{font-size:37px}
}
@media(prefers-reduced-motion:reduce) {
 .motionReady .reveal:not(.in){opacity:1;transform:none}
 .heroGrid>div:first-child,.card,.step{transform:none!important}
}
/* Brand redesign: an open, photographic layout with architectural framing. */
:root { --white:#ffffff; --paper:#f5f7f5; --green:#07583d; --red:#ad1625; }
body { background:#fff; }
.top { background:#073e2c; }
.nav,.nav.scrolled { background:#ffffffed; box-shadow:none; border-bottom:1px solid #133e2514; }
.navin,.nav.scrolled .navin { height:88px; }
.logo,.nav.scrolled .logo { width:170px; height:78px; filter:none; }
.links a { font-weight:500; }
.links .cta { background:var(--green); padding-inline:24px; }
.languageControl .lang { box-shadow:none; border-radius:8px; }
.hero { background:#fff; overflow:hidden; min-height:0; }
.hero:before,.hero:after,.hero.hero-ready:after,body.rtl .hero:before { display:none; }
.heroGrid { display:grid; grid-template-columns:1.05fr 1fr; gap:64px; align-items:center; min-height:0; padding-block:64px 84px; }
.heroGrid>div:first-child { width:100%; }
.hero .tag { color:var(--red); font-size:12px; letter-spacing:.12em; }
.hero .tag:before { background:var(--red); width:26px; }
.hero h1 { color:#103e2b; font-size:clamp(48px,5.4vw,76px); line-height:1.08; letter-spacing:-.048em; margin:26px 0; }
.hero h1 em { color:var(--red); font-weight:400; }
.hero .lead { color:#526056; font-size:17px; max-width:510px; line-height:1.85; }
.hero .actions { gap:22px; align-items:center; margin-top:32px; }
.hero .cta { background:var(--green); padding:16px 23px; }
.hero .outline { border:0; border-bottom:1px solid #b59961; padding:12px 0; border-radius:0; color:#16422e; background:none; backdrop-filter:none; font-size:15px; }
.visual { display:block; position:relative; padding:0 0 38px 24px; height:580px; }
.mainPhoto { position:absolute; inset:0 0 38px 24px; overflow:hidden; border-radius:260px 260px 14px 14px; background:#123b2b; }
.mainPhoto img { width:100%; height:100%; object-fit:cover; object-position:77% center; display:block; transition:transform 1.2s ease; }
.visual:hover .mainPhoto img { transform:scale(1.035); }
.detailPhoto { position:absolute; width:176px; height:138px; bottom:0; inset-inline-start:-26px; border:7px solid white; border-radius:12px; overflow:hidden; box-shadow:0 16px 32px #102b1814; }
.detailPhoto img { width:100%; height:100%; object-fit:cover; display:block; }
.live { position:absolute; inset-inline-end:0; bottom:0; padding:18px 22px; background:#fff; border-top:2px solid var(--gold); max-width:280px; }
.live b { display:block; color:#16422e; font-weight:600; font-size:17px; }
.live span { color:#667269; font-size:14px; display:block; }
.marquee { background:#fff; color:#16432e; border-block:1px solid #dce3dd; box-shadow:none; }
.track { font-weight:500; letter-spacing:.12em; padding-block:18px; font-size:13px; }
.track i { background:#b99b55; }
.head { gap:60px; margin-bottom:44px; }
.head h2 { font-size:clamp(36px,4vw,56px); color:#123e2b; }
.head p { max-width:560px; font-size:17px; line-height:1.85; }
.eyebrow { font-weight:600; color:var(--red); font-size:12px; letter-spacing:.13em; }
body .cards { gap:28px; align-items:stretch; }
body .cards .card { min-height:0; padding:0 0 24px; border:0; border-bottom:1px solid #cbd7cc; border-radius:0; color:#173f2c; background:transparent; box-shadow:none; justify-content:flex-start; transform:none; overflow:visible; }
body .cards .card:after { display:none; }
body .cards .card:hover { box-shadow:none; transform:translateY(-5px); }
body .cards .card img { position:relative; inset:auto; z-index:0; width:100%; height:270px; margin:0 0 28px; object-fit:cover; border-radius:14px; transform:none; filter:none; }
body .cards .card:nth-child(2) img { border-radius:150px 150px 14px 14px; }
body .cards .card .num { position:static; background:none; color:#9e7132; box-shadow:none; backdrop-filter:none; width:auto; height:auto; display:block; font:italic 19px Georgia,serif; margin-bottom:12px; }
body .cards .card h3 { font:500 31px/1.18 Georgia,serif; margin:0 0 14px; color:#143f2b; }
body .cards .card p { font-size:16px; line-height:1.8; color:#5a665e; padding:0 0 18px; }
body .cards .card a { margin-top:auto; padding:10px 0; border:0; border-radius:0; background:none; color:#8d1726; text-align:start; font-size:15px; font-weight:600; display:flex; justify-content:space-between; }
body .cards .card a:after { content:'↗'; font-size:22px; font-weight:400; margin-inline-start:12px; }
body .cards .card a:hover { background:none; color:#07583d; }
.homePage #programmes { padding-top:80px; }
.homePage #media { background:#f4f6f3; }
.mediaGrid,.homePage .mediaGrid { grid-template-columns:1.7fr 1fr; gap:28px; }
.video { min-height:400px; box-shadow:none; border-radius:16px; }
.video:hover { box-shadow:none; }
.social { min-height:400px; background:#073e2c; box-shadow:none; border-radius:16px; padding:34px; }
.social:hover { box-shadow:none; }
.socialMark { width:38px; height:38px; }
.social h3 { font-size:38px; line-height:1.16; }
.social a { background:#e4c27b; font-size:14px; padding:14px 10px; }
.story { background:#073e2c; }
.storyGrid { gap:92px; }
.story h2 { font-size:clamp(38px,4.4vw,60px); line-height:1.12; }
.story p { color:#d7e0d8; font-size:17px; }
.collage { height:580px; }
.collage .big { border-radius:210px 210px 10px 10px; }
.collage .small { border-radius:12px; border:7px solid #073e2c; }
.quote { background:none; padding:0 0 0 22px; padding-inline:22px 0; color:#e6c683; font:italic 26px/1.45 Georgia,serif; }
.fact { border:0; border-top:1px solid #ffffff35; border-radius:0; padding:16px 0; }
.fact b { color:#ebce96; font-size:17px; }
.fact span { font-size:13px; }
.method { background:#fff; }
.methodGrid { grid-template-columns:.9fr 1.1fr; gap:90px; }
.methodPhoto,.homePage #methode .methodPhoto { height:560px; border-radius:12px; }
.methodPhoto:after { display:none; }
.methodPhoto img { border-radius:12px; object-position:center 42%; }
.step { padding:22px 0; gap:24px; grid-template-columns:38px 1fr; }
.step>span { background:none; color:#a48241; font:italic 28px Georgia,serif; width:38px; height:38px; }
.step.is-active>span { background:none; color:var(--red); transform:none; }
.step.is-active { background:none; }
.step:before { display:none; }
.step h3 { font:600 17px/1.5 Arial,sans-serif; color:#19432f; }
.step p { color:#5c685f; }
.world { background:#f4f6f3; color:#173f2c; border-block:1px solid #dfe7df; padding-block:64px; }
.world .eyebrow { color:#ad1625!important; }
.world h2 { font-size:42px; }
.world:after { display:none; }
.countries span { background:#fff; color:#214832; border:1px solid #d7e0d7; border-radius:8px; padding:9px 13px; }
.countries span:hover { background:#fff; border-color:#b89b5c; }
.countries .countryFlag { background:none; box-shadow:none; }
.faqSection { background:#fff; }
.faqLayout { grid-template-columns:1fr 1.3fr; }
.faqLayout h2 { font-size:clamp(34px,3.7vw,50px); }
.faqLayout summary { font-size:17px; font-weight:500; padding-block:25px; }
.enroll { background:#f4f6f3; padding-block:80px; }
.enrollBox { border:1px solid #d5dfd5; box-shadow:none; border-radius:18px; }
.enrollIntro { background:#073e2c; padding:44px; }
.enrollIntro p { color:#d9e6dc; }
.form { padding:44px; }
.field input,.field select { border-radius:7px; background:#fff; }
.field label { font-weight:500; }
.submit { border-radius:7px; background:#ad1625; }
footer { background:#fff; color:#506257; }
.footerCta { background:#fff; padding:64px 0 0; }
.footerCtaIn { background:#073e2c; border-radius:18px; padding:42px 46px; gap:42px; color:white; }
.footerCta h3 { font-size:clamp(30px,3.3vw,44px); max-width:690px; line-height:1.2; }
.footerCta .footerBtn { border-radius:8px; background:#e7c77e; font-size:15px; }
.footerMain { background:#fff; padding:60px 0 26px; }
.foot { grid-template-columns:1.3fr .65fr .8fr 1.2fr; gap:40px; }
.brandBox,.brandBox:hover { padding:0 20px 0 0; border:0; background:none; border-radius:0; }
.footLogo { width:210px; height:115px; object-fit:contain; object-position:left center; }
.foot h4 { color:#173f2c; font-size:13px; letter-spacing:.08em; margin-top:20px; }
.foot p { color:#5c6b60; line-height:1.8; font-size:14px; }
.foot a { color:#526558; font-size:14px; }
.foot a:hover { color:#ad1625; transform:none; }
.contactBox a { padding:12px 0; background:none; border:0; border-bottom:1px solid #e1e7e1; border-radius:0; }
.contactBox a:hover { background:none; transform:none; }
.contactBox strong { font-size:14px; font-weight:500; color:#214832; }
.socialPills a { border-color:#d6dfd5; color:#07583d; }
.copy { border-color:#dce4dc; font-size:13px; margin-top:36px; color:#5d6c60; }
.legalLinks { border-top:0; padding-top:8px; margin-top:8px; gap:22px; }
.legalLinks a,.legalLinks button { color:#526558; font-size:13px; }
.innerPage .head { padding-bottom:38px; margin-bottom:46px; border-color:#dce3da; }
.innerPage .pageTitle { color:#133e2b; }
.usefulInfo { background:#f4f6f3; }
.infoItem { border-top:1px solid #af965c; }
.infoItem h3 { font-size:27px; }
.gallery { gap:24px; }
.gallery figure { box-shadow:none; border-radius:12px; border:1px solid #dfe5dd; }
.gallery figcaption { background:#fff; padding:20px 24px; }
.gallery figure img { animation:none; }
.photoOpen:hover img { transform:scale(1.055); }
.consentBanner { border:1px solid #d8e1d7; border-top:3px solid #b99b55; border-radius:12px; background:#fff; box-shadow:0 12px 50px #16342125; }
.consentBanner h2 { font-size:25px; }
body.rtl .hero h1 { font-size:clamp(42px,4.5vw,64px); }
body.rtl .cards .card h3 { font-family:Tahoma,Arial,sans-serif; line-height:1.5; }
body.rtl .footLogo { object-position:right center; }
@media(max-width:1100px) {
 .heroGrid{gap:32px}.visual{height:520px}.detailPhoto{width:145px;height:120px;inset-inline-start:-8px}
 .live{padding:14px;max-width:240px}.live span{font-size:13px}
 .hero h1{font-size:60px}.hero .actions{gap:16px}
 .foot{grid-template-columns:1fr 1fr}
 .storyGrid,.methodGrid{gap:48px}
}
@media(max-width:960px) {
 .heroGrid{grid-template-columns:1fr 1fr;gap:28px;padding-block:48px 64px}
 .heroGrid>div:first-child{width:100%}
 .hero h1{font-size:48px}.hero .lead{font-size:16px}
 .hero .actions{align-items:flex-start;flex-direction:column;gap:10px}
 .visual{height:490px;padding-inline-start:0}.mainPhoto{inset-inline-start:0}
 .detailPhoto{display:none}.live{max-width:100%;inset-inline-start:20px;inset-inline-end:0}
 .cards{grid-template-columns:repeat(3,minmax(0,1fr))}
 body .cards .card img{height:210px}body .cards .card h3{font-size:26px}
 .mediaGrid,.homePage .mediaGrid{grid-template-columns:1fr}
 .social{min-height:280px}.social h3{max-width:450px}.social a{align-self:flex-start;padding-inline:24px}
 .storyGrid,.methodGrid{grid-template-columns:1fr}
 .collage{max-width:580px;width:100%}.methodPhoto,.homePage #methode .methodPhoto{height:480px}
 .worldGrid{grid-template-columns:1fr;gap:25px}
 .faqLayout{grid-template-columns:1fr;gap:16px}
 .footerCtaIn{padding:32px;gap:24px;flex-direction:column;align-items:flex-start}
 .footerCta .footerBtn{width:auto}
}
@media(max-width:620px) {
 .navin,.nav.scrolled .navin{height:76px}.logo,.nav.scrolled .logo{width:136px;height:66px}
 .heroGrid{grid-template-columns:1fr;padding:38px 0 42px;gap:32px}
 .hero h1{font-size:clamp(42px,11.5vw,58px);line-height:1.09;margin:22px 0}
 .hero .tag{font-size:11px;letter-spacing:.065em}
 .hero .lead{font-size:16px;line-height:1.75}
 .hero .actions{margin-top:25px;align-items:stretch;gap:12px}
 .hero .outline{align-self:center;width:auto;min-height:44px}
 .visual{height:405px;width:100%;max-width:420px;justify-self:center}
 .mainPhoto{inset:0 0 42px; border-radius:190px 190px 12px 12px}
 .mainPhoto img{object-position:75% center}
 .live{bottom:0;inset-inline-start:28px;inset-inline-end:0;padding:14px 20px}
 .live b{font-size:16px}.live span{font-size:14px}
 .track{padding-block:16px;font-size:12px}
 .cards{grid-template-columns:1fr}
 body .cards .card{display:grid;grid-template-columns:36px 1fr;column-gap:12px;padding-bottom:24px}
 body .cards .card img{grid-column:1/-1;height:260px;margin-bottom:24px}
 body .cards .card .num{grid-column:1;grid-row:2;margin-top:4px}
 body .cards .card h3{grid-column:2;font-size:29px}
 body .cards .card p,body .cards .card a{grid-column:2}
 body .cards .card:nth-child(2) img{border-radius:14px}
 .head h2,.story h2{font-size:37px;line-height:1.15}
 .head p{font-size:16px}
 .video{min-height:300px}.social{padding:28px;min-height:320px}
 .social h3{font-size:34px}
 .collage{height:430px}.collage .big{border-radius:160px 160px 10px 10px}
 .quote{font-size:24px}
 .storyGrid,.methodGrid{gap:36px}
 .methodPhoto,.homePage #methode .methodPhoto{height:390px}
 .step{gap:16px}
 .world h2{font-size:36px}
 .enrollIntro,.form{padding:28px}
 .enroll{padding-block:54px}
 .footerCta{padding-top:42px}
 .footerCtaIn{padding:30px 25px;border-radius:12px}
 .footerCta h3{font-size:32px}
 .footerCta .footerBtn{width:100%;justify-content:center}
 .footerMain{padding-top:38px}
 .foot{grid-template-columns:1fr 1fr;gap:22px}
 .brandBox,.foot>div:last-child{grid-column:1/-1}
 .brandBox{padding:0;max-width:400px}
 .foot h4{margin-top:10px}.foot a{font-size:14px}
 .footLogo{height:104px}
 .copy{font-size:13px}
 body.rtl .hero h1{font-size:39px;line-height:1.55}
}
