/* ===================================================================
   ROYAL RENACIDO – Static HTML Stylesheet (v2)
   Colors: #D39F6B (gold), #2B1B49 (navy), #FFFFFF, #f2f2f2
   Fonts: Space Grotesk (display) + Manrope (body)
   =================================================================== */

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

:root {
  /* Brand colors */
  --color-navy: #2B1B49;
  --color-navy-deep: #1f1336;
  --color-navy-darker: #15092a;
  --color-gold: #D39F6B;
  --color-gold-hover: #b8854f;
  --color-gold-light: #e3b88a;
  --color-gold-soft: #f4e5d3;
  --color-white: #FFFFFF;
  --color-bg-soft: #f2f2f2;
  --color-text: #2a2a35;
  --color-text-light: #6b6b7a;
  --color-border: #e6e6ec;

  /* Typography — Sora (modern geometric grotesque) for headings, Inter for body */
  --font-display: 'Sora', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1240px;
  --container-narrow: 1100px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-card: 0 10px 30px rgba(43, 27, 73, 0.08);
  --shadow-card-hover: 0 18px 40px rgba(43, 27, 73, 0.16);
  --shadow-strong: 0 25px 60px rgba(43, 27, 73, 0.25);

  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--color-navy);
}

p { color: var(--color-text-light); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
  position: relative;
  padding-left: 32px;
}
.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--color-gold);
  transform: translateY(-50%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-white);
}
.btn-gold:hover {
  background: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(211, 159, 107, 0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

.btn-outline-navy {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
}
.btn-outline-navy:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-navy {
  background: var(--color-navy);
  color: var(--color-white);
}
.btn-navy:hover {
  background: var(--color-navy-deep);
  transform: translateY(-2px);
}

.btn-link {
  background: transparent;
  border: 1.5px solid currentColor;
  color: var(--color-white);
  padding: 11px 26px;
  font-size: 11px;
}
.btn-link:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-white); }

/* ---------- Top utility bar ---------- */
.utility-bar {
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(211, 159, 107, 0.15);
}
.utility-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.utility-contact { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.utility-contact a { color: rgba(255,255,255,0.85); display: inline-flex; align-items: center; gap: 8px; }
.utility-contact a:hover { color: var(--color-gold); }
.utility-socials { display: flex; gap: 10px; }
.utility-socials a {
  color: rgba(255,255,255,0.75);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
  font-size: 13px;
}
.utility-socials a:hover { color: var(--color-gold); }

/* ---------- Header / Navbar ---------- */
.site-header {
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  background: transparent;
  transition: all var(--transition);
}
.site-header.solid {
  position: relative;
  top: 0;
  background: var(--color-navy);
}
.site-header.scrolled {
  position: fixed;
  top: 0;
  background: var(--color-navy);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 56px;
  width: auto;
  display: block;
  transition: transform var(--transition);
}
.logo:hover img { transform: scale(1.04); }
.site-header.scrolled .logo img { height: 44px; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 34px;
  align-items: center;
}
.main-nav a {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 8px 0;
  position: relative;
}
.main-nav a:hover,
.main-nav a.active { color: var(--color-gold); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
}
.main-nav .has-sub > a::after-arrow {
  content: " ▾";
}
.main-nav .has-sub > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.main-nav .has-sub > a::before {
  content: "";
}

.main-nav .submenu {
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--color-white);
  min-width: 240px;
  padding: 14px 0;
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  list-style: none;
  display: block;
  border-top: 3px solid var(--color-gold);
}
.main-nav .has-sub { position: relative; }
.main-nav .has-sub:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .submenu li { width: 100%; }
.main-nav .submenu a {
  color: var(--color-navy);
  display: block;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 500;
}
.main-nav .submenu a:hover { background: var(--color-bg-soft); color: var(--color-gold); }

.nav-cta {
  display: flex;
  gap: 14px;
  align-items: center;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 26px;
  cursor: pointer;
  padding: 6px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
  padding: 200px 0 120px;
  background: var(--color-navy);
}

/* Hero background video */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Hero background image (fallback / no-video version) */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(43,27,73,0.85) 0%, rgba(43,27,73,0.65) 60%, rgba(43,27,73,0.55) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

/* Align hero content with the header logo (same container as the rest of the page) */
.hero > .container {
  max-width: var(--container);
  padding-left: 24px;
  padding-right: 24px;
}

.hero h1 {
  color: var(--color-white);
  font-size: clamp(40px, 6.5vw, 78px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 26px;
  letter-spacing: -1.5px;
}
.hero h1 .gold-accent { color: var(--color-gold); }

.hero p {
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 38px;
  max-width: 580px;
  font-weight: 400;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Curved bottom for hero */
.hero-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--color-white);
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  z-index: 3;
}

/* ---------- Section header ---------- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-size: clamp(32px, 4vw, 50px);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.section-header p { max-width: 660px; margin: 0 auto; font-size: 16.5px; }

/* ---------- About preview (home) ---------- */
.about-preview {
  padding: 110px 0 90px;
  background: var(--color-white);
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-preview-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.about-preview-img img { width: 100%; height: 480px; object-fit: cover; }
.about-preview-img::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--color-gold);
  border-radius: var(--radius);
  z-index: -1;
}
.about-preview-img-wrap { position: relative; padding: 20px; }
.about-preview h2 {
  font-size: 44px;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}
.about-preview p { margin-bottom: 18px; font-size: 16px; }
.about-preview .btn { margin-top: 18px; }

/* ---------- Services Grid ---------- */
.services {
  padding: 100px 0;
  background: var(--color-bg-soft);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 40px 34px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  background: var(--color-gold-soft);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--color-gold); }
.service-card:hover .service-icon svg { stroke: var(--color-white); }
.service-icon svg { width: 100%; height: 100%; stroke: var(--color-gold); fill: none; stroke-width: 1.6; transition: stroke var(--transition); }
.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.service-card p { font-size: 14.5px; line-height: 1.65; }

