/* =========================================================
   Sky Enterprises — Global Trade
   styles.css
   ========================================================= */

:root {
  /* Brand colors */
  --navy-navbar: #073054;   /* header */
  --navy-footer: #061C31;   /* footer */
  --navy-hero:   #08233d;   /* hero base */
  --ink:         #0b2c49;   /* dark navy text on light */
  --ink-body:    #1c3b38;   /* dark teal body text (profile prose) */
  --text-muted:  #5b6470;   /* muted slate paragraph text */

  --gold:        #c6a24c;   /* logo, lines, labels, accents */
  --gold-soft:   #e4d2a0;   /* highlighted hero word */
  --gold-muted:  #b59a63;   /* "GLOBAL TRADE" subtitle */

  --cream:        #f4efe6;  /* contact section bg */
  --cream-border: #e6ddcb;
  --mist:         #eef3f8;  /* band bg */

  --label-gray: #8a8f98;
  --foot-text:  #98a4b2;

  --white: #ffffff;

  --maxw: 1280px;
  --pad: clamp(24px, 5vw, 56px);
  --header-h: 88px;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- Brand (used in header + footer) ---------- */
.brand { display: inline-flex; align-items: center; gap: 14px; }

.brand-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--gold);
  border-radius: 2px;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}
.brand-sub {
  margin-top: 3px;
  font-size: 10px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--gold-muted);
}

/* ---------- Eyebrow (gold line + label) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 46px;
  height: 1.5px;
  background: var(--gold);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-navbar);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 38px; }
.nav-list > li { position: relative; }

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  font-size: 15px;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}
.nav-link:hover { color: #fff; }
.nav-link.active { color: #fff; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover::after { transform: scaleX(1); }

.chevron {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(6, 28, 49, 0.18);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--ink);
  border-radius: 3px;
  transition: background 0.18s ease, color 0.18s ease;
}
.dropdown a:hover { background: var(--mist); color: var(--navy-navbar); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.btn-getintouch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 13px 26px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-getintouch:hover { background: var(--gold); color: var(--navy-navbar); }

/* Hamburger */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--navy-hero);
}

.hero-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    95deg,
    rgba(6, 22, 40, 0.94) 0%,
    rgba(7, 32, 55, 0.80) 38%,
    rgba(8, 35, 60, 0.46) 72%,
    rgba(8, 40, 66, 0.30) 100%
  );

  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px var(--pad) 132px;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slides { position: relative; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}
.hero-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.hero .eyebrow { color: var(--gold); margin-bottom: 28px; }

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 7.6vw, 6.4rem);
  line-height: 1.04;
  letter-spacing: 0.5px;
  color: #fff;
}
.hero-title .accent { color: var(--gold-soft); }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 42px;
  align-self: flex-start;
  color: #fff;
}
.hero-cta-box {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.hero-cta-box svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.hero-cta-label { font-size: 13px; letter-spacing: 2.6px; text-transform: uppercase; }
.hero-cta:hover .hero-cta-box {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-navbar);
}

.hero-dots {
  position: absolute;
  left: var(--pad);
  bottom: 48px;
  display: flex;
  gap: 12px;
}
.hero-dot {
  width: 60px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.28);
  transition: background 0.25s ease;
}
.hero-dot:hover { background: rgba(255, 255, 255, 0.5); }
.hero-dot.active { background: var(--gold); }

/* =========================================================
   BAND — Driving Trade and Commerce
   ========================================================= */
.band {
  background: var(--mist);
  padding: clamp(52px, 8vw, 84px) 0;
  text-align: center;
}
.band-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: 0.5px;
  color: var(--ink);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background: var(--cream);
  padding: clamp(56px, 9vw, 100px) 0;
}
.contact .eyebrow { margin-bottom: 44px; }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 560px;
}
.contact-item { display: flex; align-items: flex-start; gap: 22px; }

.contact-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--cream-border);
  border-radius: 2px;
  color: var(--navy-navbar);
}
.contact-icon svg {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.contact-text { padding-top: 3px; }
.contact-label {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--label-gray);
}
.contact-value {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-footer);
  color: var(--foot-text);
  padding-top: clamp(56px, 8vw, 80px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: clamp(40px, 6vw, 64px);
}
.footer-brand .brand { margin-bottom: 22px; }
.footer-tagline {
  max-width: 320px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--foot-text);
}

