:root {
  --emerald: #0b3d2e;
  --emerald-2: #082b22;
  --navy: #0f172a;
  --ivory: #f8f5ef;
  --sand: #e7dcc8;
  --gold: #c9a227;
  --gold-soft: rgba(201, 162, 39, 0.22);
  --red: #b91c1c;
  --black: #111111;
  --muted: #667064;
  --line: rgba(15, 23, 42, 0.12);
  --shadow: 0 24px 70px rgba(7, 28, 22, 0.16);
  --radius: 8px;
  --heading: "Noto Kufi Arabic", "IBM Plex Sans Arabic", system-ui, sans-serif;
  --body: "IBM Plex Sans Arabic", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--black);
  font-family: var(--body);
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(11, 61, 46, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 61, 46, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), #fff2b2, var(--red));
  box-shadow: 0 0 18px var(--gold-soft);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(248, 245, 239, 0.88);
  border-color: rgba(201, 162, 39, 0.24);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ivory);
}

.is-scrolled .brand {
  color: var(--emerald);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0;
  background: rgba(201, 162, 39, 0.08);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--heading);
  font-size: 1rem;
  line-height: 1.35;
}

.brand small {
  font-size: 0.76rem;
  opacity: 0.8;
  line-height: 1.45;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(248, 245, 239, 0.86);
  font-size: 0.9rem;
}

.is-scrolled .nav-menu {
  color: var(--navy);
}

.nav-menu a {
  position: relative;
  padding-block: 8px;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform 180ms ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.language-switch,
.nav-toggle {
  border: 1px solid rgba(201, 162, 39, 0.48);
  background: rgba(201, 162, 39, 0.08);
  color: inherit;
  cursor: pointer;
}

.language-switch {
  min-width: 52px;
  padding: 8px 12px;
  color: var(--gold);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 4px auto;
  background: var(--gold);
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-dark {
  color: var(--ivory);
  background:
    radial-gradient(circle at 20% 16%, rgba(201, 162, 39, 0.16), transparent 30%),
    linear-gradient(135deg, var(--emerald), var(--emerald-2) 52%, #071712);
}

.section-ivory {
  background: var(--ivory);
}

.section-soft {
  background:
    linear-gradient(135deg, rgba(231, 220, 200, 0.56), rgba(248, 245, 239, 0.94)),
    var(--ivory);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::after,
.strategy::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-pattern,
.map-lines {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(201, 162, 39, 0.28) 42.2% 42.4%, transparent 42.6%),
    linear-gradient(60deg, transparent 0 62%, rgba(248, 245, 239, 0.14) 62.2% 62.4%, transparent 62.6%);
  animation: drift 18s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-heading span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.86rem;
}

.eyebrow::before,
.section-heading span::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading);
  line-height: 1.35;
}

.hero h1 {
  margin-top: 26px;
  font-size: clamp(3.7rem, 8vw, 7.5rem);
  font-weight: 700;
}

.hero h2 {
  margin-top: 18px;
  color: rgba(248, 245, 239, 0.9);
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  font-weight: 600;
}

.hero p {
  max-width: 780px;
  margin: 28px 0 0;
  color: rgba(248, 245, 239, 0.78);
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #201a07;
  font-weight: 700;
}

.btn-ghost {
  background: transparent;
  color: inherit;
  border-color: rgba(201, 162, 39, 0.48);
}

.btn-muted {
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.portrait-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 48% 46%, rgba(201, 162, 39, 0.22), transparent 20%),
    radial-gradient(circle at 45% 54%, rgba(11, 61, 46, 0.66), transparent 42%),
    radial-gradient(circle at 58% 52%, rgba(15, 23, 42, 0.72), transparent 52%);
  filter: blur(18px);
  opacity: 0.95;
}

