:root {
    --beige-50: #fbf6ec;
    --beige-100: #f5ead4;
    --beige-200: #ecdcb8;
    --beige-300: #e0c896;
    --beige-400: #d2b27a;
    --brown-300: #c89a64;
    --brown-400: #b07f4a;
    --brown-500: #8e5d2e;
    --brown-600: #6e451f;
    --brown-700: #4f3015;
    --brown-800: #3a2410;
    --brown-900: #271708;
    --gold: #c9a14a;
    --gold-soft: #e3c47a;
    --bg: var(--beige-50);
    --ink: var(--brown-900);
    --ink-soft: var(--brown-700);
    --line: rgba(78, 48, 21, .18);
    --line-strong: rgba(78, 48, 21, .32);
    --serif-display: "Cinzel", "Cormorant Garamond", Georgia, serif;
    --serif-body: "Cormorant Garamond", "Crimson Text", Georgia, serif;
    --serif-text: "Crimson Text", Georgia, "Times New Roman", serif;
    --serif-display-ar: "Amiri", "Cairo", serif;
    --serif-body-ar: "Amiri", "Cairo", serif;
    --container: 1200px;
    --radius: 6px;
    --shadow-soft: 0 10px 30px -12px rgba(58, 36, 16, .25);
    --shadow-strong: 0 22px 60px -20px rgba(58, 36, 16, .45);
    --ease: cubic-bezier(.22, 1, .36, 1)
}


@font-face {
    font-family: 'DalekPinpoint';
    /* .. تعني الخروج من مجلد assets ثم الدخول لمجلد fonts */
    src: url('../fonts/DalekPinpointBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

.malgrc-font {
    font-family: 'DalekPinpoint', sans-serif !important;
}



/* تطبيق الخط مع زيادة السمك */
h1, h2,  .hero-title {
    font-family: 'DalekPinpoint', sans-serif !important;
    font-weight: 900 !important;
    /* دمج طريقة الـ Stroke لزيادة العرض */
    -webkit-text-stroke: 1px currentColor; 
    letter-spacing: 1px; /* إضافة مسافة بسيطة بين الحروف لتجنب تداخلها بعد التسميك */
}

/* كلمة malgrc داخل النصوص */
.malgrc-font {
    font-family: 'DalekPinpoint', sans-serif !important;
    font-weight: bold !important;
    -webkit-text-stroke: 0.3px currentColor;
}
html[lang="ar"] .hero-title {
  direction: ltr;
  unicode-bidi: isolate;
}


* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px
}

body {
    margin: 0;
    color: var(--ink);
    font-family: var(--serif-text);
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative
}

.site-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
    background: var(--bg)
}

.site-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: sepia(.2) saturate(.9) brightness(1)
}

.site-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 600px at 80% -10%, rgba(201, 161, 74, .15), transparent 60%), radial-gradient(900px 500px at -10% 30%, rgba(176, 127, 74, .12), transparent 60%), #fbf6ec80
}

html[dir=rtl] body {
    font-family: var(--serif-body-ar);
    font-size: 19px
}

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

a {
    color: var(--brown-600);
    text-decoration: none;
    transition: color .25s var(--ease)
}

a:hover {
    color: var(--brown-800)
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px
}

html[dir=ltr] .lang-toggle-ar,
html[dir=rtl] .lang-toggle-en {
    display: none
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    padding: 14px 0;
    background: #fbf6ecd9;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: padding .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease)
}

.site-header.scrolled {
    padding: 8px 0;
    background: #fbf6ecf5;
    border-bottom-color: var(--line);
    box-shadow: 0 6px 22px -16px #3a241066
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: var(--brown-800)
}

.brand-mark {
    font-family: var(--serif-display);
    font-weight: 800;
    letter-spacing: .18em;
    font-size: 22px;
    color: var(--brown-700)
}

.brand-sub {
    margin-top: 4px;
    font-family: var(--serif-text);
    font-size: 11px;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--brown-500)
}

html[dir=rtl] .brand-sub {
    font-family: var(--serif-body-ar);
    letter-spacing: .05em;
    text-transform: none;
    font-size: 12px
}

.main-nav {
    display: flex;
    gap: 22px;
    align-items: center
}

.main-nav a {
    font-family: var(--serif-display);
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--brown-700);
    position: relative;
    padding: 6px 0;
    white-space: nowrap
}

html[dir=rtl] .main-nav a {
    font-family: var(--serif-display-ar);
    letter-spacing: 0;
    text-transform: none;
    font-size: 16px;
    font-weight: 700
}