.footer-heading {
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a {
  font-size: 15px;
  color: var(--foot-text);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: #fff; }

.footer-contact { display: flex; flex-direction: column; gap: 18px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
}
.footer-contact svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px 0;
}
.footer-copy { font-size: 13.5px; color: rgba(255, 255, 255, 0.45); }
.footer-motto {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .menu-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--navy-navbar);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
    padding: 4px var(--pad) 22px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.25s ease, visibility 0.25s;
  }
  .main-nav.open { max-height: 460px; opacity: 1; visibility: visible; }

  .nav-list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav-list > li { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }

  .nav-link { width: 100%; justify-content: space-between; padding: 16px 0; }
  .nav-link::after { display: none; }

  .dropdown {
    position: static;
    transform: none;
    min-width: 0;
    background: transparent;
    box-shadow: none;
    padding: 0 0 8px 14px;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .has-dropdown.open .dropdown { max-height: 200px; }
  .dropdown a { color: rgba(255, 255, 255, 0.72); padding: 10px 0; }
  .dropdown a:hover { background: transparent; color: #fff; }
  .has-dropdown.open .chevron { transform: rotate(180deg); }
}

@media (max-width: 560px) {
  .btn-getintouch { padding: 11px 18px; letter-spacing: 1.2px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-dot { width: 44px; }
  .brand-name { font-size: 19px; }
}

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

/* =========================================================
   INNER PAGE HERO + PROFILE BODY (Corporate Profile, etc.)
   ========================================================= */
.page-hero {
  position: relative;
  background-color: var(--navy-navbar);
  padding: clamp(56px, 8vw, 92px) 0 clamp(150px, 20vw, 240px);
  text-align: center;
}
.page-hero-inner { position: relative; z-index: 2; }

/* Centered eyebrow with a gold rule on both sides */
.eyebrow-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.eyebrow-center::after {
  content: "";
  width: 46px;
  height: 1.5px;
  background: var(--gold);
}

.page-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 8.5vw, 6.8rem);
  line-height: 1.04;
  letter-spacing: -0.5px;
  color: #fff;
}

.page-lead {
  max-width: 640px;
  margin: 26px auto 0;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}

/* Decorative sparkles */
.sparkle {
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.sparkle path { fill: currentColor; }
.sparkle--1 { top: 14%; left: 12%; width: 18px; height: 18px; }
.sparkle--2 { top: 22%; left: 82%; width: 15px; height: 15px; }
.sparkle--3 { top: 42%; left: 7%;  width: 24px; height: 24px; }
.sparkle--4 { top: 30%; left: 90%; width: 14px; height: 14px; }
.sparkle--5 { top: 56%; left: 85%; width: 20px; height: 20px; }
.sparkle--6 { top: 58%; left: 15%; width: 16px; height: 16px; }

/* Soft navy -> cream wave */
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  line-height: 0;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: clamp(60px, 9vw, 130px);
}

/* Profile body text */
.profile-body {
  background: var(--cream);
  padding: clamp(52px, 9vw, 112px) 0;
}
.profile-text {
  max-width: 1180px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.62;
  letter-spacing: 0.2px;
  text-align: center;
  color: var(--ink-body);
}
.profile-text strong { font-weight: 700; }

@media (max-width: 560px) {
  .profile-text { text-align: left; line-height: 1.55; }
  .sparkle--2, .sparkle--4, .sparkle--5 { display: none; }
}

/* =========================================================
   PAGE HERO WITH BACKGROUND IMAGE + simple kicker
   ========================================================= */
.page-hero--image {
  /* Replace assets/management-hero.jpg with your boardroom photo */
  background-image:
    linear-gradient(rgba(7, 32, 55, 0.74), rgba(6, 22, 40, 0.88)),
    url('./images/office.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-kicker {
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* =========================================================
   PAGE: MANAGEMENT
   ========================================================= */
.management-body {
  background: var(--cream);
  padding: clamp(56px, 9vw, 112px) 0;
}
.md-grid {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

/* Portrait card */
.md-photo-wrap { position: relative; }
.md-photo-wrap::before {
  content: "";
  position: absolute;
  top: -26px;
  left: -26px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #ece3d0;
  z-index: 0;
}
.md-photo-card {
  position: relative;
  z-index: 1;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: #e7e2d6;
  /* Replace assets/managing-director.jpg with the director's photo */
  background-image: url('./images/image.png');
  background-size: cover;
  background-position: top center;
  box-shadow: 0 30px 60px rgba(6, 28, 49, 0.18);
}
.md-photo-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 26px 26px;
  background: linear-gradient(to top,
    rgba(6, 20, 36, 0.94) 0%,
    rgba(6, 20, 36, 0.70) 45%,
    rgba(6, 20, 36, 0) 100%);
}
.md-role {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.md-name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.md-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  color: #fff;
}
.md-since {
  flex-shrink: 0;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Content column */
.md-heading {
  margin-bottom: 22px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--ink);
}
.md-para {
  max-width: 560px;
  margin-bottom: 38px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Quote */
.md-quote { margin-bottom: 40px; }
.md-quote-mark {
  width: 34px;
  height: auto;
  margin: 0 0 14px 2px;
  color: var(--gold);
}
.md-quote-text {
  max-width: 620px;
  border-left: 2px solid var(--gold);
  padding-left: 26px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink);
}

/* Tags + social */
.md-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.md-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.md-tag {
  padding: 11px 18px;
  border: 1px solid rgba(11, 44, 73, 0.2);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink);
}
.md-social { display: flex; gap: 12px; }
.md-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 44, 73, 0.2);
  border-radius: 2px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.md-social a:hover {
  background: var(--navy-navbar);
  border-color: var(--navy-navbar);
  color: #fff;
}
.md-social svg { width: 18px; height: 18px; }
.md-social .ic-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.md-social .ic-fill { fill: currentColor; }

