:root {
  --admin-surface: #f7faf9;
  --admin-line: rgba(15, 23, 42, 0.1);
}

body {
  background: var(--admin-surface);
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
}

.brand {
  grid-template-columns: 42px auto;
}

.brand strong {
  font-size: 1rem;
}

.nav a[aria-current="page"] {
  background: var(--green-50);
  color: var(--green-700);
}

.admin-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at 78% 18%, rgba(20, 184, 122, 0.23), transparent 30%),
    radial-gradient(circle at 20% 82%, rgba(212, 160, 23, 0.12), transparent 30%),
    linear-gradient(135deg, #07111f, #0f172a 58%, #0d2e25);
}

.admin-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 82%);
}

.admin-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 110px;
}

.admin-hero h1 {
  max-width: 850px;
  color: var(--white);
}

.admin-hero .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.admin-hero .eyebrow {
  color: #7de5ba;
}

.admin-hero .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
}

.admin-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.admin-trust span::before {
  content: "\2713";
  margin-right: 8px;
  color: #7de5ba;
}

.page-hero {
  background:
    radial-gradient(circle at 86% 12%, rgba(20, 184, 122, 0.13), transparent 26%),
    linear-gradient(135deg, rgba(232, 249, 240, 0.97), rgba(241, 245, 249, 0.98));
}

.service-grid .card {
  min-height: 260px;
}

.service-grid .icon {
  width: 56px;
  height: 56px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.admin-note {
  border-left: 4px solid var(--green-500);
  background: var(--green-50);
}

.identity-strip {
  padding: 22px 0;
  background: var(--white);
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
}

.identity-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin: 0;
  padding: 0;
  color: var(--ink-700);
  list-style: none;
  font-size: 0.9rem;
  font-weight: 800;
}

.about-admin-photo {
  min-height: 430px;
  border-radius: var(--radius-lg);
  background: var(--green-50) url("../img/jamal-akber-about-secondary.jpg") center 20% / cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.contact-layout {
  align-items: start;
}

.contact-panel {
  padding: clamp(24px, 4vw, 38px);
}

.contact-panel textarea {
  min-height: 150px;
  resize: vertical;
}

.sms-consent {
  cursor: pointer;
}

.sms-consent label,
.sms-consent span {
  margin: 0;
  font-weight: 600;
}

.sms-consent input:not(:checked) + span {
  color: var(--ink-700);
}

.consent-support {
  margin: -4px 0 18px;
  color: var(--ink-500);
  font-size: 0.8rem;
  line-height: 1.5;
}

.form-status.success {
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--green-50);
  color: var(--green-700);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 48px;
  align-items: start;
}

.policy-content {
  max-width: 820px;
}

.policy-content h2 {
  margin-top: 1.6em;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.policy-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.policy-nav strong {
  color: var(--ink-900);
}

.mobile-sharing-statement {
  margin: 20px 0;
  padding: 22px;
  border: 2px solid var(--green-500);
  border-radius: var(--radius);
  background: var(--green-50);
  color: var(--ink-900);
  font-weight: 800;
}

.site-footer .brand::before {
  box-shadow: none;
}

.site-footer .brand span {
  color: rgba(255, 255, 255, 0.64);
}

.site-footer .footer-grid {
  grid-template-columns: 1.5fr 0.8fr 0.8fr;
}

.site-footer .brand strong {
  color: var(--white);
}

@media (max-width: 960px) {
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 0;
  }

  .admin-hero {
    min-height: auto;
  }

  .admin-hero .container {
    padding-top: 76px;
    padding-bottom: 72px;
  }

  .admin-hero h1 {
    max-width: 12ch;
  }

  .admin-trust {
    display: grid;
  }

  .identity-list {
    display: grid;
    justify-content: start;
  }

  .about-admin-photo {
    min-height: 360px;
  }

  .policy-nav,
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 34px;
  }
}