/* ---------- Shipping section (dark navy) ---------- */
.shipping {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.shipping::before {
  content: "";
  position: absolute;
  top: 60px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(211,159,107,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.shipping .section-header { text-align: left; margin-bottom: 50px; }
.shipping .section-header h2 { color: var(--color-white); font-size: 46px; letter-spacing: -1.2px; }

.shipping-row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.shipping-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.shipping-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
  letter-spacing: -2px;
}
.shipping-content h3 {
  color: var(--color-white);
  font-size: 30px;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.shipping-subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.shipping-content p { color: rgba(255,255,255,0.78); font-size: 14.5px; margin-bottom: 22px; }
.shipping-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 240px;
  position: relative;
}
.shipping-img img,
.shipping-img video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.shipping-row:hover .shipping-img img,
.shipping-row:hover .shipping-img video { transform: scale(1.05); }

/* ---------- Gallery / Our Work section ---------- */
.gallery-section {
  padding: 100px 0;
  background: var(--color-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 9 / 16; /* Instagram story format — keeps portrait photos uncropped */
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* bias crop to the top so heads are never cut off */
  transition: transform 0.6s ease;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(43,27,73,0.7) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

/* ---------- Why Choose ---------- */
.why-choose {
  padding: 110px 0;
  background: var(--color-bg-soft);
}
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-img-wrap {
  position: relative;
}
.why-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 560px;
  box-shadow: var(--shadow-strong);
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img-wrap::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border: 3px solid var(--color-gold);
  border-radius: var(--radius);
  z-index: -1;
}
.why-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--color-white);
  box-shadow: var(--shadow-card);
}
.why-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.why-content h2 { font-size: 44px; margin-bottom: 16px; letter-spacing: -1.2px; }
.why-content .subtitle { font-style: italic; color: var(--color-gold); margin-bottom: 14px; font-weight: 500; }
.why-content > p { margin-bottom: 24px; }
.why-list { list-style: none; margin-bottom: 28px; }
.why-list li {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
}
.why-list li::before {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}
.why-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* ---------- Video Section (NEW) ---------- */
.video-section {
  position: relative;
  padding: 120px 0;
  background: var(--color-navy);
  color: var(--color-white);
  overflow: hidden;
  text-align: center;
}
.video-section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}
.video-section-bg-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}
.video-section-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.video-section h2 {
  color: var(--color-white);
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 22px;
  letter-spacing: -1.2px;
}
.video-section p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-bottom: 36px;
}
.video-play-btn {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--color-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 30px;
  margin-bottom: 24px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  box-shadow: 0 0 0 0 rgba(211, 159, 107, 0.6);
  animation: pulse 2.4s infinite;
}
.video-play-btn:hover { transform: scale(1.08); animation: none; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(211, 159, 107, 0.5); }
  70% { box-shadow: 0 0 0 30px rgba(211, 159, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(211, 159, 107, 0); }
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 8, 35, 0.92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal.active { display: flex; }
.video-modal-inner {
  max-width: 420px;
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 90vh;
  position: relative;
}
.video-modal video,
.video-modal iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  background: black;
}
.video-modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  background: transparent;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* ---------- Live from Lagos Ports — video tiles ---------- */
.video-tiles-section {
  padding: 100px 0;
  background: var(--color-bg-soft);
}
.video-tiles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.video-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9/16;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  background: var(--color-navy);
}
.video-tile:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
}
.video-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-tile-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(43, 27, 73, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 8px;
  border-left: 3px solid var(--color-gold);
}

/* ---------- Diverse Fleet + Quote ---------- */
.fleet-quote {
  position: relative;
  background: var(--color-navy-deep);
  padding: 100px 0;
  color: var(--color-white);
  overflow: hidden;
}
.fleet-quote-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}
.fleet-quote .container { position: relative; z-index: 1; }
.fleet-quote-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.fleet-content .section-label { color: var(--color-gold-light); }
.fleet-content h2 {
  color: var(--color-white);
  font-size: 46px;
  margin-bottom: 26px;
  letter-spacing: -1.2px;
}
.fleet-content p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 16px; }

.quote-card {
  background: var(--color-gold);
  border-radius: var(--radius);
  padding: 42px 38px;
  color: var(--color-white);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.quote-card h3 {
  color: var(--color-white);
  font-size: 28px;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.quote-card > p { color: rgba(255,255,255,0.92); margin-bottom: 24px; font-size: 14px; }
.quote-form { display: grid; gap: 14px; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text);
  font-size: 14px;
  font-family: inherit;
}
.quote-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form textarea { min-height: 100px; resize: vertical; }
.quote-form button {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 15px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
  transition: background var(--transition);
}
.quote-form button:hover { background: var(--color-navy-darker); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo img { height: 64px; filter: brightness(0) saturate(100%) invert(73%) sepia(34%) saturate(457%) hue-rotate(351deg) brightness(89%) contrast(85%); }
.footer-phone { display: block; color: var(--color-white); font-size: 22px; font-weight: 700; font-family: var(--font-display); margin-bottom: 6px; letter-spacing: -0.5px; }
.footer-email { display: block; margin-bottom: 18px; }
.footer-email:hover { color: var(--color-gold); }
.footer-brand p { font-size: 14px; margin-bottom: 18px; line-height: 1.65; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition);
  font-size: 14px;
}
.footer-socials a:hover { background: var(--color-gold); color: var(--color-white); transform: translateY(-3px); }

.footer-col h4 {
  color: var(--color-white);
  font-size: 16px;
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: 0;
}
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 7px 0; }
.footer-col ul a { color: rgba(255,255,255,0.7); font-size: 14px; transition: all var(--transition); }
.footer-col ul a:hover { color: var(--color-gold); padding-left: 4px; }
.footer-contacts li { display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,0.75); font-size: 14px; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: var(--color-gold); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 220px 0 130px;
  color: var(--color-white);
  background: var(--color-navy);
  text-align: left;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,27,73,0.7) 0%, rgba(43,27,73,0.9) 100%);
  z-index: 0;
}
.page-hero .section-label {
  color: var(--color-gold);
  padding-left: 0;
  margin-bottom: 16px;
}
.page-hero .section-label::before { display: none; }
.page-hero h1 {
  color: var(--color-white);
  font-size: clamp(42px, 6vw, 74px);
  letter-spacing: -2px;
  margin-bottom: 18px;
}
.page-hero p { color: rgba(255,255,255,0.88); max-width: 660px; margin: 0; font-size: 17px; }

