:root {
  --green-950: #082d24;
  --green-900: #0d3d31;
  --green-800: #145845;
  --green-700: #197052;
  --green-100: #e4f1eb;
  --green-50: #f3f9f6;
  --gold-600: #b88a2a;
  --gold-500: #d2a843;
  --gold-200: #ead9a8;
  --ink: #17211d;
  --muted: #596a62;
  --line: #dce6e1;
  --surface: #ffffff;
  --canvas: #f7faf8;
  --shadow: 0 18px 55px rgba(8, 45, 36, .12);
  --radius: 1.2rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.68;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(220,230,225,.95);
  backdrop-filter: blur(14px);
}
.header-inner, .section-inner, .footer-inner {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}
.header-inner { min-height: 132px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .78rem; text-decoration: none; min-width: 0; }
.brand img { width: 116px; height: 116px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { color: var(--green-900); font-size: 1rem; letter-spacing: .02em; }
.brand-copy small { color: var(--gold-600); font-size: .75rem; font-weight: 700; margin-top: .25rem; }
.nav { display: flex; align-items: center; gap: .15rem; }
.nav a { text-decoration: none; color: #28463a; font-size: .94rem; font-weight: 650; padding: .75rem .72rem; border-radius: 999px; }
.nav a:hover, .nav a[aria-current="page"] { background: var(--green-100); color: var(--green-900); }
.nav .nav-cta { background: var(--green-800); color: #fff; margin-left: .35rem; padding-inline: 1rem; }
.nav .nav-cta:hover { background: var(--green-900); color: #fff; }
.menu-toggle { display: none; border: 1px solid var(--line); background: #fff; color: var(--green-900); width: 46px; height: 46px; border-radius: 50%; font-size: 1.35rem; }

.hero {
  min-height: 650px;
  color: #fff;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5,35,27,.96) 0%, rgba(8,52,40,.88) 48%, rgba(8,45,36,.52) 100%),
    url("hero.webp?v=36") center/cover no-repeat;
}
.hero::after { content: ""; position: absolute; inset: auto -10% -45% 45%; aspect-ratio: 1; border: 1px solid rgba(210,168,67,.28); border-radius: 50%; box-shadow: 0 0 0 55px rgba(210,168,67,.05), 0 0 0 110px rgba(210,168,67,.04); }
.hero-content { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; position: relative; z-index: 1; padding: 5.5rem 0; }
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; color: var(--gold-200); font-size: .8rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold-500); }
.hero h1 { max-width: 850px; margin: 1rem 0 1.25rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.65rem, 6vw, 5.4rem); line-height: 1.03; font-weight: 600; text-wrap: balance; }
.hero p { max-width: 700px; font-size: clamp(1.05rem, 2vw, 1.24rem); color: #e9f2ee; margin: 0 0 2rem; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button { border: 0; border-radius: 999px; padding: .88rem 1.25rem; display: inline-flex; align-items: center; justify-content: center; gap: .55rem; font-weight: 800; text-decoration: none; cursor: pointer; }
.button-primary { background: var(--gold-500); color: #172116; }
.button-primary:hover { background: #e1b954; }
.button-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.6); }
.button-secondary:hover { background: rgba(255,255,255,.1); }
.button-green { background: var(--green-800); color: #fff; }
.button-green:hover { background: var(--green-900); }
.hero-proof { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 1.5rem; color: #dcece5; font-size: .9rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-proof span::before { content: "✓"; color: var(--gold-500); font-weight: 900; }

.page-hero {
  background:
    linear-gradient(90deg, rgba(5,35,27,.97) 0%, rgba(8,52,40,.88) 52%, rgba(8,45,36,.66) 100%),
    url("hero.webp?v=36") center 58% / cover no-repeat;
  color: #fff;
  min-height: 650px;
  display: grid;
  align-items: center;
  padding: 5rem 0 4.2rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after { content: ""; position: absolute; width: 360px; height: 360px; border: 1px solid rgba(210,168,67,.22); border-radius: 50%; right: -80px; top: -180px; box-shadow: 0 0 0 48px rgba(210,168,67,.04), 0 0 0 96px rgba(210,168,67,.03); }
.page-hero h1 { margin: .9rem 0 1rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 1.08; font-weight: 600; max-width: 850px; }
.page-hero p { max-width: 760px; margin: 0; color: #dbe9e3; font-size: 1.12rem; }

.section { padding: 5.4rem 0; }
.section-tight { padding: 3.5rem 0; }
.section-white { background: var(--surface); }
.section-green { background: var(--green-950); color: #fff; }
.section-gold { background: #f7efd9; }
.section-head { display: grid; grid-template-columns: .75fr 1.25fr; gap: 2rem; align-items: end; margin-bottom: 2.4rem; }
.section-head h2, .content h2 { margin: .5rem 0 0; color: var(--green-950); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.16; font-weight: 600; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.04rem; }
.section-green .section-head h2, .section-green .content h2 { color: #fff; }
.section-green .section-head p { color: #d9e9e2; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.35rem; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.65rem; box-shadow: 0 10px 30px rgba(8,45,36,.05); }
.card-number { color: var(--gold-600); font-family: Georgia, serif; font-size: 2rem; line-height: 1; }
.card h3 { margin: .85rem 0 .55rem; color: var(--green-900); font-size: 1.2rem; }
.card p { margin: 0; color: var(--muted); }
.card ul { margin: .8rem 0 0; padding-left: 1.15rem; color: var(--muted); }
.card li + li { margin-top: .35rem; }
.feature-card { background: linear-gradient(160deg, #fff, #f3f8f5); }
.icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--green-100); color: var(--green-800); font-weight: 900; font-size: 1.1rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.content p { color: var(--muted); }
.content p.lead { font-size: 1.14rem; color: #344b41; }
.content ul { padding-left: 1.25rem; color: var(--muted); }
.content li + li { margin-top: .5rem; }
.quote-panel { background: var(--green-900); color: #fff; border-radius: 1.5rem; padding: clamp(2rem, 5vw, 3.5rem); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.quote-panel::before { content: "“"; position: absolute; top: -2rem; right: 1rem; font-family: Georgia, serif; font-size: 12rem; color: rgba(210,168,67,.12); line-height: 1; }
.quote-panel blockquote { margin: 0; font-family: Georgia, serif; font-size: clamp(1.55rem, 3vw, 2.3rem); line-height: 1.35; position: relative; }
.quote-panel p { color: #dcebe5; margin: 1.25rem 0 0; }

.stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.stat { padding: 1.35rem; border-left: 3px solid var(--gold-500); background: rgba(255,255,255,.07); border-radius: 0 .9rem .9rem 0; }
.stat strong { display: block; font-size: 1.35rem; color: var(--gold-200); }
.stat span { color: #d9e8e2; font-size: .9rem; }

.timeline { display: grid; gap: 1rem; }
.timeline-item { display: grid; grid-template-columns: 62px 1fr; gap: 1rem; align-items: start; }
.timeline-index { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--green-800); color: #fff; font-weight: 800; }
.timeline-item h3 { margin: .25rem 0 .35rem; color: var(--green-900); }
.timeline-item p { margin: 0; color: var(--muted); }

.profile-grid { display: grid; grid-template-columns: minmax(280px, 340px) minmax(0, 1fr); gap: 3rem; align-items: start; }
.profile-panel { width: 100%; max-width: 340px; justify-self: start; background: var(--green-950); color: #fff; border-radius: var(--radius); padding: 2rem; position: sticky; top: 120px; }
.founder-photo { margin: -2rem -2rem 1.5rem; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; background: #fff; }
.founder-photo img { width: 100%; height: 360px; object-fit: cover; object-position: center top; }
.profile-mark { width: 92px; height: 92px; border-radius: 50%; background: var(--gold-500); color: var(--green-950); display: grid; place-items: center; font-family: Georgia, serif; font-size: 2.1rem; font-weight: 700; }
.profile-panel h2 { margin: 1.2rem 0 .4rem; font-family: Georgia, serif; font-size: 2rem; line-height: 1.2; }
.profile-panel p { color: #d9e8e2; margin: 0; }
.credential-list { display: grid; gap: .8rem; margin-top: 1.4rem; }
.credential { background: #fff; border: 1px solid var(--line); padding: 1rem 1.1rem; border-radius: .9rem; }
.credential strong { color: var(--green-900); display: block; }
.credential span { color: var(--muted); font-size: .92rem; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 1.5rem; }
.contact-card, .form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }
.contact-list { display: grid; gap: 1.1rem; margin-top: 1.4rem; }
.contact-row { display: grid; grid-template-columns: 42px 1fr; gap: .8rem; }
.contact-row .icon { width: 42px; height: 42px; border-radius: 50%; }
.contact-row strong { display: block; color: var(--green-900); }
.contact-row span, .contact-row a { color: var(--muted); text-decoration: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field-full { grid-column: 1 / -1; }
.field label { color: #28483b; font-weight: 750; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #cbdad3; border-radius: .7rem; background: #fbfdfc; padding: .82rem .9rem; color: var(--ink); }
.field textarea { min-height: 145px; resize: vertical; }
.form-note { background: #fff8e5; color: #684f17; border: 1px solid #ead9a8; border-radius: .75rem; padding: .85rem 1rem; margin: 0 0 1rem; font-size: .9rem; }
.form-status { min-height: 1.5rem; color: var(--green-800); font-weight: 700; margin-top: .8rem; }

.article-shell { width: min(860px, calc(100% - 2rem)); margin-inline: auto; }
.article-meta { display: flex; flex-wrap: wrap; gap: .55rem 1.2rem; color: var(--muted); font-size: .92rem; margin-bottom: 2rem; }
.article-meta strong { color: var(--green-900); }
.article-feature { margin: 0 0 2.4rem; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: var(--green-950); box-shadow: var(--shadow); }
.article-cover { position: relative; aspect-ratio: 16 / 9; overflow: hidden; isolation: isolate; background: var(--green-950); }
.article-cover::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(7,25,19,.92) 0%, rgba(7,34,25,.76) 42%, rgba(7,34,25,.18) 72%, rgba(7,34,25,.08) 100%); }
.article-feature-image { width: 100%; height: 100%; object-fit: cover; }
.article-cover-copy { position: absolute; z-index: 2; left: clamp(1.35rem, 5vw, 3.75rem); top: 50%; width: min(66%, 590px); color: #fff; transform: translateY(-50%); }
.article-cover-kicker { display: inline-block; margin-bottom: .8rem; color: #f5c54c; font-size: clamp(.72rem, 1.4vw, .9rem); font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.article-cover-title { max-width: 13ch; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4.7vw, 3.55rem); font-weight: 700; line-height: 1.02; text-wrap: balance; text-shadow: 0 3px 18px rgba(0,0,0,.34); }
.article-cover-copy p { max-width: 52ch; margin: 1rem 0 0; color: rgba(255,255,255,.92); font-size: clamp(.88rem, 1.6vw, 1.05rem); line-height: 1.55; }
.article-brand-mark { position: absolute; z-index: 3; right: 1.35rem; top: 1.2rem; width: 126px; padding: 0; background: transparent; }
.article-brand-mark img { width: 100%; height: auto; object-fit: contain; opacity: 1; filter: drop-shadow(0 5px 12px rgba(0,0,0,.3)); }
.article-feature figcaption { padding: .8rem 1rem; background: #fff; color: var(--muted); font-size: .88rem; }
.article-body { font-size: 1.06rem; }
.article-body > p:first-of-type { font-size: 1.2rem; color: #344b41; }
.article-body h2 { margin: 3.2rem 0 1rem; color: var(--green-950); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 4vw, 2.65rem); line-height: 1.2; font-weight: 600; }
.article-body h3 { margin: 2rem 0 .65rem; color: var(--green-900); font-size: 1.28rem; line-height: 1.35; }
.article-body p { color: #40534a; }
.article-body li + li { margin-top: .55rem; }
.article-body a { color: var(--green-800); font-weight: 700; text-underline-offset: 3px; }
.article-note { margin: 2rem 0; padding: 1.35rem 1.5rem; border-left: 4px solid var(--gold-500); border-radius: 0 .9rem .9rem 0; background: #fff8e5; color: #5c4719; }
.article-summary { margin: 2rem 0; padding: 1.6rem; border-radius: var(--radius); background: var(--green-50); border: 1px solid var(--line); }
.article-summary h2 { margin-top: 0; font-size: 1.65rem; }
.article-summary ul { margin-bottom: 0; }
.source-list { padding-left: 1.25rem; }
.source-list li + li { margin-top: .8rem; }
.author-box { margin-top: 3rem; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.author-box h3 { margin-top: 0; }

.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 2rem; background: var(--green-800); color: #fff; border-radius: 1.4rem; padding: clamp(1.7rem, 4vw, 2.6rem); box-shadow: var(--shadow); }
.cta-band h2 { margin: 0 0 .35rem; font-family: Georgia, serif; font-size: clamp(1.65rem, 3vw, 2.4rem); }
.cta-band p { margin: 0; color: #dceae4; }

.site-footer { background: #061f19; color: #d8e5df; padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.footer-brand img { width: 84px; height: 84px; object-fit: contain; flex: 0 0 84px; }
.footer-brand strong { color: #fff; display: block; }
.footer-brand small { color: var(--gold-200); }
.site-footer h3 { color: #fff; font-size: 1rem; margin: 0 0 .9rem; }
.site-footer p { margin: 0; max-width: 500px; }
.footer-links { display: grid; gap: .45rem; }
.footer-links a { text-decoration: none; color: #d8e5df; }
.footer-links a:hover { color: var(--gold-200); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.11); display: flex; justify-content: space-between; gap: 1rem; color: #9eb4aa; font-size: .84rem; }
.toast { position: fixed; left: 50%; bottom: 1.4rem; transform: translate(-50%, 130%); z-index: 50; background: #17211d; color: #fff; padding: .85rem 1.1rem; border-radius: .8rem; box-shadow: var(--shadow); transition: transform .25s ease; width: min(520px, calc(100% - 2rem)); text-align: center; }
.toast.show { transform: translate(-50%, 0); }

.premises-gallery { display: grid; grid-template-columns: 1.25fr .9fr; gap: 1.25rem; }
.premises-photo { margin: 0; overflow: hidden; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.premises-photo-frame { height: 360px; overflow: hidden; background: var(--green-950); }
.premises-photo img { width: 100%; height: 100%; object-fit: cover; }
.premises-photo-main img {
  height: 200%;
  object-fit: cover;
  object-position: center bottom;
  transform: translateY(-50%);
}
.premises-photo figcaption { padding: .9rem 1rem; color: var(--muted); font-size: .92rem; }

.activity-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.activity-photo { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 14px 38px rgba(8,45,36,.08); }
.activity-photo-wide { grid-column: 1 / -1; }
.activity-photo img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.activity-photo-wide img { aspect-ratio: 2 / 1; }
.activity-photo figcaption { display: grid; gap: .28rem; padding: 1rem 1.1rem 1.15rem; }
.activity-photo figcaption strong { color: var(--green-900); font-size: 1.05rem; }
.activity-photo figcaption span { color: var(--muted); font-size: .92rem; }
.nizam-poster { width: min(100%, 720px); margin: 2.25rem auto 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 18px 46px rgba(8,45,36,.12); }
.nizam-poster img { display: block; width: 100%; height: auto; }
.nizam-poster figcaption { padding: .9rem 1.1rem 1rem; color: var(--muted); font-size: .92rem; text-align: center; }
.privacy-note { margin: 1.1rem 0 0; color: var(--muted); font-size: .86rem; }

.video-card { margin: 0; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: var(--green-950); box-shadow: var(--shadow); }
.video-card video { display: block; width: 100%; aspect-ratio: 16 / 9; background: #061f19; }
.video-card figcaption { padding: .85rem 1rem; background: #fff; color: var(--muted); font-size: .88rem; }
.video-teaser { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 3rem; align-items: center; }
.video-teaser-image { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--green-950); }
.video-teaser-image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .25s ease; }
.video-teaser-image:hover img { transform: scale(1.015); }
.play-badge { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; display: grid; place-items: center; padding-left: .25rem; border-radius: 50%; color: var(--green-950); background: var(--gold-500); box-shadow: 0 12px 30px rgba(0,0,0,.3); font-size: 1.5rem; }

.professional-feature { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); gap: 3rem; align-items: center; }
.professional-feature figure { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--green-950); }
.professional-feature figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

@media (max-width: 1280px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav { display: none; position: absolute; top: calc(100% + 1px); left: 0; right: 0; background: #fff; padding: .75rem 1rem 1rem; border-bottom: 1px solid var(--line); box-shadow: 0 15px 30px rgba(8,45,36,.1); }
  .nav.open { display: grid; }
  .nav a, .nav .nav-cta { margin: 0; border-radius: .65rem; }
}

@media (max-width: 1120px) {
  .section-head, .split, .profile-grid, .contact-grid, .video-teaser, .professional-feature { grid-template-columns: 1fr; }
  .profile-panel { position: static; justify-self: center; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .header-inner { min-height: 104px; }
  .brand img { width: 84px; height: 84px; }
  .brand-copy strong { font-size: .88rem; }
  .brand-copy small { font-size: .68rem; }
  .hero, .page-hero { min-height: 610px; }
  .hero-content { padding: 4rem 0; }
  .hero h1 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .article-cover-copy { left: 1.15rem; width: 76%; }
  .article-cover-kicker { margin-bottom: .45rem; }
  .article-cover-title { max-width: 14ch; font-size: clamp(1.35rem, 6.7vw, 2.2rem); }
  .article-cover-copy p { display: none; }
  .article-brand-mark { right: .7rem; top: .65rem; width: 72px; }
  .section { padding: 4.2rem 0; }
  .grid-3, .grid-2, .footer-grid, .form-grid, .premises-gallery, .activity-gallery { grid-template-columns: 1fr; }
  .activity-photo-wide { grid-column: auto; }
  .activity-photo-wide img, .activity-photo img { aspect-ratio: 16 / 10; }
  .field-full { grid-column: auto; }
  .stats { grid-template-columns: 1fr; }
  .cta-band { align-items: stretch; flex-direction: column; }
  .cta-band .button { width: 100%; }
  .footer-bottom { flex-direction: column; }
  .footer-brand img { width: 76px; height: 76px; flex-basis: 76px; }
  .premises-photo-frame { height: 250px; }
  .founder-photo img { height: 330px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