.main-nav a:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .35s var(--ease)
}

.main-nav a:hover:after {
    transform: scaleX(1)
}

.lang-toggle {
    font-family: var(--serif-display);
    font-size: 12px;
    letter-spacing: .2em;
    background: transparent;
    border: 1px solid var(--brown-500);
    color: var(--brown-700);
    padding: 9px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: all .3s var(--ease);
    white-space: nowrap
}

.lang-toggle:hover {
    background: var(--brown-700);
    color: var(--beige-100);
    border-color: var(--brown-700)
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--brown-500);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--brown-700);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .3s var(--ease)
}

.hero {
    position: relative;
    padding: 180px 0 120px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse 90% 60% at 50% 20%, rgba(245, 234, 212, .9), transparent 70%), linear-gradient(180deg, var(--beige-100) 0%, var(--beige-50) 100%);
    border-bottom: 1px solid var(--line)
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent 0 20px, rgba(110, 69, 31, .04) 20px 21px), repeating-linear-gradient(-45deg, transparent 0 20px, rgba(110, 69, 31, .04) 20px 21px);
    pointer-events: none;
    opacity: .6;
    z-index: 1
}

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

.hero-bg-image {
    width: 100%;
    object-fit: cover;
    object-position: center;
    filter: sepia(.1) saturate(.95) brightness(1.02);
    opacity: .92;
    transform: scale(1.05);
    animation: heroBgPan 28s ease-in-out infinite alternate
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #00000014, #00000038)
}

@keyframes heroBgPan {
    0% {
        transform: scale(1.05) translate(-1.5%)
    }

    to {
        transform: scale(1.08) translate(1.5%)
    }
}

.capital {
    width: 60px;
    height: 22px;
    background: linear-gradient(180deg, var(--brown-400), var(--brown-600));
    border-radius: 4px 4px 0 0;
    box-shadow: 0 2px 0 var(--brown-700)
}

.shaft {
    flex: 1;
    width: 36px;
    background: repeating-linear-gradient(90deg, var(--beige-200) 0 4px, var(--brown-300) 4px 6px);
    border-left: 1px solid var(--brown-500);
    border-right: 1px solid var(--brown-500)
}

.base {
    width: 64px;
    height: 18px;
    background: linear-gradient(180deg, var(--brown-500), var(--brown-700));
    border-radius: 0 0 4px 4px
}

.hero-inner {
    position: relative;
    z-index: 2;
    background: #00000085;
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 1100px;
    margin: 0 auto;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 220, 130, .15);
    box-shadow: 0 24px 64px #00000080
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-family: var(--serif-display);
    font-size: 12px;
    letter-spacing: .5em;
    text-transform: uppercase;
    color: #ffe6a0e6;
    margin-bottom: 36px
}

html[dir=rtl] .hero-eyebrow {
    font-family: var(--serif-display-ar);
    letter-spacing: .1em;
    text-transform: none;
    font-size: 15px
}

.meander {
    width: 80px;
    height: 14px;
    background: linear-gradient(var(--brown-600), var(--brown-600)) 0 0/100% 2px no-repeat, linear-gradient(var(--brown-600), var(--brown-600)) 0 100%/100% 2px no-repeat, repeating-linear-gradient(90deg, var(--brown-600) 0 4px, transparent 4px 14px) 0 50%/100% 2px no-repeat
}

.hero-inner .meander {
    background: linear-gradient(var(--gold), var(--gold)) 0 0/100% 2px no-repeat, linear-gradient(var(--gold), var(--gold)) 0 100%/100% 2px no-repeat, repeating-linear-gradient(90deg, var(--gold) 0 4px, transparent 4px 14px) 0 50%/100% 2px no-repeat;
    opacity: .75
}

.hero-title {
    font-family:  var(--serif-display);
    font-weight: 900;
    font-size: clamp(54px, 11vw, 148px);
    line-height: 1;
    letter-spacing: .02em;
    margin: 0 0 28px;
    color: #fff0c8f2;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .3), 0 4px 30px rgba(0, 0, 0, .4);
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap
}