/* ---------- About page content ---------- */
.about-content { padding: 110px 0; background: var(--color-white); }
.about-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-content-grid h2 { font-size: 42px; margin-bottom: 24px; letter-spacing: -1.5px; }
.about-content-grid p { margin-bottom: 16px; font-size: 15.5px; }
.about-content-img { border-radius: var(--radius); overflow: hidden; height: 560px; box-shadow: var(--shadow-strong); position: relative; }
.about-content-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--color-gold);
  padding: 60px 0;
  color: var(--color-white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -2px;
}
.stat-item .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Team Grid ---------- */
.team-section { padding: 100px 0; background: var(--color-bg-soft); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.team-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }
.team-photo {
  height: 380px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-deep));
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-photo svg {
  width: 100%;
  height: 100%;
}
.team-info { padding: 26px 22px 30px; }
.team-info h3 { font-size: 22px; margin-bottom: 6px; }
.team-role { color: var(--color-gold); font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase; font-weight: 600; }

/* ---------- Contact ---------- */
.contact-section { padding: 100px 0; background: var(--color-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-size: 40px; margin-bottom: 18px; letter-spacing: -1.2px; }
.contact-info > p { margin-bottom: 28px; }
.contact-office {
  background: var(--color-bg-soft);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 18px;
  border-left: 4px solid var(--color-gold);
  transition: all var(--transition);
}
.contact-office:hover { transform: translateX(6px); box-shadow: var(--shadow-card); }
.contact-office h4 {
  font-size: 15px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.contact-office p { font-size: 14.5px; color: var(--color-text); margin-bottom: 4px; }
.contact-office .hours { font-size: 13.5px; color: var(--color-text-light); margin-top: 10px; }

.contact-form-wrap {
  background: var(--color-bg-soft);
  border-radius: var(--radius);
  padding: 42px 38px;
}
.contact-form-wrap h3 { font-size: 28px; margin-bottom: 8px; letter-spacing: -0.5px; }
.contact-form-wrap > p { margin-bottom: 22px; font-size: 14.5px; }
.contact-form { display: grid; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text);
  font-size: 14px;
  font-family: inherit;
  transition: border var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}
.contact-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button {
  background: var(--color-gold);
  color: var(--color-white);
  padding: 15px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
  transition: all var(--transition);
}
.contact-form button:hover { background: var(--color-gold-hover); transform: translateY(-2px); }

/* ---------- Services Feature Page ---------- */
.services-feature { padding: 100px 0; background: var(--color-white); }
.services-feature .container { display: flex; flex-direction: column; gap: 90px; }

.service-feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  scroll-margin-top: 100px;
}
.service-feature.reverse .service-feature-media { order: 2; }

.service-feature-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  background: var(--color-navy-deep);
  isolation: isolate;
}
.service-feature-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.service-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,27,73,0) 40%, rgba(43,27,73,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.service-feature-media:hover .service-feature-video { transform: scale(1.04); }
.service-feature-tag {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  padding: 8px 14px;
  background: rgba(43, 27, 73, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
}

.service-feature-body { max-width: 540px; }
.service-feature-icon {
  width: 64px;
  height: 64px;
  background: var(--color-gold-soft);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 22px;
  transition: all var(--transition);
}
.service-feature-icon svg {
  width: 100%; height: 100%;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-feature-body .section-label { margin-bottom: 14px; }
.service-feature-body h3 {
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--color-navy);
}
.service-feature-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 24px;
}
.service-feature-points {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: grid;
  gap: 10px;
}
.service-feature-points li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--color-text);
}
.service-feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 8px;
  border-left: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: rotate(-45deg);
}

.btn-gold-outline {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-gold);
  padding: 13px 26px;
}
.btn-gold-outline:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(211, 159, 107, 0.3);
}

@media (max-width: 860px) {
  .services-feature { padding: 60px 0; }
  .services-feature .container { gap: 60px; }
  .service-feature { grid-template-columns: 1fr; gap: 30px; }
  .service-feature.reverse .service-feature-media { order: 0; }
  .service-feature-media { aspect-ratio: 4 / 3; }
  .service-feature-body h3 { font-size: 28px; }
  .service-feature-body { max-width: none; }
}

/* ---------- Blog page ---------- */
.blog-section { padding: 100px 0; background: var(--color-bg-soft); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }
.blog-img { height: 240px; overflow: hidden; position: relative; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-content { padding: 28px 26px 32px; }
.blog-meta { font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--color-gold); margin-bottom: 12px; font-weight: 700; }
.blog-card h3 { font-size: 19px; margin-bottom: 12px; line-height: 1.35; }
.blog-card p { font-size: 14px; margin-bottom: 18px; }
.blog-readmore { color: var(--color-gold); font-weight: 700; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.blog-readmore:hover { gap: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .video-tiles-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid, .about-preview-grid, .about-content-grid, .contact-grid, .fleet-quote-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .shipping-row { grid-template-columns: 70px 1fr; }
  .shipping-img { grid-column: 1 / -1; }
  .why-img-secondary { display: none; }
}

@media (max-width: 768px) {
  .utility-bar { display: none; }
  .site-header { top: 0; background: rgba(43,27,73,0.96); position: fixed; padding: 12px 0; }
  body { padding-top: 80px; }
  .hero { padding-top: 100px; min-height: 600px; }
  .logo img { height: 44px; }
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-navy);
    padding: 20px;
    display: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; align-items: stretch; }
  .main-nav li { width: 100%; }
  .main-nav a { display: block; padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .main-nav .submenu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; background: rgba(0,0,0,0.2); padding: 0; border-top: none; }
  .main-nav .submenu a { color: rgba(255,255,255,0.8); padding-left: 24px; font-size: 12px; }
  .nav-cta .btn { padding: 10px 18px; font-size: 11px; }
  .mobile-toggle { display: block; }
  .nav-cta .btn-gold { display: none; }

  .services-grid, .team-grid, .blog-grid, .video-tiles-grid {
    grid-template-columns: 1fr;
  }
  .video-tiles-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .video-tile-label { font-size: 10px; padding: 8px 10px; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 26px; }
  .shipping-row { grid-template-columns: 1fr; gap: 18px; padding: 32px 0; }
  .shipping-num { font-size: 44px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 40px; }
  .why-img { height: 360px; }
  .quote-form .row-2, .contact-form .row-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Blog post (single article) ---------- */