.portrait-frame {
  position: absolute;
  inset: 42px 58px auto auto;
  width: min(58%, 310px);
  aspect-ratio: 3 / 4;
  z-index: 2;
  border: 1px solid var(--gold);
  border-radius: 8px 8px 42px 8px;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(248, 245, 239, 0.1), rgba(201, 162, 39, 0.07)),
    repeating-linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0 1px, transparent 1px 18px);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

[dir="ltr"] .portrait-frame {
  inset: 42px auto auto 58px;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: -28px -34px auto auto;
  width: 150px;
  height: 150px;
  border-top: 1px solid rgba(201, 162, 39, 0.42);
  border-right: 1px solid rgba(201, 162, 39, 0.42);
  pointer-events: none;
}

[dir="ltr"] .portrait-frame::before {
  inset: -28px auto auto -34px;
  border-right: 0;
  border-left: 1px solid rgba(201, 162, 39, 0.42);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  top: 52%;
  inset-inline-start: 100%;
  width: clamp(70px, 12vw, 165px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  box-shadow: 0 0 18px rgba(201, 162, 39, 0.26);
}

[dir="ltr"] .portrait-frame::after {
  inset-inline-start: auto;
  inset-inline-end: 100%;
  background: linear-gradient(270deg, var(--gold), transparent);
}

.executive-portrait picture,
.executive-portrait img,
.profile-portrait picture,
.profile-portrait img {
  display: block;
  width: 100%;
  height: 100%;
}

.executive-portrait picture {
  position: relative;
  overflow: hidden;
  border-radius: 4px 4px 34px 4px;
  background: var(--navy);
}

.executive-portrait picture::after,
.profile-portrait picture::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(6, 18, 15, 0.34));
  pointer-events: none;
}

.executive-portrait img,
.profile-portrait img {
  object-fit: cover;
  object-position: center top;
}

.portrait-badge {
  position: absolute;
  inset-inline-end: -28px;
  bottom: 28px;
  max-width: 210px;
  padding: 11px 14px;
  border: 1px solid rgba(201, 162, 39, 0.48);
  background: rgba(8, 43, 34, 0.88);
  color: var(--ivory);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1.55;
}

[dir="ltr"] .portrait-badge {
  inset-inline-end: auto;
  inset-inline-start: -28px;
}

.portrait-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(248, 245, 239, 0.14);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0 1px, transparent 1px 16px);
}

.portrait-placeholder span {
  font-size: 4.8rem;
  color: var(--gold);
  font-weight: 700;
}

.portrait-placeholder small {
  color: rgba(248, 245, 239, 0.66);
}

.eagle-lines {
  position: absolute;
  inset: auto 0 0 auto;
  z-index: 1;
  width: min(100%, 520px);
  filter: drop-shadow(0 0 18px rgba(201, 162, 39, 0.2));
  opacity: 0.68;
}

.eagle-lines path,
.eagle-lines circle {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: lineReveal 3.8s ease forwards;
}

.eagle-lines circle {
  fill: rgba(201, 162, 39, 0.12);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin-top: 12px;
  color: var(--emerald);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-dark .section-heading h2 {
  color: var(--ivory);
}

.section-heading p,
.lead {
  color: rgba(248, 245, 239, 0.78);
  font-size: 1.08rem;
  max-width: 920px;
}

.section:not(.section-dark) .section-heading p,
.lead {
  color: #354239;
}

.compact {
  margin-bottom: 22px;
}

.executive-card {
  position: relative;
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr) minmax(210px, 285px);
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(201, 162, 39, 0.32);
  background:
    radial-gradient(circle at top left, rgba(201, 162, 39, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.gold-line {
  min-height: 100%;
  background: linear-gradient(var(--gold), rgba(201, 162, 39, 0.08));
}

.executive-card p {
  margin: 0 0 18px;
  font-size: clamp(1.06rem, 1.55vw, 1.24rem);
  color: #223028;
}

.profile-portrait {
  position: relative;
  align-self: stretch;
  min-height: 360px;
  padding: 9px;
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(11, 61, 46, 0.14), rgba(201, 162, 39, 0.08)),
    repeating-linear-gradient(135deg, rgba(11, 61, 46, 0.08) 0 1px, transparent 1px 18px);
  box-shadow: 0 24px 62px rgba(7, 28, 22, 0.18);
}

.profile-portrait::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  background: radial-gradient(circle, rgba(11, 61, 46, 0.2), transparent 62%);
}

.profile-portrait picture {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--emerald);
}