/* Mini-site component layer */
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; padding: 10px 14px; border-radius: 8px; background: #fff; color: var(--ink-900); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.brand { display: flex; align-items: center; gap: 11px; }
.brand::before { display: none; }
.brand > img { width: 48px; height: 48px; object-fit: contain; }
.brand > span { display: grid; gap: 2px; }
.brand > span strong { grid-column: auto; font-size: 1rem; }
.brand > span small { color: var(--ink-500); font: 700 .72rem/1.1 var(--sans); }
.site-nav { display: flex; align-items: center; gap: 5px; }
.site-nav a { padding: 10px 13px; border-radius: 9px; color: var(--ink-700); font-size: .9rem; font-weight: 800; text-decoration: none; }
.site-nav a:hover, .site-nav a.active { background: var(--green-50); color: var(--green-700); }
.nav-toggle { display: none; padding: 9px 13px; border: 1px solid var(--ink-200); border-radius: 9px; background: #fff; color: var(--ink-900); font-weight: 800; }

.hero-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(310px, .7fr); gap: clamp(40px, 7vw, 90px); align-items: center; }
.admin-hero h1 { max-width: 10ch; margin-bottom: 22px; font-size: clamp(3.2rem, 7vw, 6.4rem); line-height: .94; letter-spacing: -.045em; }
.hero-copy { max-width: 760px; color: rgba(255,255,255,.8); font-size: clamp(1.05rem, 1.8vw, 1.25rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.admin-hero .btn-secondary { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.identity-card { padding: clamp(26px, 4vw, 38px); border: 1px solid rgba(255,255,255,.18); border-radius: 24px; background: rgba(255,255,255,.08); box-shadow: 0 30px 80px rgba(0,0,0,.28); backdrop-filter: blur(14px); }
.identity-card h2 { margin-bottom: 10px; color: #fff; font-size: 2rem; }
.identity-card p { color: rgba(255,255,255,.74); }
.identity-kicker { color: #7de5ba !important; font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.identity-card dl { display: grid; gap: 14px; margin: 28px 0 0; }
.identity-card dl div { padding-top: 13px; border-top: 1px solid rgba(255,255,255,.14); }
.identity-card dt { color: rgba(255,255,255,.55); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.identity-card dd { margin: 4px 0 0; color: #fff; font-weight: 700; }
.identity-card a { color: #fff; }

.section-block { padding: clamp(72px, 8vw, 112px) 0; }
.muted-section { background: #eef5f2; }
.section-heading { max-width: 720px; margin-bottom: 44px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.service-grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.service-card { min-height: 230px; padding: 28px; border: 1px solid var(--admin-line); border-radius: 18px; background: #fff; box-shadow: 0 12px 32px rgba(15,23,42,.06); }
.service-card > span { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 28px; border-radius: 12px; background: var(--green-50); color: var(--green-700); font-weight: 900; }
.service-card h3 { font-size: 1.25rem; }
.service-card p { margin-bottom: 0; color: var(--ink-700); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 100px); }
.process-grid h2 { max-width: 9ch; font-size: clamp(2.2rem, 4.5vw, 4rem); }
.process-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 0 0 28px; }
.process-list li + li { padding-top: 28px; border-top: 1px solid var(--admin-line); }
.process-list li > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--ink-900); color: #fff; font-weight: 900; }
.process-list p { margin: 0; color: var(--ink-700); }
.contact-band { padding: 46px 0; background: var(--green-600); color: #fff; }
.contact-band .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.contact-band .eyebrow { color: #d9ffec; }
.contact-band h2 { margin: 0; color: #fff; }
.contact-band .btn { background: #fff; color: var(--green-700); }

.page-hero { padding: clamp(74px, 9vw, 118px) 0; }
.page-hero.compact { padding: clamp(58px, 7vw, 86px) 0; }
.page-hero h1 { max-width: 14ch; margin-bottom: 20px; font-size: clamp(2.8rem, 6vw, 5.5rem); line-height: .98; letter-spacing: -.04em; }
.page-hero p:last-child { max-width: 760px; margin-bottom: 0; color: var(--ink-700); font-size: 1.12rem; }
.about-grid { display: grid; grid-template-columns: minmax(320px,.8fr) minmax(0,1.2fr); gap: clamp(42px,8vw,100px); align-items: center; }
.about-photo { overflow: hidden; border-radius: 24px; box-shadow: var(--shadow-lg); }
.about-photo img { display: block; width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 15%; }
.about-grid h2 { font-size: clamp(2.2rem,4.5vw,4rem); }
.about-grid > div:last-child > p { color: var(--ink-700); font-size: 1.06rem; line-height: 1.75; }
.principle-list { display: grid; gap: 0; margin-top: 34px; }
.principle-list > div { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--admin-line); }
.principle-list h3, .principle-list p { margin: 0; }

.contact-layout { display: grid; grid-template-columns: minmax(280px,.7fr) minmax(0,1.3fr); gap: clamp(38px,7vw,86px); }
.contact-details { padding: 8px 0; }
.contact-details h2 { margin-bottom: 5px; font-size: 2.3rem; }
.contact-details dl { display: grid; gap: 18px; margin: 32px 0; }
.contact-details dt { color: var(--ink-500); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-details dd { margin: 4px 0 0; color: var(--ink-900); font-weight: 700; }
.contact-note { padding: 16px; border-left: 3px solid var(--green-500); background: var(--green-50); color: var(--ink-700); font-size: .88rem; }
.form-card { padding: clamp(24px,4vw,40px); border: 1px solid var(--admin-line); border-radius: 22px; background: #fff; box-shadow: 0 22px 60px rgba(15,23,42,.08); }
.form-card label:not(.sms-consent):not(.website-field) { margin-bottom: 18px; }
.form-card textarea { resize: vertical; }
.website-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.consent-help { margin: -4px 0 18px; color: var(--ink-500); font-size: .8rem; line-height: 1.5; }
.submit-button { min-width: 190px; }

.policy-section { padding: clamp(64px,8vw,100px) 0; }
.policy-layout { grid-template-columns: 240px minmax(0,1fr); }
.policy-copy { max-width: 850px; }
.policy-copy > p, .policy-copy li { color: var(--ink-700); line-height: 1.75; }
.policy-copy h2 { margin-top: 2em; font-size: clamp(1.45rem,2.6vw,2rem); scroll-margin-top: 100px; }
.policy-copy h2:first-of-type { margin-top: 1.2em; }
.policy-nav a { color: var(--ink-700); font-size: .86rem; font-weight: 700; }

.site-footer .footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; }
.site-footer .footer-grid strong { color: #fff; font-size: 1.2rem; }
.site-footer .footer-grid nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 20px; }
.site-footer .footer-grid nav a { font-weight: 700; text-decoration: none; }
.legal-line { display: flex; justify-content: space-between; gap: 20px; margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.56); font-size: .78rem; }
.legal-line p { margin: 0; }

@media (max-width: 960px) {
  .hero-grid, .about-grid, .contact-layout, .process-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .identity-card { max-width: 620px; }
  .about-photo { max-width: 620px; }
  .process-grid h2 { max-width: 14ch; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 720px) {
  .header-inner { flex-wrap: wrap; padding-top: 9px; padding-bottom: 9px; }
  .brand > img { width: 40px; height: 40px; }
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; flex: 1 0 100%; padding: 8px 0 2px; border-top: 1px solid var(--admin-line); }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 12px; }
  .admin-hero h1 { font-size: clamp(3rem,15vw,4.7rem); }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .service-grid, .service-grid.three, .form-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .contact-band .container, .legal-line { align-items: stretch; flex-direction: column; }
  .contact-band .btn { width: 100%; }
  .principle-list > div { grid-template-columns: 1fr; gap: 4px; }
  .policy-nav { grid-template-columns: 1fr; }
  .site-footer .footer-grid { grid-template-columns: 1fr; }
  .site-footer .footer-grid nav { justify-content: flex-start; display: grid; }
}