.post-section { padding: 90px 0 100px; background: var(--color-white); }
.post-wrap { max-width: 820px; margin: 0 auto; }
.post-meta-top { font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--color-gold); font-weight: 600; margin-bottom: 14px; }
.post-wrap h1.post-title { font-size: 44px; line-height: 1.15; letter-spacing: -1.5px; margin-bottom: 20px; color: var(--color-navy-deep); }
.post-byline { display: flex; align-items: center; gap: 14px; padding-bottom: 28px; margin-bottom: 36px; border-bottom: 1px solid #ececec; font-size: 14px; color: #666; }
.post-byline strong { color: var(--color-navy-deep); }
.post-hero-img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius); margin-bottom: 40px; box-shadow: var(--shadow-strong); }
.post-body { font-size: 17px; line-height: 1.75; color: #2a2438; }
.post-body p { margin-bottom: 22px; }
.post-body h2 { font-size: 28px; margin: 44px 0 18px; letter-spacing: -0.6px; color: var(--color-navy-deep); }
.post-body h3 { font-size: 21px; margin: 32px 0 14px; color: var(--color-navy-deep); }
.post-body ul, .post-body ol { margin: 0 0 24px 22px; }
.post-body li { margin-bottom: 10px; }
.post-body blockquote { border-left: 4px solid var(--color-gold); padding: 4px 0 4px 22px; margin: 28px 0; font-style: italic; color: var(--color-navy); font-size: 19px; }
.post-body strong { color: var(--color-navy-deep); }
.post-body a { color: var(--color-gold); text-decoration: underline; text-underline-offset: 3px; }
.post-cta-box { background: var(--color-navy-deep); color: #fff; padding: 36px 36px; border-radius: var(--radius); margin: 44px 0 10px; text-align: center; }
.post-cta-box h3 { color: #fff; margin-bottom: 10px; font-size: 22px; }
.post-cta-box p { color: rgba(255,255,255,0.78); margin-bottom: 22px; font-size: 15px; }
.post-back { display: inline-block; margin-top: 36px; color: var(--color-navy); font-weight: 600; font-size: 14px; }
.post-back:hover { color: var(--color-gold); }

.related-section { background: var(--color-soft); padding: 80px 0; }
.related-section h2 { text-align: center; font-size: 30px; margin-bottom: 40px; letter-spacing: -0.8px; }

@media (max-width: 768px) {
  .post-section { padding: 60px 0 70px; }
  .post-wrap h1.post-title { font-size: 30px; }
  .post-hero-img { height: 260px; margin-bottom: 28px; }
  .post-body { font-size: 16px; }
  .post-body h2 { font-size: 23px; }
  .post-cta-box { padding: 28px 22px; }
}

/* Make whole blog card clickable without breaking layout */
.blog-card-link { display: block; color: inherit; text-decoration: none; height: 100%; }
.blog-card-link:hover { color: inherit; }
.blog-card-link .blog-card { height: 100%; }

/* ===================================================================
   v5 — Company-profile reposition (Oil & Gas · Marine · Construction)
   Core values · Sector services · Clients wall · Certifications ·
   Advisory board · Placeholder avatars
   =================================================================== */

/* ---------- Sector cards (homepage "Our Core Sectors") ---------- */
.sector-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  color: var(--color-white);
  box-shadow: var(--shadow-card);
  isolation: isolate;
  background: var(--color-navy-deep);
}
.sector-card img,
.sector-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.7s ease;
}
.sector-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(43,27,73,0.35) 0%, rgba(31,19,54,0.92) 100%);
}
.sector-card:hover img,
.sector-card:hover video { transform: scale(1.06); }
.sector-card-body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px 30px;
}
.sector-card-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--color-gold-light);
  margin-bottom: auto;
}
.sector-card h3 { color: var(--color-white); font-size: 25px; margin-bottom: 12px; letter-spacing: -0.5px; }
.sector-card p { color: rgba(255,255,255,0.82); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.sector-card .sector-link {
  color: var(--color-gold-light);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}
.sector-card:hover .sector-link { gap: 14px; }
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

/* ---------- Core values ---------- */
.values-section { padding: 100px 0; background: var(--color-white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.value-card {
  text-align: center;
  padding: 34px 20px;
  border-radius: var(--radius);
  background: var(--color-bg-soft);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-gold-soft);
  background: var(--color-white);
}
.value-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.value-card:hover .value-icon { background: var(--color-gold); }
.value-icon svg { width: 28px; height: 28px; stroke: var(--color-gold); fill: none; stroke-width: 1.8; transition: stroke var(--transition); }
.value-card:hover .value-icon svg { stroke: var(--color-white); }
.value-card h3 { font-size: 17px; margin-bottom: 8px; letter-spacing: -0.3px; }
.value-card p { font-size: 13.5px; line-height: 1.55; }

/* ---------- Clients logo wall ---------- */
.clients-section { padding: 100px 0; background: var(--color-bg-soft); }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.client-logo {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-navy);
  letter-spacing: 0.2px;
  transition: all var(--transition);
}
.client-logo:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
/* Fixed height (not max-height) so small source logos scale UP to a
   consistent size instead of rendering tiny at their natural pixels. */
.client-logo img { height: 50px; width: auto; max-width: 90%; object-fit: contain; }
.clients-note { text-align: center; margin-top: 30px; font-size: 13.5px; color: var(--color-text-light); }

/* ---------- Certifications ---------- */
.certs-section { padding: 100px 0; background: var(--color-white); }
.certs-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-bottom: 48px;
}
.cert-badge {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 34px;
  text-align: center;
  min-width: 200px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--transition);
}
.cert-badge:hover { border-color: var(--color-gold); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.cert-badge.cert-badge-text { background: var(--color-bg-soft); }
.cert-badge strong { display: block; font-family: var(--font-display); font-size: 24px; color: var(--color-navy); margin-bottom: 4px; letter-spacing: -0.5px; }
.cert-badge span { font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--color-gold); font-weight: 700; }
.cert-badge img { max-height: 92px; max-width: 160px; width: auto; object-fit: contain; }

.members-title { text-align: center; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--color-text-light); font-weight: 700; margin-bottom: 26px; }
.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.member-chip {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 132px;
  transition: all var(--transition);
}
.member-chip:hover { border-color: var(--color-gold); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.member-chip img { height: 74px; width: auto; max-width: 82%; object-fit: contain; }
.member-chip span { font-size: 11.5px; letter-spacing: 0.4px; color: var(--color-text-light); font-weight: 700; }

/* ---------- Advisory board ---------- */
.advisory-section { padding: 100px 0; background: var(--color-bg-soft); }
.advisory-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 1000px; margin: 0 auto; }
.advisory-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}
.advisory-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.advisory-photo {
  flex-shrink: 0;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-gold-soft);
}
.advisory-photo img { width: 100%; height: 100%; object-fit: cover; }
.advisory-card h3 { font-size: 19px; margin-bottom: 2px; }
.advisory-creds { font-size: 12px; color: var(--color-gold); font-weight: 700; letter-spacing: 0.6px; margin-bottom: 8px; }
.advisory-role { font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--color-navy); font-weight: 700; margin-bottom: 8px; }
.advisory-card p { font-size: 13.5px; line-height: 1.55; }

