/* ============================================================
   Sara Zaafarani Zenzari — Official Leadership Profile
   Design System: Mediterranean Executive Elegance
   ============================================================ */

:root {
  /* Palette */
  --sapphire:        #0B2545;
  --sapphire-deep:   #061A34;
  --sapphire-soft:   #13375E;
  --sand:            #E8DBC5;
  --sand-light:      #F4ECDD;
  --sand-deep:       #C9B68E;
  --bronze:          #B8894D;
  --bronze-light:    #D4A76A;
  --olive:           #6B7A4F;
  --olive-light:     #8A9970;
  --charcoal:        #2A2A2A;
  --charcoal-soft:   #4A4A4A;
  --grey-200:        #EDECE8;
  --grey-100:        #F7F5F0;
  --white:           #FFFFFF;

  /* Type */
  --f-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --f-sans:    'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Layout */
  --nav-h: 84px;
  --container: 1280px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }

/* ----- Typography ----- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; letter-spacing: -0.01em; color: var(--sapphire); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.6rem); }
h4 { font-size: 1.05rem; font-family: var(--f-sans); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bronze); }
p  { color: var(--charcoal-soft); }

.eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--bronze);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--bronze); display: inline-block; }

.rule { width: 48px; height: 2px; background: var(--bronze); margin: 18px 0 24px; }

/* ----- Container ----- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
  background: transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(11, 37, 69, 0.06), 0 20px 40px -30px rgba(11, 37, 69, 0.2);
}
.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  transition: color .4s var(--ease);
}
.nav.scrolled .brand { color: var(--sapphire); }
.brand-mark {
  width: 44px; height: 44px;
  border: 1px solid currentColor;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
}
.brand-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.1;
}
.brand-name small {
  display: block;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 2px;
}

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  position: relative;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  padding: 10px 14px;
  color: var(--white);
  font-weight: 500;
  transition: color .3s var(--ease);
}
.nav.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--bronze); }
.nav.scrolled .nav-links a.active { color: var(--bronze); }

.hamburger {
  display: none;
  width: 36px; height: 36px;
  position: relative;
  color: var(--white);
  transition: color .3s var(--ease);
}
.nav.scrolled .hamburger { color: var(--sapphire); }
.hamburger span {
  position: absolute;
  left: 6px; right: 6px;
  height: 1.5px;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .25s var(--ease), top .35s var(--ease);
}
.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 17.5px; }
.hamburger span:nth-child(3) { top: 23px; }
.hamburger.open span:nth-child(1) { top: 17.5px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 17.5px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--sapphire);
  color: var(--white);
  padding: 28px 32px 44px;
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 99;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  letter-spacing: 0.04em;
}
.mobile-menu a.active { color: var(--bronze-light); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--sapphire);
  color: var(--white);
  background: var(--sapphire);
  transition: all .35s var(--ease);
  cursor: pointer;
}
.btn:hover { background: var(--sapphire-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -18px rgba(11, 37, 69, .6); }
.btn-ghost { background: transparent; border-color: currentColor; color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-gold { background: var(--bronze); border-color: var(--bronze); }
.btn-gold:hover { background: var(--bronze-light); border-color: var(--bronze-light); }
.btn-arrow::after { content: "→"; font-size: 16px; transform: translateX(0); transition: transform .3s var(--ease); }
.btn-arrow:hover::after { transform: translateX(6px); }

/* ============================================================
   HERO — editorial, cinematic
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 96px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,26,52,0.35) 0%, rgba(6,26,52,0.15) 35%, rgba(6,26,52,0.85) 100%),
    linear-gradient(90deg, rgba(6,26,52,0.75) 0%, rgba(6,26,52,0.25) 55%, rgba(6,26,52,0) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.hero h1,
.hero h2,
.hero h3,
.page-hero h1,
.page-hero h2,
.page-hero h3 { color: var(--white); font-weight: 500; }
.hero h1 em,
.page-hero h1 em {
  font-style: italic;
  color: var(--bronze-light);
  font-weight: 400;
}
.hero-lede {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 28px 0 32px;
}
.hero-meta {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
}
.hero-meta div span:first-child {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 6px;
}
.hero-meta div span:last-child {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--white);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Page heroes (shorter) */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 72px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 120px 0; }
section.tight { padding: 80px 0; }
section.dark { background: var(--sapphire); color: var(--white); }
section.dark h1, section.dark h2, section.dark h3 { color: var(--white); }
section.dark p { color: rgba(255,255,255,0.75); }
section.sand { background: var(--sand-light); }
section.grey { background: var(--grey-100); }

.section-head { max-width: 820px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .rule { margin-left: auto; margin-right: auto; }

/* ============================================================
   HOME — signature grid
   ============================================================ */
.sig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sig-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.35;
  color: var(--sapphire);
}
.sig-quote::before {
  content: "";
  display: block;
  width: 36px; height: 2px;
  background: var(--bronze);
  margin-bottom: 28px;
}
.sig-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 32px;
}

