:root {
  --green-950: #082f27;
  --green-900: #123f34;
  --green-800: #195447;
  --green-100: #dce8e1;
  --ivory: #f8f4eb;
  --paper: #fffdf8;
  --stone: #d8ccb8;
  --brass: #a7894e;
  --brass-light: #d4bb81;
  --ink: #202723;
  --muted: #66706a;
  --line: rgba(167, 137, 78, 0.28);
  --shadow: 0 24px 70px rgba(24, 49, 41, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Naskh Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.9;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.utility { background: var(--green-950); color: rgba(255,255,255,.8); font-size: 12px; letter-spacing: .02em; }
.utility .shell { min-height: 34px; display: flex; align-items: center; justify-content: space-between; }
.site-header { position: relative; z-index: 20; background: rgba(255,253,248,.97); border-bottom: 1px solid var(--line); }
.nav-wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: flex; align-items: center; gap: 13px; min-width: 255px; }
.brand-mark { width: 48px; height: 56px; display: grid; place-items: center; color: var(--ivory); background: var(--green-900); border: 2px solid var(--brass-light); border-radius: 45% 45% 13px 13px; font-family: Georgia, serif; font-size: 26px; box-shadow: 0 0 0 4px var(--ivory), 0 0 0 5px var(--line); }
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1.35; }
.brand b { color: var(--green-950); font-size: 19px; font-weight: 700; }
.brand small { color: var(--muted); font-size: 11px; margin-top: 5px; }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2vw, 31px); }
.nav-links a { position: relative; color: #37443e; font-size: 15px; font-weight: 650; padding: 32px 0; white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; right: 0; left: 100%; bottom: 23px; height: 2px; background: var(--brass); transition: left .2s ease; }
.nav-links a:hover::after, .nav-links a:focus-visible::after { left: 0; }
.nav-links .language-link { padding: 9px 14px; color: var(--green-950); border: 1px solid var(--brass); border-radius: 4px; font-family: "Segoe UI", Arial, sans-serif; font-size: 12px; letter-spacing: .03em; }
.nav-links .language-link::after { display: none; }
.menu-toggle { display: none; width: 44px; height: 44px; background: transparent; border: 1px solid var(--line); border-radius: 10px; padding: 10px; }
.menu-toggle i { display: block; height: 2px; background: var(--green-900); margin: 5px 0; }

.hero { position: relative; overflow: hidden; background: var(--ivory); border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 30%, rgba(167,137,78,.12), transparent 33%), linear-gradient(90deg, rgba(255,255,255,.6), transparent 50%); }
.hero-pattern { position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(30deg, transparent 48%, var(--brass) 49%, transparent 51%), linear-gradient(-30deg, transparent 48%, var(--brass) 49%, transparent 51%); background-size: 80px 80px; mask-image: linear-gradient(to left, black, transparent 70%); }
.hero-grid { position: relative; min-height: 690px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 72px; padding-top: 65px; }
.hero-copy { padding: 55px 0 86px; }
.eyebrow { margin: 0 0 12px; color: var(--brass); font-weight: 800; font-size: 14px; letter-spacing: .06em; }
.hero h1 { margin: 0; color: var(--green-950); font-family: "Noto Nastaliq Urdu", "Jameel Noori Nastaleeq", Georgia, serif; font-size: clamp(48px, 5vw, 75px); font-weight: 700; line-height: 1.55; letter-spacing: -.03em; }
.hero h1 span { display: block; font-family: "Noto Naskh Arabic", serif; font-size: 27px; line-height: 1.2; color: var(--green-800); }
.gold-rule { display: flex; align-items: center; width: 260px; margin: 15px 0 14px; }
.gold-rule::before, .gold-rule::after { content: ""; height: 1px; flex: 1; background: var(--brass); }
.gold-rule i { width: 10px; height: 10px; margin: 0 14px; border: 1px solid var(--brass); transform: rotate(45deg); }
.hero-role { color: var(--ink); font-size: 23px; font-weight: 700; margin: 0 0 10px; }
.hero-intro { max-width: 630px; color: var(--muted); font-size: 17px; margin: 0; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 29px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 15px; padding: 10px 28px; border-radius: 5px 5px 17px 5px; font-weight: 750; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: white; background: var(--green-900); border: 1px solid var(--brass); box-shadow: 0 10px 24px rgba(18,63,52,.18); }
.button.primary:hover { background: var(--green-950); box-shadow: 0 13px 30px rgba(18,63,52,.25); }
.button.text-button { min-height: auto; padding: 7px 0; color: var(--green-900); border-bottom: 1px solid var(--brass); border-radius: 0; }
.button.pale { background: var(--ivory); color: var(--green-950); margin-top: 12px; }
.button.centered { margin: 40px auto 0; }
.portrait-wrap { align-self: end; position: relative; padding: 55px 25px 0; }
.portrait-arch { position: relative; height: 585px; overflow: hidden; background: var(--green-900); border: 9px solid var(--stone); border-radius: 48% 48% 15px 15px / 26% 26% 10px 10px; box-shadow: 0 0 0 2px var(--brass), 0 0 0 13px rgba(255,255,255,.72), 0 0 0 14px var(--line), var(--shadow); }
.portrait-arch::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 60px rgba(8,47,39,.18); pointer-events: none; }
.portrait-arch img { width: 100%; height: 100%; object-fit: cover; object-position: 54% 30%; transform: scale(1.15); }
.location-badge { position: absolute; left: 0; bottom: 25px; min-width: 190px; padding: 10px 18px; direction: ltr; background: rgba(255,253,248,.96); border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(20,35,29,.13); color: var(--green-950); font: 700 14px/1.3 "Segoe UI", sans-serif; }
.location-badge span { color: var(--brass); margin-right: 8px; }