.hero-title .letter {
    display: inline-block;
    background: linear-gradient(180deg, #ffe8a0, #d4aa55 55%, #a07830);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: letterRise .9s var(--ease) backwards
}

.hero-title .dot {
    color: var(--gold);
    margin: 0 .15em;
    display: inline-block;
    transform: translateY(-.18em);
    animation: dotPulse 2.6s ease-in-out infinite
}

.hero-title .letter:nth-child(1) {
    animation-delay: .05s
}

.hero-title .letter:nth-child(3) {
    animation-delay: .15s
}

.hero-title .letter:nth-child(5) {
    animation-delay: .25s
}

.hero-title .letter:nth-child(7) {
    animation-delay: .35s
}

.hero-title .letter:nth-child(9) {
    animation-delay: .45s
}

.hero-title .letter:nth-child(11) {
    animation-delay: .55s
}

@keyframes letterRise {
    0% {
        opacity: 0;
        transform: translateY(40px) rotateX(40deg)
    }

    to {
        opacity: 1;
        transform: translateY(0) rotateX(0)
    }
}

@keyframes dotPulse {

    0%,
    to {
        opacity: .35
    }

    50% {
        opacity: 1
    }
}

html[dir=rtl] .hero-title {
    gap: 0;
    letter-spacing: .04em
}

html[dir=rtl] .hero-title .dot {
    display: none
}

html[dir=rtl] .hero-title .letter {
    margin: 0
}

.hero-tagline {
    font-family: var(--serif-display);
    font-size: clamp(13px, 1.6vw, 17px);
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #ffe196eb;
    margin: 0 auto 36px;
    max-width: 920px
}

html[dir=rtl] .hero-tagline {
    font-family: var(--serif-display-ar);
    letter-spacing: 0;
    text-transform: none;
    font-size: clamp(16px, 2vw, 22px)
}

.hero-lede {
    font-family: var(--serif-body);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.65;
    color: #fff0d2e0;
    max-width: 820px;
    margin: 0 auto 44px;
    font-style: italic
}

html[dir=rtl] .hero-lede {
    font-family: var(--serif-body-ar);
    font-style: normal
}

.hero-cta {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif-display);
    font-size: 13px;
    letter-spacing: .25em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 999px;
    cursor: pointer;
    transition: all .35s var(--ease);
    border: 1px solid transparent;
    white-space: nowrap
}

html[dir=rtl] .btn {
    font-family: var(--serif-display-ar);
    letter-spacing: 0;
    text-transform: none;
    font-size: 16px
}

.btn-primary {
    background: linear-gradient(180deg, var(--brown-600), var(--brown-800));
    color: var(--beige-100);
    border-color: var(--brown-700);
    box-shadow: 0 8px 22px -10px #3a241080
}

.btn-primary:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 30px -10px #3a241099;
    color: var(--beige-50)
}

.btn-ghost {
  background: linear-gradient(180deg, var(--brown-600), var(--brown-800));
    color: var(--beige-100);
    border-color: var(--brown-700);
    box-shadow: 0 8px 22px -10px #3a241080
}

.btn-ghost:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 30px -10px #3a241099;
    color: var(--beige-50)
}

.scroll-indicator {
    margin-top: 64px;
    display: flex;
    justify-content: center
}

.scroll-indicator span {
    display: block;
    width: 1px;
    height: 56px;
    background: linear-gradient(180deg, transparent, var(--brown-500));
    position: relative
}

.scroll-indicator span:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--gold), transparent 60%);
    animation: scrollLine 2s ease-in-out infinite
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%)
    }

    to {
        transform: translateY(100%)
    }
}

.section {
    position: relative;
    padding: 110px 0
}

.section+.section {
    border-top: 1px solid var(--line)
}

.section-header {
    margin-bottom: 56px;
    position: relative
}

.section-header.centered {
    text-align: center
}

.kicker {
    display: inline-block;
    font-family: var(--serif-display);
    font-size: 12px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--brown-500);
    margin-bottom: 18px
}

html[dir=rtl] .kicker {
    font-family: var(--serif-display-ar);
    letter-spacing: .05em;
    text-transform: none;
    font-size: 14px
}

.section-header h2 {
    font-family: var(--serif-display);
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.05;
    margin: 0;
    color: var(--brown-800);
    font-weight: 700;
    letter-spacing: .04em
}

html[dir=rtl] .section-header h2 {
    font-family: var(--serif-display-ar);
    letter-spacing: 0;
    font-weight: 700
}

.section-sub {
    font-family: var(--serif-body);
    font-style: italic;
    font-size: 18px;
    color: var(--ink-soft);
    margin: 18px auto 0;
    max-width: 880px;
    line-height: 1.7
}

html[dir=rtl] .section-sub {
    font-family: var(--serif-body-ar);
    font-style: normal
}