/* ---------- Placeholder avatar (no photo yet) ---------- */
.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-deep));
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1px;
}
.team-photo .avatar-placeholder { font-size: 54px; }
.advisory-photo .avatar-placeholder { font-size: 26px; }

/* ---------- 4-column team modifier ---------- */
.team-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.team-grid.cols-4 .team-photo { height: 300px; }

/* ---------- Services page: sector grouping ---------- */
.sector-heading { margin: 0 0 10px; }
.sector-heading-wrap { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.sector-heading-wrap h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -1px; margin-bottom: 14px; }
.sector-heading-wrap p { font-size: 16px; }
.sector-divider { padding-top: 30px; }

/* ---------- Vision / Mission cards ---------- */
.vm-section { padding: 100px 0; background: var(--color-navy); color: var(--color-white); position: relative; overflow: hidden; }
.vm-section::before {
  content: "";
  position: absolute;
  top: -100px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(211,159,107,0.14) 0%, transparent 70%);
  border-radius: 50%;
}
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; position: relative; z-index: 1; }
.vm-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 44px 38px;
  border-top: 3px solid var(--color-gold);
}
.vm-card .section-label { color: var(--color-gold); padding-left: 0; }
.vm-card .section-label::before { display: none; }
.vm-card h3 { color: var(--color-white); font-size: 26px; margin-bottom: 16px; }
.vm-card p { color: rgba(255,255,255,0.85); font-size: 17px; line-height: 1.7; font-style: italic; }

/* ---------- Specialisation list (about overview) ---------- */
.spec-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; margin-top: 18px; }
.spec-list li { position: relative; padding-left: 28px; font-size: 15px; color: var(--color-text); font-weight: 500; }
.spec-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 8px;
  border-left: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: rotate(-45deg);
}

@media (max-width: 1024px) {
  .sectors-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .advisory-grid { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .team-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .spec-list { grid-template-columns: 1fr; }
  .advisory-card { flex-direction: column; align-items: center; text-align: center; }
  .team-grid.cols-4 { grid-template-columns: 1fr; }
}

/* ===================================================================
   v7 — Homepage design upgrade (scoped to .home; inner pages untouched)
   Floating hero-stats card · client-logo marquee · section polish
   =================================================================== */

/* Hero — a touch taller and bolder, no curved shape (stats card bridges it) */
.home .hero { min-height: clamp(680px, 86vh, 900px); padding: 215px 0 180px; }
.home .hero h1 { font-size: clamp(42px, 6vw, 82px); letter-spacing: -2px; }
.home .hero p { font-size: 18.5px; max-width: 620px; }
.home .hero .hero-inner { max-width: 1200px; }

/* Floating stats card overlapping the hero bottom */
.hero-stats-wrap { position: relative; z-index: 6; margin-top: -96px; margin-bottom: 30px; }
.hero-stats {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.hero-stats .hstat { padding: 36px 26px; text-align: center; position: relative; }
.hero-stats .hstat:not(:first-child)::before {
  content: ""; position: absolute; left: 0; top: 24%; height: 52%; width: 1px; background: var(--color-border);
}
.hero-stats .stat-number {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -2px;
  line-height: 1;
}
.hero-stats .stat-label {
  margin-top: 10px; font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--color-gold); font-weight: 700;
}
.home .about-preview { padding-top: 80px; }

/* Bigger, cleaner section headings on the home page */
.home .section-header h2,
.home .services .section-header h2 { font-size: clamp(34px, 4.4vw, 56px); }

/* Sector cards — a little more presence */
.home .sector-card { min-height: 420px; }
.home .sector-card .sector-card-num { font-size: 15px; letter-spacing: 3px; }
.home .sector-card h3 { font-size: 27px; }
.home .sector-card::after { background: linear-gradient(180deg, rgba(43,27,73,0.25) 0%, rgba(31,19,54,0.94) 100%); }
.home .sector-card { box-shadow: var(--shadow-card); }
.home .sector-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-6px); }

/* ---------- Clients logo marquee ---------- */
.clients-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 16px;
  animation: rr-marquee 48s linear infinite;
}
.clients-marquee:hover .clients-track { animation-play-state: paused; }
.clients-track .client-logo {
  flex: 0 0 auto;
  width: 178px;
  height: 104px;
  min-height: 0;
  border: 1px solid var(--color-border);
  background: var(--color-white);
}
.clients-track .client-logo:hover { transform: translateY(-3px); }
@keyframes rr-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 8px)); }
}
@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .hstat:nth-child(3)::before,
  .hero-stats .hstat:nth-child(2)::before { background: transparent; }
  .hero-stats-wrap { margin-top: -70px; }
}

/* ===================================================================
   v8 — Hero section upgrade + Archivo industrial headings
   =================================================================== */

/* Archivo gives headings more weight — tighten the hero accordingly */
.home .hero h1 { font-weight: 800; letter-spacing: -2.5px; line-height: 1.02; }

/* Cinematic, higher-contrast overlay (home hero only) */
.home .hero-overlay {
  background:
    linear-gradient(90deg, rgba(21,9,42,0.86) 0%, rgba(31,19,54,0.55) 55%, rgba(31,19,54,0.30) 100%),
    linear-gradient(180deg, rgba(31,19,54,0.25) 0%, rgba(21,9,42,0.80) 100%);
}
/* Soft vignette for depth */
.home .hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  box-shadow: inset 0 -120px 120px -40px rgba(15,8,35,0.7);
}
/* Slow Ken-Burns zoom on the background video */
.home .hero-bg-video {
  animation: heroKen 24s ease-in-out infinite alternate;
  transform-origin: center;
  will-change: transform;
}
@keyframes heroKen { from { transform: scale(1); } to { transform: scale(1.09); } }
@media (prefers-reduced-motion: reduce) { .home .hero-bg-video { animation: none; } }

/* Eyebrow pill */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 700; letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 24px;
  padding: 9px 18px 9px 14px;
  border: 1px solid rgba(211,159,107,0.40);
  border-radius: 999px;
  background: rgba(211,159,107,0.10);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.hero-eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-gold); box-shadow: 0 0 0 4px rgba(211,159,107,0.25);
}

