:root {
    --navy-950: #030a1d;
    --navy-900: #061331;
    --navy-800: #092252;
    --iambe-blue: #20266f;
    --red: #e51f2f;
    --gold: #d7ad63;
    --gold-soft: #f2d89d;
    --white: #ffffff;
    --paper: #f7f8fb;
    --ink: #0c1837;
    --muted: #63708b;
    --line: rgba(255, 255, 255, 0.16);
    --line-dark: rgba(12, 24, 55, 0.12);
    --shadow: 0 24px 70px rgba(2, 8, 26, 0.28);
    --radius: 8px;
    --font-body: "Inter", "Tajawal", Arial, sans-serif;
    --font-display: "Playfair Display", Georgia, serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--navy-950);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: 0;
}

body.menu-open {
    overflow: hidden;
}

body[dir="rtl"] {
    font-family: "Tajawal", "Inter", Arial, sans-serif;
}

body[dir="rtl"] .section-label,
body[dir="rtl"] .brand-copy small {
    letter-spacing: 0;
}

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

main,
section,
.site-header,
.hero-copy,
.about-grid,
.service-grid,
.audience-list,
.founder-section,
.photo-grid,
.impact-grid,
.contact-panel,
.site-footer {
    min-width: 0;
    max-width: 100%;
}

h1,
h2,
h3,
p,
a,
button {
    overflow-wrap: break-word;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 18px 40px;
    background: rgba(3, 10, 29, 0.38);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: background 240ms ease, border-color 240ms ease, padding 240ms ease;
}

.site-header.scrolled {
    padding-block: 12px;
    background: rgba(3, 10, 29, 0.88);
    border-color: rgba(255, 255, 255, 0.12);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
}

.brand-mark {
    width: 64px;
    height: 58px;
    flex: 0 0 64px;
    display: grid;
    place-items: center;
    overflow: visible;
    perspective: 600px;
}

.brand-mark img {
    width: 74px;
    height: 74px;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.36)) drop-shadow(0 0 18px rgba(242, 216, 157, 0.18));
    transform: translateZ(0);
    transition: transform 260ms var(--ease), filter 260ms ease;
}

.brand:hover .brand-mark img {
    transform: translateY(-2px) rotateX(4deg) rotateY(-5deg);
    filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 22px rgba(242, 216, 157, 0.26));
}

.brand-copy {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.brand-copy strong {
    font-family: var(--font-display);
    font-size: 1.34rem;
    line-height: 1;
}

.brand-copy small {
    max-width: 260px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.desktop-nav a,
.mobile-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 180ms ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 220ms var(--ease);
}

.desktop-nav a:hover,
.mobile-nav a:hover {
    color: var(--white);
}

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

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.language-switch {
    display: inline-flex;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.lang-button {
    width: 38px;
    height: 30px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font: 800 0.78rem var(--font-body);
    cursor: pointer;
}

.lang-button.active {
    background: var(--white);
    color: var(--navy-900);
}

.header-contact {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border-radius: var(--radius);
    background: var(--red);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms ease;
}

.header-contact:hover {
    transform: translateY(-2px);
    background: #ff2939;
    box-shadow: 0 12px 34px rgba(229, 31, 47, 0.28);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    transition: transform 200ms ease;
}

.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(420px, 0.9fr) minmax(480px, 1.1fr);
    align-items: center;
    gap: 28px;
    padding: 138px 40px 74px;
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(3, 10, 29, 0), var(--paper));
    pointer-events: none;
    z-index: -1;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: var(--font-display);
    letter-spacing: 0;
}

h1 {
    margin-bottom: 28px;
    font-size: 4.7rem;
    line-height: 0.98;
    max-width: 760px;
}

.hero-copy p {
    max-width: 620px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.16rem;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: var(--radius);
    font-weight: 800;
    text-decoration: none;
    transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms ease, background 220ms ease;
}

.button svg,
.text-link svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 18px 45px rgba(229, 31, 47, 0.26);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.button:hover,
.text-link:hover,
.contact-card:hover {
    transform: translateY(-3px);
}