.ornament {
    display: block;
    margin: 24px auto 0;
    width: 120px;
    height: 18px;
    background: linear-gradient(var(--gold), var(--gold)) 50% 0/8px 8px no-repeat, linear-gradient(var(--brown-500), var(--brown-500)) 50% 50%/100% 1px no-repeat
}

.section-header:not(.centered) .ornament {
    margin-left: 0;
    margin-right: auto
}

html[dir=rtl] .section-header:not(.centered) .ornament {
    margin-left: auto;
    margin-right: 0
}

.value-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: center
}

.value-text p {
    margin: 0 0 22px
}

.value-text .lead {
    font-family: var(--serif-body);
    font-size: 22px;
    line-height: 1.6;
    color: var(--brown-800);
    font-style: italic
}

html[dir=rtl] .value-text .lead {
    font-family: var(--serif-body-ar);
    font-style: normal
}

.value-image-wrap {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.value-image {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--beige-200), var(--brown-300));
    box-shadow: 0 0 0 1px var(--brown-700), 0 0 0 6px var(--beige-100), 0 0 0 7px var(--gold), 0 26px 60px -22px #3a24108c;
    filter: sepia(.18) saturate(.95);
    transition: transform .6s var(--ease), filter .4s var(--ease)
}

.value-image:hover {
    transform: translateY(-4px);
    filter: sepia(0) saturate(1)
}

.value-image-caption {
    font-family: var(--serif-display);
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--brown-500);
    margin-top: 6px;
    opacity: .6
}

html[dir=rtl] .value-image-caption {
    font-family: var(--serif-display-ar);
    letter-spacing: 0;
    text-transform: none;
    font-size: 13px
}

.section-vision {
    background: radial-gradient(ellipse at center, rgba(201, 161, 74, .12), transparent 70%), linear-gradient(180deg, var(--beige-50), var(--beige-100))
}

.grand-quote {
    position: relative;
    margin: 0 auto;
    max-width: 920px;
    text-align: center;
    padding: 60px 30px;
    font-family: var(--serif-display);
    font-size: clamp(24px, 3.4vw, 40px);
    line-height: 1.5;
    color: var(--brown-800);
    font-weight: 600;
    letter-spacing: .02em
}

html[dir=rtl] .grand-quote {
    font-family: var(--serif-display-ar)
}

.grand-quote p {
    margin: 0
}

.quote-mark {
    position: absolute;
    font-family: serif;
    font-size: 180px;
    line-height: 1;
    color: var(--gold);
    opacity: .45
}

.quote-mark.left {
    top: -80px;
 left: 80px;
}

.quote-mark.right {
    bottom: -80px;
   right: 80px; 
}


html[dir=rtl] .quote-mark.left {
    left: auto;
    right: 0
}

html[dir=rtl] .quote-mark.right {
    right: auto;
    left: 0
}

.mission-card {
    margin: 0 auto;
    max-width: 980px;
    background: linear-gradient(180deg, #fff8e9, var(--beige-100));
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 48px;
    box-shadow: var(--shadow-soft);
    position: relative
}

.mission-card:before,
.mission-card:after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--brown-600)
}

.mission-card:before {
    top: -2px;
    left: -2px;
    border-right: 0;
    border-bottom: 0
}

.mission-card:after {
    bottom: -2px;
    right: -2px;
    border-left: 0;
    border-top: 0
}

.mission-card p {
    font-family: var(--serif-body);
    font-size: 22px;
    line-height: 1.7;
    margin: 0;
    color: var(--brown-800);
    font-style: italic
}

html[dir=rtl] .mission-card p {
    font-family: var(--serif-body-ar);
    font-style: normal
}

.section-pillars {
    background: linear-gradient(180deg, var(--beige-100), var(--beige-50))
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.pillar {
    position: relative;
    padding: 44px 28px 32px;
    background: linear-gradient(180deg, #fff9eb, var(--beige-100));
    border: 1px solid var(--line);
    border-radius: 6px;
    text-align: center;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
    overflow: hidden;
    color: inherit;
    display: block
}

.pillar:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(201, 161, 74, .18), transparent 60%);
    opacity: 0;
    transition: opacity .4s var(--ease)
}

.pillar:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
    border-color: var(--brown-500)
}

.pillar:hover:before {
    opacity: 1
}

.pillar-letter {
    position: relative;
    font-family: var(--serif-display);
    font-size: 78px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--brown-600);
    margin: 0 auto 12px;
    line-height: 1;
    transition: color .4s var(--ease), transform .4s var(--ease)
}