/* Priorities / cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 40px 32px 36px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--bronze);
  transition: width .5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -40px rgba(11,37,69,0.3);
  border-color: var(--sand-deep);
}
.card:hover::before { width: 100%; }
.card-num {
  font-family: var(--f-display);
  color: var(--bronze);
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 14px; }
.card p { font-size: 15px; }

.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

/* Counters / metrics */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.metric {
  padding: 56px 32px;
  border-right: 1px solid rgba(255,255,255,0.15);
  text-align: left;
}
.metric:last-child { border-right: 0; }
.metric .num {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--bronze-light);
  line-height: 1;
  font-weight: 500;
  display: flex;
  align-items: baseline;
}
.metric .num sup { font-size: 0.45em; color: var(--bronze); margin-left: 4px; }
.metric .label {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* Feature split (image + text) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media::before {
  content: "";
  position: absolute;
  top: -20px; left: -20px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--bronze);
  border-left: 2px solid var(--bronze);
  z-index: 2;
}
.split-media::after {
  content: "";
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  border-bottom: 2px solid var(--bronze);
  border-right: 2px solid var(--bronze);
  z-index: 2;
}

/* ============================================================
   BIOGRAPHY — timeline
   ============================================================ */
.timeline {
  position: relative;
  padding: 20px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--sand-deep) 8%, var(--sand-deep) 92%, transparent 100%);
}
.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
}
.tl-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bronze);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--bronze);
  margin-top: 12px;
  position: relative;
  z-index: 2;
}
.tl-year {
  font-family: var(--f-display);
  color: var(--bronze);
  font-size: 1.8rem;
}
.tl-content {
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--grey-200);
}
.tl-content h3 { margin-bottom: 10px; }
.tl-item:nth-child(odd) .tl-content { grid-column: 1; text-align: right; }
.tl-item:nth-child(odd) .tl-meta     { grid-column: 3; text-align: left; }
.tl-item:nth-child(even) .tl-meta    { grid-column: 1; text-align: right; }
.tl-item:nth-child(even) .tl-content { grid-column: 3; text-align: left; }
.tl-item .tl-dot { grid-column: 2; justify-self: center; }

/* ============================================================
   ENGINEERING — blueprint feel
   ============================================================ */
.blueprint {
  background:
    linear-gradient(rgba(11,37,69,0.96), rgba(11,37,69,0.96)),
    repeating-linear-gradient(0deg, rgba(184,137,77,0.08) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(184,137,77,0.08) 0 1px, transparent 1px 40px);
  color: var(--white);
}
.blueprint h2 { color: var(--white); }
.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
}
.spec {
  background: var(--sapphire);
  padding: 32px 28px;
}
.spec h4 { color: var(--bronze-light); margin-bottom: 12px; }
.spec p { color: rgba(255,255,255,0.78); font-size: 15px; }

/* ============================================================
   GALLERY — masonry
   ============================================================ */
.masonry {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.m-cell {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--grey-200);
}
.m-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .6s var(--ease);
}
.m-cell:hover img { transform: scale(1.06); filter: brightness(1.05); }
.m-cell .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(6,26,52,0.88) 0%, rgba(6,26,52,0) 100%);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.m-cell:hover .cap { opacity: 1; transform: translateY(0); }
.m-cell.wide { grid-column: span 3; }
.m-cell.xwide { grid-column: span 4; }
.m-cell.tall { grid-column: span 2; grid-row: span 2; }
.m-cell.std { grid-column: span 2; }
.m-cell.big { grid-column: span 3; grid-row: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,26,52,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
}
.lightbox.open { display: flex; animation: fade .4s var(--ease); }
.lightbox img {
  max-width: 92vw; max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 28px; right: 32px;
  color: var(--white);
  font-size: 28px;
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.3);
  display: grid; place-items: center;
  transition: all .3s var(--ease);
}
.lightbox-close:hover { background: var(--bronze); border-color: var(--bronze); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: var(--white);
  font-size: 22px;
  width: 56px; height: 56px;
  border: 1px solid rgba(255,255,255,0.3);
  display: grid; place-items: center;
  transition: all .3s var(--ease);
}
.lightbox-nav:hover { background: var(--bronze); border-color: var(--bronze); }
.lightbox-nav.prev { left: 32px; }
.lightbox-nav.next { right: 32px; }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   NEWS
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -40px rgba(11,37,69,0.25); }
.news-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--grey-200); }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.news-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 14px;
}
.news-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.news-meta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--grey-200);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--charcoal-soft);
  text-transform: uppercase;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
}
.contact-info .info-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--grey-200);
}
.contact-info .info-item:last-child { border-bottom: 0; }
.contact-info h4 { color: var(--bronze); margin-bottom: 8px; }
.contact-info a { color: var(--sapphire); font-weight: 500; }
.contact-info a:hover { color: var(--bronze); }