/* Hero CTA row — align the video link with the buttons */
.home .hero-cta { align-items: center; gap: 18px; }
.hero-video-link {
  display: inline-flex; align-items: center; gap: 14px;
  background: transparent; border: none; cursor: pointer; color: var(--color-white);
  font-family: var(--font-body); font-weight: 700; font-size: 12.5px;
  letter-spacing: 1.6px; text-transform: uppercase; padding: 4px 6px;
}
.hero-video-link .hvl-icon {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.55);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; padding-left: 3px;
  transition: all var(--transition);
  animation: heroPulse 2.6s infinite;
}
.hero-video-link:hover .hvl-icon {
  background: var(--color-gold); border-color: var(--color-gold);
  transform: scale(1.08); animation: none;
}
.hero-video-link .hvl-text { opacity: 0.92; }
@keyframes heroPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.35); }
  70% { box-shadow: 0 0 0 16px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* Scroll cue */
.hero-scroll {
  position: absolute; left: 50%; bottom: 150px; transform: translateX(-50%);
  width: 26px; height: 44px; border: 2px solid rgba(255,255,255,0.45);
  border-radius: 14px; z-index: 4;
  display: flex; justify-content: center; padding-top: 8px;
}
.hero-scroll span {
  width: 4px; height: 8px; background: var(--color-gold); border-radius: 2px;
  animation: heroScrollDot 1.7s infinite;
}
@keyframes heroScrollDot {
  0% { opacity: 0; transform: translateY(-4px); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(11px); }
  100% { opacity: 0; }
}
@media (max-width: 992px) { .hero-scroll { display: none; } }

/* ===================================================================
   v9 — Fixes: centered section-label line, higher-quality icons
   =================================================================== */

/* Centered section headings: hide the left accent line so it never
   strikes through the first word (e.g. "Our Clients"). */
.section-header .section-label { padding-left: 0; }
.section-header .section-label::before { display: none; }

/* Crisper value icons (rounded joins like a real icon set) */
.value-icon svg { stroke-linecap: round; stroke-linejoin: round; }

/* SVG brand icons inside social links */
.utility-socials a svg,
.footer-socials a svg { width: 16px; height: 16px; fill: currentColor; display: block; }
.utility-socials a svg { width: 15px; height: 15px; }

/* ===================================================================
   v10 — Navbar + top bar · button icons · Why Choose · Footer polish
   =================================================================== */

/* ---------- Button arrow icon (all .btn link-buttons) ---------- */
.btn { gap: 10px; }
.btn::after {
  content: "";
  width: 15px; height: 15px; flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='2.6'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M5%2012h14'/%3E%3Cpath%20d='m12%205%207%207-7%207'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='2.6'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M5%2012h14'/%3E%3Cpath%20d='m12%205%207%207-7%207'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.25s ease;
}
.btn:hover::after { transform: translateX(4px); }
.btn.no-ico::after { display: none; }
.btn-link::after { width: 13px; height: 13px; }

/* ---------- Top utility bar ---------- */
.utility-bar { border-top: 3px solid var(--color-gold); padding: 11px 0; }
.utility-contact a, .utility-contact .u-loc {
  display: inline-flex; align-items: center; gap: 8px;
}
.u-ico { display: inline-flex; color: var(--color-gold); }
.u-ico svg { width: 14px; height: 14px; }
.utility-contact .u-loc { color: rgba(255,255,255,0.65); }
@media (max-width: 920px) { .utility-contact .u-loc { display: none; } }

/* ---------- Header / Navbar ---------- */
.site-header.solid,
.site-header.scrolled {
  background: rgba(28,17,49,0.88);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
          backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(0,0,0,0.28); }
/* animated gold underline on top-level nav links */
.main-nav > ul > li > a { position: relative; }
.main-nav > ul > li > a::before {
  content: ""; position: absolute; left: 0; right: auto; bottom: 2px;
  height: 2px; width: 0; background: var(--color-gold);
  border-radius: 2px; transition: width 0.28s ease;
}
.main-nav > ul > li > a:hover::before { width: 100%; }
.main-nav a.active::after { display: none; }    /* replaced by the animated underline */
.main-nav > ul > li > a.active::before { width: 100%; }
.nav-cta .btn-gold { padding: 13px 26px; }

/* ---------- Why Choose — refreshed visual ---------- */
.why-grid { grid-template-columns: 1fr 1.05fr; gap: 64px; }
.why-visual { position: relative; padding: 0 22px 30px 0; }
.why-visual-img {
  position: relative; border-radius: 20px; overflow: hidden;
  height: 560px; box-shadow: var(--shadow-strong);
  z-index: 1;
}
.why-visual-img img { width: 100%; height: 100%; object-fit: cover; }
.why-visual-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,27,73,0) 45%, rgba(31,19,54,0.55) 100%);
}
/* gold frame accent behind the image */
.why-visual::before {
  content: ""; position: absolute; top: 26px; right: 0; bottom: 0; left: 40px;
  border: 2px solid var(--color-gold); border-radius: 20px; z-index: 0;
}
/* floating badge cards */
.why-badge {
  position: absolute; z-index: 2;
  background: var(--color-navy); color: var(--color-white);
  border-radius: 14px; padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid rgba(255,255,255,0.08);
}
.why-badge-ico {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px;
  background: rgba(211,159,107,0.16);
  display: inline-flex; align-items: center; justify-content: center;
}
.why-badge-ico svg { width: 22px; height: 22px; stroke: var(--color-gold); fill: none; stroke-width: 2; }
.why-badge strong { display: block; font-family: var(--font-display); font-size: 16px; line-height: 1.1; color: var(--color-white); }
.why-badge span { font-size: 12px; color: rgba(255,255,255,0.7); }
.why-badge-1 { left: -10px; bottom: 60px; }
.why-badge-2 { right: -6px; top: 34px; flex-direction: column; align-items: flex-start; gap: 2px; text-align: left; }
.why-badge-2 strong { font-size: 26px; color: var(--color-gold); letter-spacing: -1px; }

.why-content .subtitle { font-size: 15px; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 26px; }
.why-list li { font-size: 14.5px; }
@media (max-width: 1024px) {
  .why-visual { max-width: 560px; margin: 0 auto; }
  .why-visual-img { height: 460px; }
}
@media (max-width: 560px) {
  .why-list { grid-template-columns: 1fr; }
  .why-badge-2 { display: none; }
}