.pillar:hover .pillar-letter {
    color: var(--brown-700);
    transform: scale(1.05)
}

.pillar h3 {
    position: relative;
    font-family: var(--serif-display);
    font-size: 22px;
    margin: 0 0 12px;
    color: var(--brown-800);
    letter-spacing: .06em
}

html[dir=rtl] .pillar h3 {
    font-family: var(--serif-display-ar);
    letter-spacing: 0
}

.pillar p {
    position: relative;
    font-family: var(--serif-text);
    font-size: 16px;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.6
}

html[dir=rtl] .pillar p {
    font-family: var(--serif-body-ar);
    font-size: 17px
}

.pillar-detail {
    background: linear-gradient(180deg, var(--beige-50), var(--beige-100))
}

.pillar-detail.alt {
    background: radial-gradient(ellipse at top, rgba(201, 161, 74, .1), transparent 60%), linear-gradient(180deg, var(--beige-100), var(--beige-50))
}

.big-letter {
    display: inline-block;
    font-family: var(--serif-display);
    color: var(--gold);
    font-weight: 900;
    margin-right: 14px;
    font-size: 1.2em;
    vertical-align: -.05em;
    text-shadow: 0 2px 0 var(--brown-700)
}

html[dir=rtl] .big-letter {
    margin-right: 0;
    margin-left: 14px
}

.pillar-body {
    margin-bottom: 44px
}

.pillar-lede {
    font-family: var(--serif-body);
    font-size: 21px;
    line-height: 1.85;
    color: var(--ink);
    max-width: 980px;
    margin: 0;
    font-style: italic
}

html[dir=rtl] .pillar-lede {
    font-family: var(--serif-body-ar);
    font-style: normal;
    font-size: 20px
}

.pillar-foot {
    margin-top: 24px;
    font-family: var(--serif-body);
    font-style: italic;
    font-size: 18px;
    color: var(--brown-700);
    border-top: 1px solid var(--line);
    padding-top: 18px
}

html[dir=rtl] .pillar-foot {
    font-family: var(--serif-body-ar);
    font-style: normal
}

.key-aspects {
    background: linear-gradient(180deg, #fff8e9, var(--beige-100));
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 36px 40px;
    box-shadow: var(--shadow-soft);
    position: relative;
    margin-bottom: 28px
}

.key-title {
    font-family: var(--serif-display);
    font-size: 24px;
    margin: 0 0 22px;
    color: var(--brown-800);
    letter-spacing: .04em;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px
}

html[dir=rtl] .key-title {
    font-family: var(--serif-display-ar);
    letter-spacing: 0
}

.aspects-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px
}

.aspects-list li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 16px 20px;
    background: #ffffff80;
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    transition: transform .3s var(--ease), background .3s var(--ease)
}

html[dir=rtl] .aspects-list li {
    border-left: 0;
    border-right: 3px solid var(--gold)
}

.aspects-list li:hover {
    background: #fffc;
    transform: translate(6px)
}

html[dir=rtl] .aspects-list li:hover {
    transform: translate(-6px)
}

.bullet {
    font-size: 22px;
    color: var(--gold);
    line-height: 1;
    margin-top: 4px;
    flex-shrink: 0
}

.aspects-list strong {
    font-family: var(--serif-display);
    color: var(--brown-800);
    font-weight: 700;
    letter-spacing: .03em
}

html[dir=rtl] .aspects-list strong {
    font-family: var(--serif-display-ar);
    letter-spacing: 0
}

.aspects-list span {
    font-family: var(--serif-text);
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.65
}

html[dir=rtl] .aspects-list span {
    font-family: var(--serif-body-ar);
    font-size: 18px
}

.aspects-list.strategies li {
    padding: 22px 24px
}

.aspects-list.strategies strong {
    font-size: 20px
}

.numbered-list {
    list-style: none;
    counter-reset: ncount;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
}

.numbered-list li {
    counter-increment: ncount;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #ffffff80;
    border-radius: 4px;
    border-left: 3px solid var(--gold);
    transition: transform .3s var(--ease), background .3s var(--ease)
}

html[dir=rtl] .numbered-list li {
    border-left: 0;
    border-right: 3px solid var(--gold)
}