.button-primary:hover {
    background: #ff2939;
}

.button-secondary:hover {
    border-color: var(--gold-soft);
    background: rgba(255, 255, 255, 0.12);
}

.hero-contact-line {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-contact-line a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
}

.contact-value {
    direction: ltr;
    unicode-bidi: isolate;
}

.hero-contact-line svg,
.contact-card svg,
.service-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-visual {
    position: absolute;
    inset: 0 0 auto 28%;
    height: 100vh;
    z-index: -1;
    transform-style: preserve-3d;
    pointer-events: none;
    overflow: hidden;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--navy-950) 0%, rgba(3, 10, 29, 0.78) 23%, rgba(3, 10, 29, 0.08) 54%, rgba(3, 10, 29, 0.16) 100%);
    z-index: 1;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transform: translate3d(var(--tilt-x, 0), var(--tilt-y, 0), 0) scale(1.02);
    transition: transform 300ms ease-out;
}

.hero-gold-divider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 3;
    height: clamp(82px, 10vw, 128px);
    pointer-events: none;
}

.hero-gold-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

.divider-paper {
    fill: var(--paper);
}

.divider-shadow,
.divider-gold-under,
.divider-gold {
    fill: none;
    stroke-linecap: round;
}

.divider-shadow {
    stroke: rgba(3, 10, 29, 0.3);
    stroke-width: 5;
    opacity: 0.26;
}

.divider-gold-under {
    stroke: rgba(77, 47, 11, 0.5);
    stroke-width: 7;
}

.divider-gold {
    stroke: var(--gold-soft);
    stroke-width: 3.4;
    filter: drop-shadow(0 3px 7px rgba(215, 173, 99, 0.45));
}

.section,
.audience-band,
.contact-section,
.site-footer {
    position: relative;
    z-index: 2;
}

.section {
    padding: 110px 40px;
    background: var(--paper);
    color: var(--ink);
}

.about-section {
    padding-top: 120px;
}

.section-intro {
    max-width: 830px;
    margin-bottom: 42px;
}

.section-intro::after {
    content: "";
    display: block;
    width: 104px;
    height: 3px;
    margin-top: 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--red) 50%, var(--gold));
    box-shadow: 0 8px 20px rgba(215, 173, 99, 0.26);
}

.section-intro.center {
    margin-inline: auto;
    text-align: center;
}

.section-intro.center::after {
    margin-inline: auto;
}

.section-label {
    margin-bottom: 14px;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section h2,
.audience-band h2,
.contact-panel h2 {
    margin-bottom: 0;
    color: var(--ink);
    font-size: 3rem;
    line-height: 1.08;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.25fr) minmax(240px, 0.75fr) minmax(240px, 0.75fr);
    gap: 18px;
    align-items: stretch;
}

.about-copy,
.mission-card,
.service-card,
.impact-item,
.contact-card {
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line-dark);
    box-shadow: 0 14px 34px rgba(9, 34, 82, 0.08);
}

.about-copy {
    padding: 34px;
}

.about-copy p,
.mission-card p,
.service-card p,
.founder-copy p,
.impact-item p,
.contact-panel p {
    color: var(--muted);
}

.about-copy p:last-child,
.mission-card p:last-child,
.service-card p:last-child,
.founder-copy p:last-child,
.impact-item p:last-child,
.contact-panel p:last-child {
    margin-bottom: 0;
}

.mission-card {
    padding: 30px;
}

.mission-card h3,
.service-card h3,
.impact-item h3 {
    color: var(--navy-900);
    font-size: 1.2rem;
    line-height: 1.22;
}

.programs-section {
    background: var(--white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    min-height: 286px;
    padding: 28px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 70%) var(--y, 20%), rgba(215, 173, 99, 0.22), transparent 36%);
    opacity: 0;
    transition: opacity 240ms ease;
}