.form {
  background: var(--white);
  padding: 48px;
  border: 1px solid var(--grey-200);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  font-weight: 600;
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--grey-200);
  background: transparent;
  font: inherit;
  color: var(--charcoal);
  transition: border-color .3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--bronze);
}
.field textarea { min-height: 120px; resize: vertical; }

/* ============================================================
   PASSWORD GATE
   ============================================================ */
.gate {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--white);
  padding: 40px;
  overflow: hidden;
}
.gate-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.gate-bg img { width: 100%; height: 100%; object-fit: cover; }
.gate-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(184,137,77,0.15), transparent 60%),
    linear-gradient(135deg, rgba(6,26,52,0.82) 0%, rgba(6,26,52,0.92) 100%);
}
.gate-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  padding: 56px 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4);
  text-align: center;
}
.gate-seal {
  width: 64px; height: 64px;
  border: 1px solid var(--bronze-light);
  margin: 0 auto 28px;
  display: grid; place-items: center;
  font-family: var(--f-display);
  color: var(--bronze-light);
  font-size: 18px;
  letter-spacing: 0.15em;
}
.gate h1 {
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 10px;
}
.gate .sub {
  color: var(--bronze-light);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.gate-field {
  position: relative;
  margin-bottom: 24px;
}
.gate-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-align: center;
  transition: all .3s var(--ease);
}
.gate-input:focus { outline: none; border-color: var(--bronze-light); background: rgba(255,255,255,0.1); }
.gate-input::placeholder { color: rgba(255,255,255,0.45); letter-spacing: 0.12em; }
.gate-btn {
  width: 100%;
  padding: 16px;
  background: var(--bronze);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all .3s var(--ease);
}
.gate-btn:hover { background: var(--bronze-light); letter-spacing: 0.3em; }
.gate-err {
  color: #ff9a9a;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-top: 18px;
  min-height: 18px;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.gate-err.show { opacity: 1; }
.gate.shake .gate-panel { animation: shake .5s var(--ease); }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-10px); }
  40% { transform: translateX(10px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}
.gate-foot {
  margin-top: 32px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--sapphire-deep);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer a { color: var(--bronze-light); }
.footer a:hover { color: var(--white); }
.footer-right { text-align: right; }
.socials { display: inline-flex; gap: 12px; margin-top: 18px; justify-content: flex-end; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  transition: all .3s var(--ease);
}
.socials a:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--white);
  transform: translateY(-3px);
}
.socials svg { width: 16px; height: 16px; }
.footer-bottom {
  padding-top: 24px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ============================================================
   IMAGE FOCAL HELPERS — keep faces visible edge-to-edge
   ============================================================ */
.f-portrait-top     { object-position: center 18% !important; }
.f-portrait-high    { object-position: center 12% !important; }
.f-top-center       { object-position: center 22% !important; }
.f-upper-center     { object-position: center 30% !important; }
.f-center           { object-position: center center !important; }
.f-right-mid        { object-position: 68% 45% !important; }
.f-right-upper      { object-position: 70% 30% !important; }
.f-upper-right      { object-position: 75% 25% !important; }
.f-left-mid         { object-position: 30% center !important; }
.f-sarra-cabinet    { object-position: 60% 32% !important; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards, .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .split, .hero-grid, .contact-grid, .sig-grid { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse .split-media { order: 0; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { grid-template-columns: repeat(4, 1fr); }
  .m-cell.xwide { grid-column: span 4; }
  .m-cell.wide { grid-column: span 4; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  section { padding: 80px 0; }
  .container, .container-narrow, .nav-inner { padding: 0 22px; }
  .hero { padding-bottom: 72px; }
  .cards, .cards-4, .cards-2, .news-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .metric:last-child { border-bottom: 0; }
  .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .m-cell, .m-cell.std, .m-cell.wide, .m-cell.xwide, .m-cell.big { grid-column: span 2; }
  .m-cell.tall { grid-column: span 2; grid-row: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .form { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .socials { justify-content: flex-start; }
  .timeline::before { left: 20px; }
  .tl-item { grid-template-columns: 40px 1fr; gap: 20px; }
  .tl-item .tl-dot { grid-column: 1; justify-self: center; margin-top: 18px; }
  .tl-item:nth-child(odd) .tl-content,
  .tl-item:nth-child(even) .tl-content { grid-column: 2; text-align: left; }
  .tl-item:nth-child(odd) .tl-meta,
  .tl-item:nth-child(even) .tl-meta { grid-column: 2; text-align: left; margin-bottom: 12px; }
  .spec-list { grid-template-columns: 1fr; }
  .gate-panel { padding: 40px 28px; }
}