/* Management responsive */
@media (max-width: 880px) {
  .md-grid { grid-template-columns: 1fr; gap: 48px; }
  .md-photo-wrap { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .md-meta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 460px) {
  .md-name-row { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* =========================================================
   PAGE: MISSION & VISION — hero variant + bento grid
   ========================================================= */
.page-hero--mv {
  /* Replace assets/mission-hero.jpg with your world-map / compass graphic */
  background-image:
    linear-gradient(rgba(8, 30, 52, 0.55), rgba(7, 22, 42, 0.82)),
    url('./images/mission.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.page-title .amp { font-style: italic; font-weight: 500; }

.hero-mark {
  position: absolute;
  top: 46%;
  left: clamp(16px, 6vw, 90px);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--gold);
  border-radius: 2px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  z-index: 2;
}

/* ---- Body intro ---- */
.mv-body {
  background: var(--cream);
  padding: clamp(56px, 9vw, 116px) 0 clamp(60px, 9vw, 120px);
}
.mv-heading {
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.mv-sub {
  max-width: 640px;
  margin: clamp(22px, 3vw, 34px) auto 0;
  text-align: center;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ---- Bento grid (two nested flex halves) ---- */
.bento {
  --bento-gap: 22px;
  display: flex;
  gap: var(--bento-gap);
  align-items: flex-start;
  margin-top: clamp(40px, 5vw, 60px);
}
.bento-left,
.bento-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--bento-gap);
}
.left-lower,
.right-upper {
  display: flex;
  gap: var(--bento-gap);
  align-items: stretch;
}
.left-lower-main {
  flex: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--bento-gap);
}
.mini-row { display: flex; gap: var(--bento-gap); }
.mini-row > * { flex: 1; min-width: 0; }
.right-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--bento-gap);
}
.b-team,
.b-dedication { flex: 1; min-width: 0; }

/* Card base */
.b-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(8, 28, 49, 0.06);
}

/* Stat cards: number + heading + text */
.b-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 28px 26px;
}
.b-num {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--ink);
}
.b-title {
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--ink);
}
.b-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Light cards */
.b-se,
.b-vision,
.b-mission,
.b-shipments {
  background: #f1f5fb;
  border: 1px solid #e3e9f2;
}
.b-mission,
.b-shipments { min-height: clamp(220px, 24vw, 270px); }
.b-vision { min-height: clamp(180px, 20vw, 210px); }

/* Dark card */
.b-dedication { background: #0a2741; }
.b-dedication .b-num,
.b-dedication .b-title { color: #fff; }
.b-dedication .b-text { color: rgba(255, 255, 255, 0.7); }

/* Gold card */
.b-team {
  background: #cda446;
  min-height: 480px;
}
.b-team .b-num { color: #fff8ea; }
.b-team .b-title { color: var(--ink); }
.b-team .b-text { color: rgba(255, 255, 255, 0.92); }

/* Blue + SE brand cards */
.b-sky,
.b-se {
  aspect-ratio: 1 / 1.05;
  display: grid;
  place-items: center;
}
.b-sky { background: #1a6cd8; }
.b-sky span,
.b-se span {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.b-sky span { color: #fff; }
.b-se span { color: var(--ink); }

/* Image cards */
.b-skyline {
  aspect-ratio: 1.85 / 1;
  background: #25496f url('./images/glass.png') center / cover no-repeat;
}
.b-ship {
  aspect-ratio: 2.35 / 1;
  background: #0c2236 url('./images/ship.png') center / cover no-repeat;
}

/* Bento responsive */
@media (max-width: 920px) {
  .bento { flex-direction: column; }
}
@media (max-width: 560px) {
  .left-lower,
  .right-upper,
  .mini-row { flex-direction: column; }
  .b-mission,
  .b-shipments,
  .b-vision,
  .b-team { min-height: auto; }
  .b-sky,
  .b-se { aspect-ratio: 16 / 10; }
}

/* ---- Footer with extra Services column ---- */
.footer-grid--services { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; }
@media (max-width: 980px) {
  .footer-grid--services { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid--services { grid-template-columns: 1fr; }
}

/* Decorative hero mark only on large screens */
@media (max-width: 1024px) {
  .hero-mark { display: none; }
}