.pillars-section, .method-section, .topics-section, .service-section { padding: 100px 0; }
.section-heading { max-width: 720px; }
.section-heading h2 { margin: 0 0 14px; color: var(--green-950); font-family: "Noto Nastaliq Urdu", Georgia, serif; font-size: clamp(34px, 4vw, 48px); line-height: 1.5; }
.section-heading > p:last-child { color: var(--muted); margin: 0; }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.pillar-card { min-height: 330px; display: flex; flex-direction: column; padding: 29px; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 35px rgba(25,58,48,.055); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.pillar-card:hover { transform: translateY(-7px); border-color: var(--brass); box-shadow: var(--shadow); }
.pillar-top { display: flex; justify-content: space-between; align-items: center; }
.pillar-icon { width: 53px; height: 53px; display: grid; place-items: center; border: 1px solid var(--brass); color: var(--green-900); border-radius: 50%; font-size: 24px; }
.pillar-number { color: var(--brass); font: 600 13px/1 "Segoe UI", sans-serif; }
.pillar-card h2 { color: var(--green-950); font-size: 27px; margin: 22px 0 8px; }
.pillar-card p { color: var(--muted); font-size: 15px; margin: 0; line-height: 1.9; }
.card-link { margin-top: auto; padding-top: 20px; color: var(--green-900); font-weight: 750; font-size: 14px; }
.card-link b { margin-right: 7px; color: var(--brass); }

.about-band { background: var(--green-950); color: rgba(255,255,255,.84); padding: 96px 0; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: .8fr 1.25fr; align-items: center; gap: 100px; }
.about-ornament { min-height: 360px; display: grid; place-items: center; position: relative; border: 1px solid rgba(212,187,129,.35); border-radius: 48% 48% 12px 12px / 30% 30% 10px 10px; }
.about-ornament::before, .about-ornament::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(212,187,129,.13); border-radius: inherit; }
.about-ornament::after { inset: 40px; }
.about-ornament span { color: var(--brass-light); font-family: Georgia, serif; font-size: 73px; }
.eyebrow.light { color: var(--brass-light); }
.about-band h2 { color: white; font: 700 clamp(35px, 4vw, 49px)/1.5 "Noto Nastaliq Urdu", Georgia, serif; margin: 0 0 14px; }
.about-band p { max-width: 720px; margin: 0 0 13px; }