/* ---------- Footer polish ---------- */
.site-footer { padding-top: 92px; }
.footer-top { grid-template-columns: 1.7fr 1fr 1fr 1.5fr; gap: 44px; }
.footer-col h4 { position: relative; padding-bottom: 16px; margin-bottom: 22px; }
.footer-col h4::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px;
  background: var(--color-gold); border-radius: 2px;
}
.footer-contacts li {
  align-items: flex-start; gap: 11px; line-height: 1.5; margin-bottom: 10px; font-size: 13.5px;
}
.fc-ico { flex-shrink: 0; margin-top: 1px; color: var(--color-gold); display: inline-flex; }
.fc-ico svg { width: 15px; height: 15px; }
.footer-contacts a { color: rgba(255,255,255,0.78); }
.footer-contacts a:hover { color: var(--color-gold); }
.footer-brand p { font-size: 13.5px; }
@media (max-width: 1024px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; } }

/* ===================================================================
   v11 — Inner-page polish (cascades to About / Services / Team /
   Contact / Blog via the shared .page-hero)
   =================================================================== */

/* ---------- Inner page hero — cinematic, matches the homepage ---------- */
.page-hero { padding: 232px 0 150px; }
.page-hero-bg {
  opacity: 1;
  animation: heroKen 24s ease-in-out infinite alternate;
  transform-origin: center;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) { .page-hero-bg { animation: none; } }
.page-hero::after {
  background:
    linear-gradient(90deg, rgba(21,9,42,0.88) 0%, rgba(31,19,54,0.62) 55%, rgba(31,19,54,0.40) 100%),
    linear-gradient(180deg, rgba(31,19,54,0.20) 0%, rgba(21,9,42,0.86) 100%);
}
.page-hero h1 { font-size: clamp(44px, 6vw, 78px); letter-spacing: -2px; }
.page-hero p { font-size: 17.5px; }

/* Pill eyebrow (same treatment as the homepage hero) */
.page-hero .section-label {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 9px 18px 9px 14px;
  border: 1px solid rgba(211,159,107,0.40);
  border-radius: 999px;
  background: rgba(211,159,107,0.10);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: var(--color-gold-light);
  font-size: 12.5px; letter-spacing: 2.6px; font-weight: 700;
  margin-bottom: 24px;
}
.page-hero .section-label::before {
  display: inline-block; content: ""; position: static; transform: none;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-gold); box-shadow: 0 0 0 4px rgba(211,159,107,0.25);
}

/* ---------- Fix remaining label accent-lines striking through text ---------- */
.sector-heading-wrap .section-label::before,
.video-section .section-label::before { display: none; }

/* ---------- About page images — gold frame accent ---------- */
.about-content-img { outline: 2px solid rgba(211,159,107,0.55); outline-offset: 12px; }
@media (max-width: 1024px) { .about-content-img { outline-offset: 8px; } }

/* ---------- Contact office cards — icon chips ---------- */
.contact-office h4 { display: flex; align-items: center; gap: 10px; }
.office-ico { display: inline-flex; color: var(--color-gold); }
.office-ico svg { width: 18px; height: 18px; }
.contact-office .hours .line { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 4px; }
.contact-office .hours .line svg { width: 15px; height: 15px; color: var(--color-gold); flex-shrink: 0; }
.contact-office .hours .line a:hover { color: var(--color-gold); }

/* ===================================================================
   v12 — Advisory Board redesign (featured Chairman + member cards)
   =================================================================== */
.advisory-featured {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 44px;
  align-items: center;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 22px;
  padding: 42px 48px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--color-gold);
  box-shadow: var(--shadow-strong);
}
.advisory-featured::before {
  content: ""; position: absolute; top: -90px; right: -70px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(211,159,107,0.18) 0%, transparent 70%);
}
.advisory-featured-photo {
  width: 210px; height: 250px; border-radius: 16px; overflow: hidden;
  border: 3px solid rgba(211,159,107,0.5); position: relative; z-index: 1;
}
.advisory-featured-photo img { width: 100%; height: 100%; object-fit: cover; }
.advisory-featured-body { position: relative; z-index: 1; }
.advisory-chair-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(211,159,107,0.16); color: var(--color-gold-light);
  border: 1px solid rgba(211,159,107,0.4); border-radius: 999px;
  padding: 7px 16px; font-size: 11.5px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px;
}
.advisory-chair-tag svg { width: 15px; height: 15px; }
.advisory-featured-body h3 { color: var(--color-white); font-size: 30px; margin-bottom: 6px; letter-spacing: -0.5px; }
.advisory-featured-body .advisory-creds { color: var(--color-gold); font-weight: 700; font-size: 13px; letter-spacing: 0.6px; margin-bottom: 16px; }
.advisory-featured-body p { color: rgba(255,255,255,0.82); font-size: 15.5px; line-height: 1.7; max-width: 640px; }

.advisory-members { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.advisory-card {
  display: block; text-align: center;
  background: var(--color-white); border-radius: 16px;
  padding: 36px 26px 30px; box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  position: relative; overflow: hidden; transition: all var(--transition);
}
.advisory-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--color-gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.advisory-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.advisory-card:hover::before { transform: scaleX(1); }
.advisory-card .advisory-photo {
  width: 120px; height: 120px; margin: 0 auto 20px; border-radius: 50%;
  overflow: hidden; border: 3px solid var(--color-gold-soft);
  box-shadow: 0 8px 20px rgba(43,27,73,0.16);
}
.advisory-card .advisory-photo img { width: 100%; height: 100%; object-fit: cover; }
.advisory-card h3 { font-size: 18.5px; margin-bottom: 4px; }
.advisory-card .advisory-creds { color: var(--color-gold); font-weight: 700; font-size: 11.5px; letter-spacing: 0.6px; margin-bottom: 9px; }
.advisory-card .advisory-role { font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--color-navy); font-weight: 700; margin-bottom: 13px; }
.advisory-card p { font-size: 13.5px; line-height: 1.55; color: var(--color-text-light); }