.numbered-list li:before {
    content: counter(ncount, decimal-leading-zero);
    font-family: var(--serif-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    flex-shrink: 0;
    width: 44px
}

.numbered-list li:hover {
    background: #ffffffd9;
    transform: translate(4px)
}

html[dir=rtl] .numbered-list li:hover {
    transform: translate(-4px)
}

.numbered-list span {
    font-family: var(--serif-display);
    color: var(--brown-800);
    font-size: 17px;
    letter-spacing: .02em
}

html[dir=rtl] .numbered-list span {
    font-family: var(--serif-display-ar);
    letter-spacing: 0;
    font-size: 18px
}

.process-steps {
    background: linear-gradient(180deg, #fff8e9, var(--beige-100));
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 36px 40px;
    box-shadow: var(--shadow-soft)
}

.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 18px
}

.steps li {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 22px 24px;
    background: #fff9;
    border-radius: 6px;
    border-left: 3px solid var(--brown-600)
}

html[dir=rtl] .steps li {
    border-left: 0;
    border-right: 3px solid var(--brown-600)
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--gold-soft), var(--gold));
    color: var(--brown-900);
    font-family: var(--serif-display);
    font-weight: 900;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px -4px #3a241066
}

.steps strong {
    display: block;
    font-family: var(--serif-display);
    font-size: 19px;
    color: var(--brown-800);
    margin-bottom: 6px;
    letter-spacing: .04em
}

html[dir=rtl] .steps strong {
    font-family: var(--serif-display-ar);
    letter-spacing: 0
}

.steps p {
    font-family: var(--serif-text);
    font-size: 16px;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.65
}

html[dir=rtl] .steps p {
    font-family: var(--serif-body-ar);
    font-size: 17px
}

.legal-note {
    background: #ffffff80;
    border: 1px dashed var(--brown-500);
    border-radius: 6px;
    padding: 28px 32px;
    margin-top: 28px
}

.legal-note p {
    margin: 0;
    font-family: var(--serif-body);
    font-style: italic;
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.7
}

html[dir=rtl] .legal-note p {
    font-family: var(--serif-body-ar);
    font-style: normal;
    font-size: 18px
}

.section-people {
    background: radial-gradient(ellipse at top, rgba(201, 161, 74, .1), transparent 60%), linear-gradient(180deg, var(--beige-50), var(--beige-100))
}

.section-people.alt {
    background: radial-gradient(ellipse at bottom, rgba(176, 127, 74, .12), transparent 60%), linear-gradient(180deg, var(--beige-100), var(--beige-50))
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px
}

.person-card {
    position: relative;
    padding: 24px 20px 28px;
    text-align: center;
    background: linear-gradient(160deg, #2d1a0d, #1a0c04);
    border: 1px solid rgba(201, 161, 74, .28);
    border-radius: 12px;
    box-shadow: 0 12px 40px #00000073;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    overflow: hidden
}

.person-card:before,
.person-card:after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--gold)
}

.person-card:before {
    top: 10px;
    left: 10px;
    border-right: 0;
    border-bottom: 0
}

.person-card:after {
    bottom: 10px;
    right: 10px;
    border-left: 0;
    border-top: 0
}

.person-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px #0009
}

.person-frame {
    position: relative;
    width: min(220px, 80%);
    aspect-ratio: 1 / 1;
    margin: 10px auto 20px;
    --frame-hole-size: 72%;
    --frame-hole-offset-y: 0%
}

.person-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(201, 161, 74, .4);
    box-shadow: 0 0 0 1px #c9a14a33, 0 18px 40px -16px #0009
}

.person-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease)
}

.person-card:hover .person-img-wrap img {
    transform: scale(1.06)
}

.person-photo {
    position: absolute;
    top: calc(50% + var(--frame-hole-offset-y));
    left: 47.5%;
    transform: translate(-50%, -50%);
    width: var(--frame-hole-size);
    height: var(--frame-hole-size);
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, var(--beige-200), var(--brown-300));
    z-index: 1;
    transition: transform .6s var(--ease), filter .4s var(--ease);
    filter: none
}

.person-card:hover .person-photo {
    transform: translate(-50%, -50%) scale(1.05);
    filter: none
}

section.section-framed {
    position: relative;
    margin: 36px clamp(80px, 9vw, 180px) !important;
    padding: 60px clamp(28px, 5vw, 72px);
    border: 50px solid transparent;
    border-image-source: url(/section-frame.png);
    border-image-slice: 60 fill;
    border-image-width: 50px;
    border-image-repeat: round;
    border-image-outset: 0;
    background: #fbf6ece0 !important;
    background-clip: padding-box;
    box-shadow: 0 24px 60px -28px #3a241066;
    border-bottom: 50px solid transparent !important;
    border-top: 50px solid transparent !important
}