.service-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    border-color: rgba(229, 31, 47, 0.25);
    box-shadow: var(--shadow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card > * {
    position: relative;
}

.service-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: var(--radius);
    background: var(--navy-900);
    color: var(--gold-soft);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.audience-band {
    padding: 92px 40px;
    background:
        linear-gradient(180deg, rgba(3, 10, 29, 0.92), rgba(6, 19, 49, 0.98)),
        url("Images/iambe-hero-bridge.png") center / cover;
    color: var(--white);
}

.audience-band .section-label,
.audience-band h2 {
    color: var(--white);
}

.audience-band .section-label {
    color: var(--gold-soft);
}

.audience-list {
    max-width: 1140px;
    margin: 36px auto 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
}

.audience-list span {
    min-height: 104px;
    display: grid;
    place-items: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-display);
    font-size: 1.16rem;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.audience-list span:first-child {
    border-left: 0;
}

body[dir="rtl"] .audience-list span {
    border-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
}

body[dir="rtl"] .audience-list span:first-child {
    border-right: 0;
}

body[dir="rtl"] .hero-copy {
    justify-self: end;
    text-align: right;
}

body[dir="rtl"] .hero-visual {
    inset: 0 28% auto 0;
}

body[dir="rtl"] .hero-visual::before {
    background: linear-gradient(270deg, var(--navy-950) 0%, rgba(3, 10, 29, 0.78) 23%, rgba(3, 10, 29, 0.08) 54%, rgba(3, 10, 29, 0.16) 100%);
}

body[dir="rtl"] .hero-visual img {
    object-position: left center;
    transform: translate3d(var(--tilt-x, 0), var(--tilt-y, 0), 0) scaleX(-1) scale(1.02);
}

body[dir="rtl"] .button svg,
body[dir="rtl"] .text-link svg {
    transform: scaleX(-1);
}

.founder-section {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1.15fr);
    align-items: center;
    gap: 54px;
    background: var(--paper);
}

.founder-media {
    position: relative;
    min-height: 560px;
    perspective: 1200px;
}

.founder-portrait,
.founder-training-card {
    margin: 0;
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
    transition: transform 360ms var(--ease), box-shadow 360ms var(--ease);
}

.founder-portrait {
    inset: 0 18% 12% 0;
    box-shadow: var(--shadow);
}

.founder-portrait img,
.founder-training-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-portrait img {
    object-position: center;
}

.founder-portrait figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 14px 16px;
    border-radius: var(--radius);
    background: rgba(3, 10, 29, 0.82);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.founder-portrait figcaption span,
.founder-portrait figcaption strong {
    display: block;
}

.founder-portrait figcaption span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
    font-weight: 800;
}

.founder-portrait figcaption strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.1;
}

.founder-training-card {
    right: 0;
    bottom: 0;
    width: 42%;
    aspect-ratio: 3 / 4;
    border: 6px solid var(--paper);
    box-shadow: 0 22px 56px rgba(2, 8, 26, 0.24);
    transform: rotate(2deg) translateZ(24px);
}

.founder-media:hover .founder-portrait {
    transform: rotateX(1deg) rotateY(-2deg) translateY(-6px);
}

.founder-media:hover .founder-training-card {
    box-shadow: 0 28px 70px rgba(2, 8, 26, 0.3);
    transform: rotate(0deg) translateY(-8px) translateZ(34px);
}

body[dir="rtl"] .founder-portrait {
    inset: 0 0 12% 18%;
}

body[dir="rtl"] .founder-training-card {
    right: auto;
    left: 0;
    transform: rotate(-2deg) translateZ(24px);
}

body[dir="rtl"] .founder-media:hover .founder-portrait {
    transform: rotateX(1deg) rotateY(2deg) translateY(-6px);
}

body[dir="rtl"] .founder-media:hover .founder-training-card {
    transform: rotate(0deg) translateY(-8px) translateZ(34px);
}

.founder-copy {
    max-width: 720px;
}

.founder-copy p {
    font-size: 1.05rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    color: var(--red);
    font-weight: 900;
    text-decoration: none;
    transition: transform 220ms var(--ease);
}