.card-grid,
.expertise-grid,
.achievement-grid,
.project-grid,
.pillar-grid,
.skills-grid {
  display: grid;
  gap: 18px;
}

.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.premium-card,
.expertise-item,
.achievement,
.project-card,
.pillar,
.skill-group,
.contact-card,
.quote-panel {
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.premium-card {
  min-height: 250px;
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.premium-card:hover,
.project-card:hover,
.pillar:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, 0.58);
  box-shadow: var(--shadow);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 26px;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.35);
}

.premium-card h3,
.project-card h3,
.pillar h3,
.skill-group h3,
.timeline-item h3 {
  color: var(--emerald);
  font-size: 1.1rem;
}

.premium-card p,
.expertise-item p,
.achievement p,
.project-card dd,
.pillar p {
  color: #435047;
}

.expertise-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.expertise-item {
  min-height: 126px;
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
}

.expertise-item span,
.achievement strong,
.pillar strong {
  color: var(--gold);
  font-weight: 700;
}

.expertise-item p,
.achievement p {
  margin: 0;
}

.timeline {
  position: relative;
  display: grid;
  gap: 22px;
}

.timeline::before {
  content: "";
  position: absolute;
  inset-inline-start: 135px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(201, 162, 39, 0.08));
}

[dir="ltr"] .timeline::before {
  inset-inline-start: 155px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 34px;
  align-items: start;
}

.timeline-item time {
  position: relative;
  color: var(--gold);
  font-weight: 700;
}

.timeline-item time::after {
  content: "";
  position: absolute;
  inset-inline-start: -43px;
  top: 13px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(201, 162, 39, 0.1);
}

[dir="ltr"] .timeline-item time::after {
  inset-inline-start: auto;
  inset-inline-end: -39px;
}