@media (max-width: 900px) {
  .advisory-featured { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 36px 30px; }
  .advisory-featured-body p { margin: 0 auto; }
  .advisory-members { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ===================================================================
   v13 — Bigger advisory photos + management overlay cards
   =================================================================== */

/* Advisory: large, very visible member photos */
.advisory-featured { grid-template-columns: 270px 1fr; }
.advisory-featured-photo { width: 270px; height: 340px; }

.advisory-card { padding: 0; text-align: left; }
.advisory-card .advisory-photo {
  width: 100%; height: 340px; margin: 0;
  border-radius: 0; border: none; box-shadow: none;
}
.advisory-card .advisory-photo img { object-position: center 15%; }
.advisory-card-body { padding: 24px 26px 28px; }
.advisory-card-body h3 { margin-bottom: 4px; }
.advisory-card-body .advisory-creds { margin-bottom: 9px; }

@media (max-width: 900px) {
  .advisory-featured { grid-template-columns: 1fr; }
  .advisory-featured-photo { width: 230px; height: 290px; }
  .advisory-card .advisory-photo { height: 360px; }
}

/* Management: modern overlay cards (name/role on the image) */
.team-card { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-card); }
.team-photo { height: 380px; }
.team-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,9,42,0) 40%, rgba(20,9,42,0.92) 100%);
}
.team-info {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px 24px 24px; text-align: left;
}
.team-info::before {
  content: ""; display: block; width: 30px; height: 3px;
  background: var(--color-gold); border-radius: 2px; margin-bottom: 12px;
}
.team-info h3 { color: var(--color-white); font-size: 20px; }
.team-card .team-role { color: var(--color-gold-light); }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-photo .avatar-placeholder { font-size: 60px; }

/* v14 — Contact office cards redesign */
.office-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 4px; }
.office-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid #ece9f1;
  border-radius: 18px;
  padding: 26px 26px 22px;
  box-shadow: 0 6px 22px rgba(20,9,42,0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}
.office-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}
.office-card:hover { transform: translateY(-5px); box-shadow: 0 16px 38px rgba(20,9,42,0.12); border-color: #e2dcec; }
.office-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.office-badge {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-navy); color: var(--color-gold);
}
.office-badge svg { width: 22px; height: 22px; }
.office-tag {
  display: block; font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase;
  font-weight: 700; color: var(--color-gold);
}
.office-card-head h4 { font-size: 18px; margin: 2px 0 0; letter-spacing: -0.2px; line-height: 1.1; }
.office-addr {
  font-size: 14px; color: var(--color-text-light); line-height: 1.55;
  padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid #efecf3;
}
.office-meta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.office-meta-row { display: flex; align-items: center; gap: 11px; font-size: 13.5px; color: var(--color-text); }
.office-meta-row svg { width: 17px; height: 17px; color: var(--color-gold); flex-shrink: 0; }
.office-meta-row strong { color: var(--color-navy); font-weight: 600; margin-right: 5px; }
.office-meta-row a { color: var(--color-text); transition: color var(--transition); }
.office-meta-row a:hover { color: var(--color-gold); }
.office-dir {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--color-navy); transition: gap var(--transition), color var(--transition);
}
.office-dir svg { width: 15px; height: 15px; color: var(--color-gold); transition: transform var(--transition); }
.office-dir:hover { color: var(--color-gold); gap: 11px; }
.office-dir:hover svg { transform: translate(2px,-2px); }
@media (max-width: 600px) { .office-cards { grid-template-columns: 1fr; } }

/* v15 — Mobile-friendliness & CLS hardening */
html { -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
img, video, svg, iframe { max-width: 100%; }
img { height: auto; }
/* keep object-fit images filling their fixed-height containers (override the height:auto above) */
.service-feature-media img, .team-photo img, .advisory-photo img, .advisory-featured-photo img,
.about-img img, .page-hero-bg, .hero-bg, .client-logo img, .cert-badge img, .member-logo img,
.why-visual img, .post-hero img, .blog-card-media img, .sector-card img, .floating-stat img,
.service-feature-video { height: 100%; }
.client-logo img, .cert-badge img, .member-logo img { height: auto; }
main { display: block; }
/* Generous touch targets on touch devices */
@media (max-width: 900px) {
  .main-nav a, .nav-cta .btn, .btn, .mobile-toggle,
  .footer-col a, .footer-contacts a, .utility-socials a, .footer-socials a, .office-dir {
    min-height: 44px;
  }
  .mobile-toggle { min-width: 48px; min-height: 48px; }
  .utility-socials a, .footer-socials a { min-width: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .btn, .nav-cta .btn { display: inline-flex; align-items: center; justify-content: center; }
}

/* v19 — Mobile layout fixes (homepage overflow, why-choose, core values, nav CTA, service icons) */
.nav-cta-mobile { display: none; }
@media (max-width: 768px) {
  /* Why-Choose: collapse to a single column — removes horizontal overflow + optimises the section */
  .why-grid { grid-template-columns: 1fr; gap: 34px; }
  .why-visual { max-width: 100%; padding: 0; margin: 0 auto; }
  .why-visual::before { left: 16px; right: 16px; top: 16px; }
  .why-visual-img { height: 340px; }
  .why-badge-1 { left: 10px; bottom: 12px; }
  .why-content { text-align: left; }
  .why-content h2 { font-size: 29px; line-height: 1.12; }
  .why-list { grid-template-columns: 1fr; }
  .why-cta { gap: 10px; }
  .why-cta .btn { flex: 1 1 auto; justify-content: center; }

  /* Navbar: hide the cramped header quote button; show a working full-width CTA inside the menu */
  .nav-cta .btn-gold { display: none; }
  .nav-cta-mobile { display: block; }
  .nav-cta-mobile a.btn-gold {
    display: block; text-align: center; margin-top: 12px;
    border-bottom: none; border-radius: 999px; padding: 14px 18px; font-size: 13px;
  }

  /* Core Values: two cards per row */
  .values-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .value-card { padding: 22px 16px; }
  .value-card h3 { font-size: 15.5px; }
  .value-card p { font-size: 12.5px; }
  .value-icon { margin-bottom: 12px; }

  /* Services: tidy the feature icon + eyebrow so blocks read neatly */
  .service-feature-body { max-width: 100%; }
  .service-feature-icon { width: 52px; height: 52px; padding: 12px; margin-bottom: 16px; }
  .service-feature-body .section-label { letter-spacing: 1px; }
}

/* v20 — SVG play icons (replacing the ▶ emoji) */
.hero-video-link .hvl-icon svg { width: 17px; height: 17px; margin-left: 2px; display: block; }
.video-play-btn svg { width: 30px; height: 30px; margin-left: 3px; display: block; }