section.section-framed.alt {
    background: #f5ead4e6 !important
}

.section-framed>.container {
    padding: 0
}

@media(max-width:760px) {
    section.section-framed {
        margin: 16px 0 !important;
        padding: 36px 18px
    }
}

.person-frame-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, .12));
    transition: transform .6s var(--ease)
}

.person-card:hover .person-frame-overlay {
    transform: rotate(-2deg) scale(1.02)
}

.person-flag {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 22px;
    background: #ffffffb3;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px 10px;
    box-shadow: var(--shadow-soft);
    line-height: 1
}

html[dir=rtl] .person-flag {
    right: auto;
    left: 14px
}

.person-card h3 {
    font-family: var(--serif-display);
    font-size: 20px;
    margin: 0 0 6px;
    color: #fff0c8fa;
    letter-spacing: .04em;
    line-height: 1.25
}

html[dir=rtl] .person-card h3 {
    font-family: var(--serif-display-ar);
    letter-spacing: 0
}

.person-role {
    font-family: var(--serif-body);
    font-style: italic;
    font-size: 13px;
    color: #c9a14ae6;
    margin: 0 0 12px;
    letter-spacing: .04em;
    line-height: 1.5
}

html[dir=rtl] .person-role {
    font-family: var(--serif-body-ar);
    font-style: normal;
    letter-spacing: 0;
    font-size: 15px
}

.person-bio {
    font-family: var(--serif-text);
    font-size: 14.5px;
    color: #f5e4c3bf;
    margin: 0;
    line-height: 1.65;
    text-align: start
}

html[dir=rtl] .person-bio {
    font-family: var(--serif-body-ar);
    font-size: 16px
}

.section-support {
    background: linear-gradient(180deg, var(--beige-50), var(--beige-100))
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.support-card {
    position: relative;
    padding: 32px 28px;
    background: linear-gradient(180deg, #fff8e9, var(--beige-100));
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease)
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong)
}

.support-card:before,
.support-card:after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    border: 2px solid var(--brown-600)
}

.support-card:before {
    top: 10px;
    left: 10px;
    border-right: 0;
    border-bottom: 0
}

.support-card:after {
    bottom: 10px;
    right: 10px;
    border-left: 0;
    border-top: 0
}

.support-emblem {
    font-family: var(--serif-display);
    font-weight: 900;
    font-size: 32px;
    letter-spacing: .1em;
    color: var(--brown-700);
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 12px 18px;
    border: 2px solid var(--brown-700);
    border-radius: 4px;
    background: linear-gradient(180deg, var(--gold-soft), #d6a85a);
    box-shadow: var(--shadow-soft);
    margin-bottom: 18px
}

.support-emblem span {
    font-size: 12px;
    letter-spacing: .3em;
    color: var(--brown-800);
    font-weight: 700
}

.support-flag {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 22px;
    background: #ffffffb3;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px 10px;
    line-height: 1
}

html[dir=rtl] .support-flag {
    right: auto;
    left: 16px
}

.support-card h3 {
    font-family: var(--serif-display);
    font-size: 22px;
    margin: 0 0 12px;
    color: var(--brown-800);
    letter-spacing: .04em
}

html[dir=rtl] .support-card h3 {
    font-family: var(--serif-display-ar);
    letter-spacing: 0
}

.support-card p {
    font-family: var(--serif-text);
    font-size: 16px;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.7
}

html[dir=rtl] .support-card p {
    font-family: var(--serif-body-ar);
    font-size: 17px
}

.section-contact {
    background: radial-gradient(ellipse at top, rgba(201, 161, 74, .15), transparent 60%), linear-gradient(180deg, var(--beige-100), var(--beige-50))
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 880px;
    margin: 0 auto
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 28px;
    text-align: center;
    background: linear-gradient(180deg, #fff8e9, var(--beige-100));
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    color: var(--brown-700);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
    position: relative
}

.contact-card:before,
.contact-card:after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    border: 2px solid var(--gold)
}

.contact-card:before {
    top: 10px;
    left: 10px;
    border-right: 0;
    border-bottom: 0
}

.contact-card:after {
    bottom: 10px;
    right: 10px;
    border-left: 0;
    border-top: 0
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    border-color: var(--brown-500);
    color: var(--brown-800)
}

.contact-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--gold-soft), var(--gold));
    color: var(--brown-900);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 6px 16px -8px #3a241080
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    stroke-linecap: round;
    stroke-linejoin: round
}