.method-section { background: var(--ivory); }
.method-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 95px; align-items: start; }
.method-list { border-top: 1px solid var(--line); }
.method-list article { display: flex; gap: 25px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.method-list article > span { flex: 0 0 46px; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--brass); border-radius: 50%; color: var(--green-900); font-weight: 800; }
.method-list h3 { margin: 0; color: var(--green-950); font-size: 21px; }
.method-list p { margin: 2px 0 0; color: var(--muted); font-size: 15px; }
.quote-section { padding: 30px 0 105px; background: var(--ivory); }
.quote-card { position: relative; padding: 55px 90px; text-align: center; background: var(--paper); border: 1px solid var(--line); }
.quote-card::before, .quote-card::after { content: ""; position: absolute; width: 55px; height: 55px; border-color: var(--brass); }
.quote-card::before { top: 12px; right: 12px; border-top: 1px solid; border-right: 1px solid; }
.quote-card::after { left: 12px; bottom: 12px; border-left: 1px solid; border-bottom: 1px solid; }
.quote-mark { color: var(--brass); font: 80px/0.6 Georgia, serif; }
.quote-card p { max-width: 850px; margin: 12px auto; color: var(--green-950); font-size: 23px; font-weight: 650; }
.quote-card small { color: var(--muted); }

.inner-hero { position: relative; overflow: hidden; padding: 88px 0 78px; background: var(--ivory); border-bottom: 1px solid var(--line); }
.inner-hero::after { content: ""; position: absolute; inset: 0 55% 0 0; background: radial-gradient(circle, rgba(167,137,78,.18), transparent 65%); }
.inner-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr .6fr; align-items: center; gap: 60px; }
.inner-hero h1, .bio-hero h1 { margin: 0 0 15px; color: var(--green-950); font: 700 clamp(47px, 6vw, 72px)/1.45 "Noto Nastaliq Urdu", Georgia, serif; }
.inner-hero p:not(.eyebrow) { max-width: 740px; color: var(--muted); font-size: 19px; margin: 0; }
.breadcrumb { display: flex; gap: 11px; align-items: center; margin-top: 24px; color: var(--muted); font-size: 13px; }
.breadcrumb a { color: var(--green-800); }
.inner-symbol { width: 210px; height: 245px; display: grid; place-items: center; justify-self: end; color: var(--brass); background: rgba(255,255,255,.58); border: 1px solid var(--line); border-radius: 50% 50% 18px 18px / 32% 32% 12px 12px; font-size: 75px; box-shadow: var(--shadow); }
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.topic-card { padding: 34px; min-height: 260px; background: white; border: 1px solid var(--line); }
.topic-card > span { color: var(--brass); font: 700 12px/1 "Segoe UI", sans-serif; letter-spacing: .1em; }
.topic-card h2 { color: var(--green-950); font-size: 24px; margin: 15px 0 8px; }
.topic-card p { color: var(--muted); font-size: 15px; margin: 0; }
.editorial-note { margin-top: 36px; padding: 28px 34px; border-right: 4px solid var(--brass); background: var(--ivory); }
.editorial-note b { color: var(--green-950); font-size: 19px; }
.editorial-note p { margin: 4px 0 0; color: var(--muted); }
.inner-cta { padding: 55px 0; background: var(--green-900); color: white; }
.inner-cta .shell { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.inner-cta p { font-size: 23px; font-weight: 700; margin: 0; }
.inner-cta .primary { background: var(--ivory); color: var(--green-950); }

.bio-hero { padding: 90px 0; background: var(--ivory); }
.bio-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 85px; align-items: center; }
.bio-photo { position: relative; height: 650px; overflow: hidden; border-radius: 50% 50% 12px 12px / 25% 25% 10px 10px; border: 7px solid var(--stone); box-shadow: 0 0 0 2px var(--brass), var(--shadow); }
.bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 53% 30%; transform: scale(1.12); }
.bio-hero .lead { color: var(--green-800); font-size: 23px; font-weight: 700; }
.bio-hero p { color: var(--muted); }
.bio-note { margin-top: 23px; padding: 22px 25px; background: white; border-right: 4px solid var(--brass); }
.bio-note b { color: var(--green-950); }
.bio-note p { margin: 5px 0 0; font-size: 14px; }
.service-section { text-align: center; }
.service-section .section-heading { margin: 0 auto; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 45px; text-align: right; }
.service-grid article { padding: 34px; border: 1px solid var(--line); background: white; }
.service-grid span { color: var(--brass); font: 700 13px/1 "Segoe UI", sans-serif; }
.service-grid h3 { color: var(--green-950); font-size: 25px; margin: 15px 0 5px; }
.service-grid p { color: var(--muted); font-size: 15px; margin: 0; }