.practice-section {
    background: var(--paper);
}

.practice-section .section-intro p:not(.section-label) {
    max-width: 650px;
    color: var(--muted);
}

.photo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    grid-template-rows: repeat(2, minmax(230px, 1fr));
    gap: 18px;
}

.photo-card {
    position: relative;
    min-height: 260px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--navy-900);
    box-shadow: 0 18px 42px rgba(9, 34, 82, 0.12);
    transform-style: preserve-3d;
    transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}

.photo-card-large {
    grid-row: span 2;
    min-height: 580px;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.03) contrast(1.02);
    transition: transform 520ms var(--ease);
}

.photo-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, rgba(3, 10, 29, 0), rgba(3, 10, 29, 0.84));
    pointer-events: none;
}

.photo-card figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    margin: 0;
    color: var(--white);
    font-size: 0.98rem;
    font-weight: 850;
    line-height: 1.35;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}

.photo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.photo-card:hover img {
    transform: scale(1.05);
}

.impact-section {
    background: var(--navy-900);
    color: var(--white);
}

.impact-section .section-label,
.impact-section h2 {
    color: var(--white);
}

.impact-section .section-label {
    color: var(--gold-soft);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.impact-item {
    min-height: 190px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
    transition: transform 220ms var(--ease), background 220ms ease;
}

.impact-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
}

.impact-item h3,
.impact-item p {
    color: var(--white);
}

.impact-item p {
    color: rgba(255, 255, 255, 0.72);
}

.contact-section {
    padding: 92px 40px;
    background: var(--paper);
}

.contact-panel {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(360px, 0.9fr);
    gap: 36px;
    align-items: center;
    padding: 42px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line-dark);
    box-shadow: var(--shadow);
}

.contact-panel h2 {
    margin-bottom: 16px;
}

.contact-card {
    min-height: 92px;
    flex: 1 1 220px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    color: var(--ink);
    text-decoration: none;
    transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms ease;
}

.contact-card:hover {
    border-color: rgba(229, 31, 47, 0.24);
    box-shadow: 0 18px 40px rgba(9, 34, 82, 0.12);
}

.contact-card svg {
    width: 34px;
    height: 34px;
    color: var(--red);
    flex: 0 0 auto;
}

.contact-card strong,
.contact-card small {
    display: block;
}

.contact-card strong {
    color: var(--navy-900);
    font-size: 0.9rem;
}

.contact-card small {
    color: var(--muted);
    font-size: 0.96rem;
    overflow-wrap: anywhere;
}

.site-footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 34px 40px;
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.72);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.34));
}