.timeline-item div {
  padding: 26px;
  border: 1px solid rgba(201, 162, 39, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.timeline-item h3 {
  color: var(--ivory);
}

.timeline-item p {
  margin: 10px 0 0;
  color: rgba(248, 245, 239, 0.72);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid rgba(201, 162, 39, 0.28);
  margin-bottom: 80px;
}

.metrics div {
  padding: 26px;
  border-inline-start: 1px solid rgba(201, 162, 39, 0.2);
}

.metrics strong {
  display: block;
  color: var(--emerald);
  font-family: var(--heading);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.metrics span {
  color: #56635a;
}

.achievement-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.achievement {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px;
}

.project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-card {
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-card > span {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
}

.project-card h3 {
  margin-top: 14px;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.75;
}

.project-card dl {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
}

.project-card dt {
  color: var(--emerald);
  font-weight: 700;
}

.project-card dd {
  margin: 0;
}

.strategy {
  overflow: hidden;
}

.pillar-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: visible;
  padding-bottom: 0;
}

.pillar {
  min-height: 300px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pillar h3 {
  margin-top: 22px;
  color: var(--ivory);
}

.pillar p {
  color: rgba(248, 245, 239, 0.7);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.quote-panel {
  position: relative;
  padding: clamp(34px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(11, 61, 46, 0.96), rgba(8, 43, 34, 0.96)),
    var(--emerald);
  color: var(--ivory);
}

.quote-panel::before {
  content: "“";
  position: absolute;
  top: -18px;
  inset-inline-start: 28px;
  color: var(--gold);
  font-size: 8rem;
  line-height: 1;
  opacity: 0.35;
}

.quote-panel p {
  position: relative;
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.75;
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.principle,
.skill-group span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  background: rgba(255, 255, 255, 0.52);
  color: #314037;
}

.skills-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.skill-group {
  padding: 24px;
}

.skill-group div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.skill-group span {
  font-size: 0.88rem;
}

.statement {
  padding: 118px 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(201, 162, 39, 0.18), transparent 28%),
    var(--ivory);
  border-block: 1px solid rgba(201, 162, 39, 0.25);
}

.statement h2 {
  color: var(--emerald);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.statement p {
  max-width: 980px;
  margin: 24px 0;
  color: #27352d;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.statement strong {
  display: inline-block;
  color: var(--gold);
  font-family: var(--heading);
  font-size: 1.24rem;
}

.closing {
  padding: 105px 0 36px;
}

.closing-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
}

.closing h2 {
  margin-top: 18px;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.closing p {
  color: rgba(248, 245, 239, 0.75);
}

.contact-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-card > .contact-link,
.contact-card > .contact-location,
.contact-row {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
  color: rgba(248, 245, 239, 0.82);
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-number {
  min-width: 0;
  color: rgba(248, 245, 239, 0.82);
}

.contact-actions {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.contact-actions a {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(201, 162, 39, 0.36);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, 0.72);
  background: rgba(201, 162, 39, 0.12);
}

.contact-actions svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-actions a[href*="wa.me"] svg {
  fill: currentColor;
  stroke: none;
}

.footer {
  margin-top: 70px;
  padding-top: 26px;
  border-top: 1px solid rgba(201, 162, 39, 0.3);
}

.footer span {
  display: block;
  width: 92px;
  height: 2px;
  background: var(--gold);
}

.footer p {
  margin: 16px 0 0;
  color: rgba(248, 245, 239, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 130ms;
}

@keyframes lineReveal {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(18px, -14px, 0);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 82px 20px auto;
    display: grid;
    gap: 8px;
    padding: 18px;
    color: var(--ivory);
    background: rgba(8, 43, 34, 0.96);
    border: 1px solid rgba(201, 162, 39, 0.32);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-grid,
  .philosophy-grid,
  .closing-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
    order: 2;
  }

  .four,
  .expertise-grid,
  .metrics,
  .skills-grid,
  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 82px 0;
  }

  .nav {
    min-height: 72px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-copy > .hero-visual {
    display: block;
    min-height: 360px;
    margin: 28px 0 20px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-copy > .hero-visual .portrait-frame {
    position: relative;
    inset: auto;
    width: 68%;
    min-width: 236px;
    max-width: 292px;
    margin-inline: auto;
  }

  .hero-copy > .hero-visual .portrait-glow {
    inset: 10px 0 0;
  }

  .hero-copy > .hero-visual .portrait-frame::after {
    width: 72px;
  }

  .hero-copy > .hero-visual .portrait-badge {
    inset-inline-end: 8px;
    bottom: 18px;
  }

  .four,
  .expertise-grid,
  .achievement-grid,
  .project-grid,
  .metrics,
  .skills-grid,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    inset-inline-start: 10px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-inline-start: 28px;
  }

  .timeline-item time::after {
    inset-inline-start: -23px;
  }

  .achievement {
    grid-template-columns: 44px 1fr;
  }

  .executive-card {
    grid-template-columns: 6px 1fr;
  }

  .profile-portrait {
    grid-column: 2;
    min-height: 390px;
    max-width: 310px;
    width: 100%;
    margin-inline: auto;
  }
}

@media print {
  .site-header,
  .scroll-progress,
  .nav-toggle,
  .hero-actions,
  .hero-visual {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .section,
  .hero,
  .statement,
  .closing {
    padding: 24px 0;
    background: #fff !important;
    color: #111 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .section-heading h2,
  .premium-card h3,
  .timeline-item h3,
  .project-card h3,
  .pillar h3 {
    color: #111 !important;
  }

  .premium-card,
  .expertise-item,
  .achievement,
  .project-card,
  .pillar,
  .skill-group,
  .executive-card,
  .timeline-item div {
    box-shadow: none;
    break-inside: avoid;
  }
}