.site-footer { padding: 75px 0 0; background: #06261f; color: rgba(255,255,255,.7); }
.footer-grid { display: grid; grid-template-columns: 1.8fr .7fr .7fr; gap: 75px; padding-bottom: 55px; }
.footer-brand { color: white; font: 700 27px/1.6 "Noto Nastaliq Urdu", Georgia, serif; }
.footer-grid p { max-width: 470px; margin: 8px 0; font-size: 14px; }
.footer-grid h3 { color: var(--brass-light); font-size: 16px; margin: 0 0 12px; }
.footer-grid a { display: block; margin: 4px 0; font-size: 14px; }
.footer-grid a:hover { color: white; }
.footer-bottom { min-height: 70px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }

.english-site { direction: ltr; font-family: "Segoe UI", Inter, Arial, sans-serif; line-height: 1.65; }
.english-site .brand > span:last-child { align-items: flex-start; }
.english-site .brand b { font-size: 16px; }
.english-site .nav-links a { font-family: "Segoe UI", Arial, sans-serif; }
.english-site .hero h1, .english-site .section-heading h2, .english-site .about-band h2, .english-site .inner-hero h1, .english-site .bio-hero h1, .english-site .footer-brand { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.025em; line-height: 1.12; }
.english-site .hero h1 { font-size: clamp(48px, 5vw, 72px); }
.english-site .hero h1 span { font-family: "Segoe UI", Arial, sans-serif; font-size: 16px; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 12px; }
.english-site .hero-role { font-size: 21px; }
.english-site .gold-rule { margin-right: auto; }
.english-site .about-grid { direction: ltr; }
.english-site .method-list article { direction: ltr; }
.english-site .editorial-note { border-right: 0; border-left: 4px solid var(--brass); }
.english-site .inner-symbol { justify-self: end; }
.english-site .service-grid { text-align: left; }
.english-site .footer-grid, .english-site .footer-bottom { direction: ltr; text-align: left; }

@media (max-width: 1000px) {
  .menu-toggle { display: block; }
  .nav-wrap { position: relative; }
  .nav-links { display: none; position: absolute; top: 92px; right: 0; left: 0; padding: 12px 24px 20px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 0; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 35px; }
  .hero h1 { font-size: 50px; }
  .portrait-wrap { padding-inline: 8px; }
  .pillar-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid, .method-grid, .bio-grid { gap: 50px; }
  .topic-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .shell { width: min(100% - 30px, 1180px); }
  .utility .shell span:last-child { display: none; }
  .utility .shell { justify-content: center; }
  .nav-wrap { min-height: 78px; }
  .brand { min-width: 0; }
  .brand-mark { width: 39px; height: 45px; font-size: 21px; }
  .brand b { font-size: 15px; }
  .brand small { display: none; }
  .nav-links { top: 78px; }
  .hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 10px; padding-top: 0; }
  .hero-copy { padding: 62px 0 20px; text-align: center; }
  .hero h1 { font-size: 42px; }
  .hero h1 span { font-size: 21px; }
  .gold-rule { margin-inline: auto; }
  .hero-role { font-size: 20px; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .portrait-wrap { width: min(420px, 94%); justify-self: center; padding-top: 25px; }
  .portrait-arch { height: 510px; }
  .pillars-section, .method-section, .topics-section, .service-section { padding: 72px 0; }
  .pillar-grid, .about-grid, .method-grid, .topic-grid, .bio-grid, .service-grid, .footer-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 285px; }
  .about-grid { gap: 45px; }
  .about-ornament { min-height: 270px; }
  .quote-card { padding: 50px 28px; }
  .quote-card p { font-size: 19px; }
  .inner-hero { padding: 65px 0; }
  .inner-hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .inner-hero h1, .bio-hero h1 { font-size: 44px; }
  .inner-symbol { width: 140px; height: 165px; justify-self: center; font-size: 52px; }
  .topic-card { min-height: 230px; }
  .inner-cta .shell, .footer-bottom { flex-direction: column; text-align: center; justify-content: center; padding-block: 25px; }
  .bio-hero { padding: 65px 0; }
  .bio-photo { height: 540px; order: 2; }
  .footer-grid { gap: 30px; }
}

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