.contact-label {
    font-family: var(--serif-display);
    font-size: 12px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--brown-500);
    margin-bottom: 6px
}

html[dir=rtl] .contact-label {
    font-family: var(--serif-display-ar);
    letter-spacing: 0;
    text-transform: none;
    font-size: 14px
}

.contact-value {
    font-family: var(--serif-display);
    font-size: 22px;
    letter-spacing: .05em;
    color: var(--brown-800);
    word-break: break-all;
    overflow-wrap: break-word;
    max-width: 100%
}

.site-footer {
    background: radial-gradient(ellipse at top, rgba(201, 161, 74, .12), transparent 60%), linear-gradient(180deg, var(--brown-800), var(--brown-900));
    color: var(--beige-100);
    padding: 72px 0 36px;
    text-align: center
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px
}

.footer-brand .brand-mark {
    color: var(--gold-soft);
    font-size: 28px
}

.footer-brand p {
    margin-top: 10px;
    font-family: var(--serif-body);
    font-style: italic;
    color: var(--beige-200);
    letter-spacing: .1em
}

html[dir=rtl] .footer-brand p {
    font-family: var(--serif-body-ar);
    font-style: normal;
    letter-spacing: 0
}

.footer-meander {
    width: 240px;
    height: 16px;
    background: linear-gradient(var(--gold), var(--gold)) 0 0/100% 2px no-repeat, linear-gradient(var(--gold), var(--gold)) 0 100%/100% 2px no-repeat, repeating-linear-gradient(90deg, var(--gold) 0 4px, transparent 4px 14px) 0 50%/100% 2px no-repeat;
    opacity: .6
}

.footer-copy {
    font-family: var(--serif-text);
    font-size: 14px;
    color: var(--beige-300);
    margin: 0;
    letter-spacing: .08em
}

html[dir=rtl] .footer-copy {
    font-family: var(--serif-body-ar);
    letter-spacing: 0;
    font-size: 15px
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    will-change: opacity, transform
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0)
}

.pillar.reveal,
.person-card.reveal,
.support-card.reveal {
    transition-delay: calc(var(--i, 0) * 70ms)
}

@media(max-width:1100px) {
    .main-nav {
        gap: 16px
    }

    .main-nav a {
        font-size: 11px;
        letter-spacing: .18em
    }
}

@media(max-width:1024px) {

    .pillars-grid,
    .people-grid,
    .support-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

@media(max-width:900px) {
    .main-nav {
        display: none
    }

    .nav-toggle {
        display: inline-flex
    }

    .site-header.menu-open .main-nav {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--beige-100);
        padding: 24px 28px;
        gap: 18px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-soft)
    }

    .header-inner {
        gap: 12px
    }

    .brand-sub {
        display: none
    }

    .hero {
        padding: 140px 0 80px
    }

    .section {
        padding: 84px 0
    }

    .section-header {
        margin-bottom: 44px
    }

    .key-aspects,
    .process-steps {
        padding: 28px 22px
    }

    .mission-card {
        padding: 32px 24px
    }

    .grand-quote {
        padding: 40px 16px;
        font-size: 22px
    }

    .quote-mark {
        font-size: 110px
    }

    .quote-mark.right {
        bottom: -40px
    }

    .numbered-list,
    .contact-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:560px) {

    .pillars-grid,
    .people-grid,
    .support-grid {
        grid-template-columns: 1fr
    }

    .container {
        padding: 0 20px
    }

    body {
        font-size: 17px
    }

    .hero-cta .btn {
        width: 100%
    }

    .hero-eyebrow {
        gap: 10px;
        font-size: 10px;
        letter-spacing: .3em
    }

    .meander {
        width: 50px
    }

    .person-frame {
        width: min(180px, 75%);
        height: auto;
        aspect-ratio: 1 / 1
    }

    .contact-value {
        font-size: 16px;
        letter-spacing: .02em
    }

    .contact-card {
        padding: 28px 18px
    }

    .contact-grid {
        gap: 16px
    }

    .lang-toggle {
        padding: 8px 14px;
        font-size: 11px
    }

    .steps li {
        padding: 18px 16px;
        gap: 14px
    }

    .step-num {
        width: 40px;
        height: 40px;
        font-size: 17px
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

::selection {
    background: var(--brown-700);
    color: var(--beige-100)
}




    .person-card {
        text-decoration: none;
        color: inherit;
        display: block;
        transition: transform 0.3s ease;
    }
    .person-card:hover {
        transform: scale(1.05);
    }