.site-footer p {
    margin: 0;
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 640ms var(--ease), transform 640ms var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

@media (max-width: 1180px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        display: grid;
        gap: 4px;
        padding: 16px;
        border-radius: var(--radius);
        background: rgba(3, 10, 29, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 200ms ease, transform 200ms ease;
    }

    .mobile-nav a {
        padding: 12px;
        border-radius: 6px;
    }

    .mobile-nav a:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    body.menu-open .mobile-nav {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    body.menu-open .menu-toggle span:first-child {
        transform: translateY(3px) rotate(45deg);
    }

    body.menu-open .menu-toggle span:last-child {
        transform: translateY(-3px) rotate(-45deg);
    }

    .hero {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 3.6rem;
    }

    .hero-visual {
        left: 18%;
    }

    body[dir="rtl"] .hero-visual {
        inset: 0 18% auto 0;
    }

    .about-grid,
    .founder-section,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .founder-media {
        max-width: 720px;
    }

    .photo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .photo-card,
    .photo-card-large {
        grid-row: auto;
        min-height: 430px;
    }

    .audience-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-header {
        padding: 12px 18px;
        gap: 10px;
    }

    .brand-copy small {
        display: none;
    }

    .brand-copy strong {
        font-size: 1.16rem;
    }

    .brand {
        gap: 8px;
    }

    .brand-mark {
        width: 52px;
        height: 50px;
        flex-basis: 52px;
    }

    .brand-mark img {
        width: 62px;
        height: 62px;
    }

    .header-actions {
        gap: 8px;
    }

    .language-switch {
        padding: 2px;
    }

    .lang-button {
        width: 34px;
        height: 30px;
    }

    .menu-toggle {
        width: 38px;
        height: 36px;
    }

    .header-contact {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 122px 20px 76px;
    }

    .hero-copy {
        max-width: 100%;
        min-width: 0;
    }

    .hero-visual {
        inset: 0 0 auto 0;
        height: 100%;
        opacity: 0.66;
    }

    .hero-visual::before {
        background: linear-gradient(180deg, rgba(3, 10, 29, 0.88), rgba(3, 10, 29, 0.66) 50%, rgba(3, 10, 29, 0.98));
    }

    body[dir="rtl"] .hero-visual {
        inset: 0 0 auto 0;
    }

    body[dir="rtl"] .hero-visual::before {
        background:
            linear-gradient(270deg, rgba(3, 10, 29, 0.95), rgba(3, 10, 29, 0.68) 52%, rgba(3, 10, 29, 0.44)),
            linear-gradient(180deg, rgba(3, 10, 29, 0.82), rgba(3, 10, 29, 0.58) 50%, rgba(3, 10, 29, 0.98));
    }

    h1 {
        width: 100%;
        max-width: 15ch;
        font-size: 2.38rem;
        line-height: 1.04;
        text-wrap: balance;
    }

    .section h2,
    .audience-band h2,
    .contact-panel h2 {
        max-width: 18ch;
        text-wrap: balance;
    }

    .hero-copy p {
        font-size: 1.02rem;
    }

    .button,
    .hero-contact-line a {
        width: 100%;
    }

    .section,
    .audience-band,
    .contact-section {
        padding: 76px 20px;
    }

    .section h2,
    .audience-band h2,
    .contact-panel h2 {
        font-size: 2.15rem;
    }

    .about-copy,
    .mission-card,
    .service-card,
    .impact-item,
    .contact-panel {
        padding: 24px;
    }

    .service-grid,
    .impact-grid,
    .audience-list {
        grid-template-columns: 1fr;
    }

    .audience-list span,
    body[dir="rtl"] .audience-list span {
        border-left: 0;
        border-right: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.13);
    }

    .audience-list span:first-child,
    body[dir="rtl"] .audience-list span:first-child {
        border-top: 0;
    }

    .founder-media {
        display: grid;
        gap: 14px;
        min-height: auto;
    }

    .founder-portrait,
    .founder-training-card,
    body[dir="rtl"] .founder-portrait,
    body[dir="rtl"] .founder-training-card {
        position: relative;
        inset: auto;
        left: auto;
        right: auto;
        width: 100%;
        transform: none;
    }

    .founder-portrait {
        aspect-ratio: 4 / 3;
    }

    .founder-training-card {
        aspect-ratio: 16 / 10;
        border: 0;
    }

    .founder-media:hover .founder-portrait,
    .founder-media:hover .founder-training-card,
    body[dir="rtl"] .founder-media:hover .founder-portrait,
    body[dir="rtl"] .founder-media:hover .founder-training-card {
        transform: none;
    }

    .photo-card,
    .photo-card-large {
        min-height: auto;
        aspect-ratio: 4 / 3;
    }

    .photo-card-large {
        aspect-ratio: 3 / 4;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-card {
        flex-basis: auto;
    }

    .site-footer {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
}

@media (max-width: 420px) {
    .site-header {
        padding-inline: 14px;
    }

    .brand-copy {
        display: none;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .brand-mark img {
        width: 56px;
        height: 56px;
    }

    .brand-copy strong {
        font-size: 1.05rem;
    }

    .lang-button {
        width: 31px;
    }

    .menu-toggle {
        width: 36px;
    }

    h1 {
        font-size: 2.16rem;
    }
}
