/*
Theme Name: MG Groep
Theme URI: https://www.mggroep.org
Author: MG Groep B.V.
Description: Custom theme for MG GROEP B.V. — a Netherlands-based commodities trading house. Static PHP templates, no page builder.
Version: 4.2.0
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
Text Domain: mggroep
*/


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

:root {
  /* Brand from MG shield + monogram — navy matched to actual logo rgb(32,44,88) */
  --navy:        #202c58;       /* exact logo navy */
  --navy-deep:   #161f3e;
  --navy-card:   #242f5e;
  --navy-line:   #2e3d70;
  --black:       #0c1128;

  --gold:        #C9A14B;       /* shield gold */
  --gold-light:  #E0BE6A;
  --gold-deep:   #9A7A2E;
  --gold-line:   rgba(201,161,75,0.32);
  --gold-glow:   rgba(201,161,75,0.18);
  --gold-tint:   rgba(201,161,75,0.06);

  --white:       #FFFFFF;
  --off-white:   #FAFAF8;
  --warm-bg:     #F4F1EA;
  --border:      #E5E0D6;
  --border-soft: #EFEBE2;

  --ink:         #0A0F22;
  --ink-mid:     #2C3548;
  --text-body:   #475569;
  --text-muted:  #6F7A8C;
  --text-soft:   #95A0B0;
  --gray-cool:   #C2CAD6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  /* Push all content below the fixed 78px nav */
  padding-top: 78px;
}

/* Hero is full-bleed so it overrides the padding */
.hero { margin-top: -78px; padding-top: 78px; }

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

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--warm-bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(32,44,88,0.06);
  transition: box-shadow 0.45s ease;
}

/* Inner container — same canvas as every section on the page */
.nav-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 6%;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
nav.scrolled {
  background: var(--warm-bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(32,44,88,0.10);
}
nav.scrolled .brand { color: var(--ink); }
nav.scrolled .nav-links a { color: var(--ink-mid); }
nav.scrolled .nav-links a:hover { color: var(--gold-deep); }
nav.scrolled .nav-cta { border-color: var(--gold-deep); color: var(--gold-deep); }
nav.scrolled .nav-cta:hover { background: var(--gold-deep); color: var(--white); }
nav.scrolled .logo-mg-block { background: var(--navy); }

.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-mg-block {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--navy);
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem; font-weight: 800; color: var(--white);
  letter-spacing: 0.01em;
  transition: background 0.4s;
}
.logo-text .brand {
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--white);
  transition: color 0.4s;
}
.logo-text .tagline {
  font-size: 0.56rem; letter-spacing: 0.32em;
  color: var(--gold); text-transform: uppercase; font-weight: 600;
  margin-top: 2px;
}

.nav-links { display: flex; gap: 2.4rem; list-style: none; }
.nav-links a {
  color: var(--ink-mid);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; transition: color 0.3s; font-weight: 500;
}
.nav-links a:hover { color: var(--gold-deep); }

.nav-cta {
  padding: 0.62rem 1.5rem;
  border: 1px solid var(--gold-deep); color: var(--gold-deep);
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s; background: transparent;
  font-weight: 600;
}
.nav-cta:hover { background: var(--gold-deep); color: var(--white); }

/* Hamburger button — hidden on desktop */
.hamburger {
  display: none;
  background: transparent; border: none;
  cursor: pointer; padding: 10px; gap: 5px;
  flex-direction: column; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  z-index: 210;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown menu */
.mobile-menu {
  position: fixed; top: 78px; left: 0; right: 0;
  background: var(--warm-bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(32,44,88,0.1);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
  z-index: 199;
}
.mobile-menu.open { max-height: calc(100vh - 78px); overflow-y: auto; }
.mobile-menu-list {
  list-style: none; padding: 0; margin: 0;
}
.mobile-menu-list li { border-bottom: 1px solid var(--border-soft); }
.mobile-menu-list li:last-child { border-bottom: none; }
.mobile-menu-list a {
  display: block;
  padding: 1.1rem 6%;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mid); text-decoration: none;
  transition: color 0.3s, background 0.3s;
}
.mobile-menu-list a:hover { color: var(--gold-deep); background: var(--off-white); }
.mobile-menu-list a.mobile-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  margin: 0.6rem 6%;
  padding: 1rem;
}
.mobile-menu-list a.mobile-cta:hover { background: var(--gold-deep); color: var(--white); }
.mobile-menu-list a.mobile-cta-secondary {
  background: var(--navy); color: var(--white); font-weight: 700;
  text-align: center; margin: 0.4rem 6% 0.6rem; padding: 0.85rem;
}
.mobile-menu-list a.mobile-cta-secondary:hover { background: var(--navy-deep); }
body.menu-open { overflow: hidden; }

/* ══════════════════════════════════
   HERO — Full-bleed refinery photo
══════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/wp-content/uploads/mg-design/hero.jpg');
  background-size: cover; background-position: center 60%;
  filter: saturate(1.05) contrast(1.05);
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(32,44,88,0.96) 0%, rgba(32,44,88,0.85) 38%, rgba(32,44,88,0.45) 70%, rgba(12,17,40,0.6) 100%),
    linear-gradient(to bottom, rgba(12,17,40,0.4) 0%, transparent 25%, transparent 70%, rgba(12,17,40,0.85) 100%);
}

.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,161,75,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,161,75,0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(105deg, black 0%, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(105deg, black 0%, black 50%, transparent 100%);
}

.hero-content {
  position: relative; z-index: 10;
  padding: 40px 6% 60px;
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;       /* centre to match nav-inner and section-inner */
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
  font-weight: 600;
}
.hero-eyebrow::before { content:''; width: 36px; height: 1px; background: var(--gold); }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.6vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: 2rem;
  text-shadow: 0 2px 50px rgba(0,0,0,0.6);
  text-wrap: pretty;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.86);
  max-width: 560px;
  margin-bottom: 3rem;
  letter-spacing: 0.005em;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4.5rem; }

.btn-primary {
  padding: 1.1rem 2.6rem;
  background: var(--gold); color: var(--navy);
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  border: none; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 12px;
  transition: all 0.3s; font-family: 'Inter', sans-serif;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(201,161,75,0.4);
}

.btn-secondary {
  padding: 1.1rem 2.4rem;
  background: rgba(255,255,255,0.04); color: var(--white);
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.4); cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 12px;
  transition: all 0.3s; font-family: 'Inter', sans-serif; backdrop-filter: blur(6px);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,161,75,0.08); }

.hero-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; padding-top: 2.4rem;
  border-top: 1px solid rgba(201,161,75,0.32);
}
.hero-pillar {
  padding-right: 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-pillar:last-child { border-right: none; }
.hero-pillar .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 600; color: var(--gold); line-height: 1;
  margin-bottom: 0.7rem;
}
.hero-pillar .lbl {
  font-size: 0.58rem; letter-spacing: 0.28em;
  color: rgba(255,255,255,0.7); text-transform: uppercase;
  font-weight: 500; line-height: 1.6;
}

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7); font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite; z-index: 10;
  font-weight: 500;
}
.scroll-hint .line { width: 1px; height: 38px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(7px);} }

/* ══════════════════════════════════
   MARQUEE
══════════════════════════════════ */
.marquee-bar {
  padding: 1.3rem 0; overflow: hidden;
  background: var(--black);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.marquee-track {
  display: flex; gap: 4rem; white-space: nowrap;
  animation: marqueeScroll 45s linear infinite;
}
.marquee-item {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gray-cool); flex-shrink: 0;
  display: flex; align-items: center; gap: 1.5rem; font-weight: 500;
}
.marquee-item::after { content:'◆'; color: var(--gold); font-size: 0.45rem; }
@keyframes marqueeScroll { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ══════════════════════════════════
   SHARED
══════════════════════════════════ */
.section-inner {
  padding-top: clamp(0.8rem, 1.5vw, 1.8rem);
  padding-bottom: clamp(3rem, 5vw, 6rem);
  padding-left: 6%; padding-right: 6%;
  max-width: 1340px; margin: 0 auto;
}
img { image-rendering: -webkit-optimize-contrast; }

.eyebrow {
  font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 12px;
  font-weight: 700;
}
.eyebrow::after { content:''; width: 38px; height: 1px; background: var(--gold-deep); }

.section-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  font-weight: 500; line-height: 1.2; margin-bottom: 1rem;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.section-h em { color: var(--gold-deep); font-style: italic; font-weight: 500; }
.section-h-white { color: var(--white) !important; }
.section-h-white em { color: var(--gold) !important; }

.body-text {
  font-size: 0.95rem; font-weight: 400; line-height: 1.85;
  color: var(--text-body); max-width: 540px;
}

.gold-div { height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); }

/* ══════════════════════════════════
   VERIFIED TRADE — Light, intro section
══════════════════════════════════ */
.sec-verified { background: var(--white); }

/* ══════════════════════════════════
   PETROLEUM — DARK navy with image grid
══════════════════════════════════ */
.sec-petroleum { background: var(--navy); position: relative; overflow: hidden; }
.sec-petroleum::before {
  content:''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,161,75,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,161,75,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.sec-petroleum .eyebrow { color: var(--gold); }
.sec-petroleum .eyebrow::after { background: var(--gold); }
.sec-petroleum .body-text { color: rgba(255,255,255,0.7); }

/* Petroleum header: heading left, description right */
.petro-header {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: start;
  margin-bottom: 2.5rem;
}
.petro-header .section-h { margin-bottom: 0; }
.petro-header .body-text { padding-top: 1.5rem; font-size: 0.95rem; line-height: 1.7; }

/* Petroleum 4-card grid — dark theme */
.petro-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.petro-card {
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.4s, box-shadow 0.4s;
}
.petro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.petro-card .log-img img { filter: brightness(0.9); }
.petro-card:hover .log-img img { transform: scale(1.06); filter: brightness(1.05); }
.petro-card-body {
  padding: 1.1rem 1.2rem 1.3rem;
}
.petro-card-body h4 {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); font-weight: 700; margin-bottom: 0.5rem;
}
.petro-card-body p { font-size: 0.78rem; color: rgba(255,255,255,0.72); line-height: 1.6; }

.petro-card-inset {
  background: rgba(201,161,75,0.07);
  border: 1px solid rgba(201,161,75,0.22);
  border-left: 3px solid var(--gold);
  color: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  padding: 1.4rem 1.6rem;
}
.petro-card-inset .li-tag {
  font-size: 0.55rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 0.5rem;
}
.petro-card-inset h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500; line-height: 1.2;
  margin-bottom: 0.5rem; color: var(--white);
}
.petro-card-inset p {
  font-size: 0.75rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0;
}

/* ══════════════════════════════════
   LOGISTICS — WHITE with image cards
══════════════════════════════════ */
.sec-logistics { background: var(--off-white); }

.log-header {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: start;
  margin-bottom: 2rem;
}
.log-header .section-h { margin-bottom: 0; }
.log-header .body-text { max-width: none; font-size: 0.95rem; line-height: 1.7; padding-top: 1.5rem; }

.log-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.log-card {
  position: relative; overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.4s, box-shadow 0.4s;
}
.log-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(32,44,88,0.1);
}
.log-img {
  height: 145px; overflow: hidden; position: relative;
}
.log-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.log-card:hover .log-img img { transform: scale(1.06); }
.log-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(32,44,88,0.4));
}
.log-num {
  position: absolute; top: 14px; left: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600; color: var(--gold);
  background: rgba(32,44,88,0.85); padding: 4px 14px;
  letter-spacing: 0.05em;
  z-index: 2;
}
.log-body { padding: 1.1rem 1.2rem 1.3rem; }
.log-body h4 {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy); font-weight: 700; margin-bottom: 0.5rem;
}
.log-body p { font-size: 0.78rem; color: var(--text-body); line-height: 1.6; }

.log-card-inset {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--navy-line);
}
.log-card-inset .li-tag {
  font-size: 0.55rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 0.5rem;
}
.log-card-inset h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500; line-height: 1.2;
  margin-bottom: 0.5rem;
}
.log-card-inset p {
  font-size: 0.75rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin: 0;
}

/* ══════════════════════════════════
   TRUST STRIP
══════════════════════════════════ */
.trust-strip {
  background: var(--navy-deep);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
/* Inner flex row centred on the same canvas */
.trust-strip-inner {
  max-width: 1340px; margin: 0 auto;
  padding: 3.6rem 6%;
  display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 2rem;
}
.t-item { text-align: center; }
.t-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 600; color: var(--white); line-height: 1;
}
.t-num span { color: var(--gold); }
.t-lbl {
  font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gray-cool); margin-top: 8px; font-weight: 600;
}
.t-sep { width: 1px; height: 55px; background: rgba(255,255,255,0.12); }

/* ══════════════════════════════════
   GOLD — WARM bg, image-dominant
══════════════════════════════════ */
.sec-gold { background: var(--warm-bg); position: relative; overflow: hidden; }

.gold-header {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: start;
  margin-bottom: 2.5rem;
}
.gold-header .section-h { margin-bottom: 0; }
.gold-header .body-text { max-width: none; font-size: 0.95rem; line-height: 1.7; padding-top: 1.5rem; }

/* Gold cards — image on top, text below */
.gold-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}
.gold-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.gold-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(32,44,88,0.10);
}
.gc-img {
  width: 100%; aspect-ratio: 4 / 3; overflow: hidden;
}
.gc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.gold-card:hover .gc-img img { transform: scale(1.05); }
.gc-body {
  padding: 1.4rem 1.4rem 1.6rem;
  flex: 1; display: flex; flex-direction: column; gap: 0.5rem;
}
.gc-label {
  font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
}
.gc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--navy); font-weight: 600;
  line-height: 1.25; margin: 0;
}
.gc-desc {
  font-size: 0.875rem; color: var(--body); line-height: 1.7;
  margin: 0; flex: 1;
}

.origin-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.4rem; }
.origin-tag {
  font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-deep); padding: 0.45rem 0.95rem;
  border: 1px solid var(--gold-line); font-weight: 700;
  background: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════
   GLOBAL REACH — Solid navy, typographic
══════════════════════════════════ */
.sec-global {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
}
.sec-global::before {
  content:''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,161,75,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,161,75,0.05) 1px, transparent 1px);
  background-size: 110px 110px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.global-inner {
  position: relative; z-index: 5;
  padding-top: clamp(0.8rem, 1.5vw, 1.8rem);
  padding-bottom: clamp(3rem, 5vw, 6rem);
  padding-left: 6%; padding-right: 6%;
  max-width: 1340px; margin: 0 auto;
}
.global-head {
  text-align: center; max-width: 760px; margin: 0 auto 2.5rem;
}
.global-head .eyebrow { color: var(--gold); justify-content: center; display: inline-flex; }
.global-head .eyebrow::after { background: var(--gold); }
.global-head .body-text {
  margin: 1.5rem auto 0; color: rgba(255,255,255,0.75);
}

.sec-global .petro-cards { margin-bottom: 2.5rem; }

/* City directory */
.cities-block {
  border-top: 1px solid rgba(201,161,75,0.2);
  border-bottom: 1px solid rgba(201,161,75,0.2);
  padding: 1.6rem 0;
  display: grid; grid-template-columns: 200px 1fr; gap: 3rem;
  align-items: center;
  min-width: 0;
}
.cities-block > * { min-width: 0; }
.cities-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--gold); font-style: italic; font-weight: 500;
  line-height: 1.3;
}
.cities-label small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 600; font-style: normal;
  margin-top: 6px;
}
.cities-grid {
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.2rem;
}
.city-item {
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  flex: 0 0 auto;
}
.city-item::before {
  content:''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  box-shadow: 0 0 6px rgba(201,161,75,0.5);
}
.city-item.dim { color: rgba(255,255,255,0.45); }
.city-item.dim::before { background: rgba(201,161,75,0.4); box-shadow: none; }
.gcity-old { display:none; }
.gcity-removed {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  font-weight: 500;
}
.gcity.active { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════
   WHY US — DARK NAVY
══════════════════════════════════ */
.sec-why { background: var(--navy); position: relative; overflow: hidden; }
.sec-why::before {
  content:''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,161,75,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,161,75,0.04) 1px, transparent 1px);
  background-size: 100px 100px;
  pointer-events: none;
}
.sec-why .eyebrow { color: var(--gold); justify-content: center; }
.sec-why .eyebrow::after { background: var(--gold); }
.why-head { text-align: center; max-width: 700px; margin: 0 auto 2.5rem; position: relative; z-index: 2; }
.why-head .eyebrow { display: inline-flex; }

.why-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1px; background:rgba(201,161,75,0.12);
  position: relative; z-index: 2;
}
.w-card {
  padding:2.6rem 2.2rem; background:var(--navy);
  position:relative; border-top:2px solid transparent; transition:all 0.35s;
}
.w-card:hover {
  background:var(--navy-card);
  border-top-color:var(--gold);
  box-shadow:0 0 30px rgba(201,161,75,0.08);
}
.w-card::before {
  content:attr(data-n);
  position:absolute; top:1.4rem; right:1.4rem;
  font-family:'Cormorant Garamond',serif; font-size:4.5rem; font-weight:600;
  color:rgba(201,161,75,0.08); line-height:1;
}
.w-card svg { width:28px; height:28px; color:var(--gold); margin-bottom:1.2rem; }
.w-card h4 {
  font-size:0.78rem; letter-spacing:0.14em; text-transform:uppercase;
  font-weight:700; color:var(--white); margin-bottom:0.8rem;
}
.w-card p { font-size:0.82rem; color:rgba(255,255,255,0.75); line-height:1.8; font-weight:400; }

/* ══════════════════════════════════
   ABOUT — WHITE with shield logo
══════════════════════════════════ */
.sec-about { background: var(--white); }
.about-layout { display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:start; }
/* About section heading inherits unified scale */
.about-layout .body-text { color: var(--text-body); }
.about-layout blockquote {
  font-family:'Cormorant Garamond',serif;
  font-size:1.3rem; font-weight:500; font-style:italic;
  line-height:1.5; color:var(--navy);
  border-left:2px solid var(--gold); padding-left:1.5rem; margin:1.5rem 0;
  text-wrap: pretty;
}
.about-stats {
  display:grid; grid-template-columns:1fr 1fr 1fr;
  gap:1px; background:var(--border); margin-top:4rem;
  border: 1px solid var(--border);
}

/* Core Values */
.core-values { margin-top: 4rem; padding-top: 4rem; border-top: 1px solid var(--border); }
.cv-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem;
}
.cv-card {
  padding: 1.8rem 1.4rem;
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.cv-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(201,161,75,0.1); }
.cv-icon {
  width: 36px; height: 36px; margin-bottom: 1rem;
  color: var(--gold);
}
.cv-icon svg { width: 100%; height: 100%; }
.cv-card h5 {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy); font-weight: 700; margin-bottom: 0.7rem;
}
.cv-card p { font-size: 0.82rem; color: var(--text-body); line-height: 1.7; }

/* About mission statement emphasis */
.about-mission { font-style: italic; color: var(--navy); font-weight: 500; }
.a-stat {
  padding:1.8rem; background:var(--white); text-align:center;
  transition:background 0.3s;
}
.a-stat:hover { background:var(--off-white); }
.a-stat .n {
  font-family:'Cormorant Garamond',serif;
  font-size:2.4rem; color:var(--navy); font-weight:600; line-height:1;
}
.a-stat .n em { color: var(--gold-deep); font-style: normal; }
.a-stat .l {
  font-size:0.58rem; letter-spacing:0.24em; text-transform:uppercase;
  color:var(--text-muted); margin-top:7px; font-weight:600;
}

.shield-display {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 3rem;
  background: linear-gradient(135deg, var(--warm-bg) 0%, #EDE8DA 100%);
  border: 1px solid var(--border);
  min-height: 460px;
}
.shield-display::before {
  content:''; position: absolute; inset: 18px;
  border: 1px solid var(--gold-line);
}
.shield-display::after {
  content:''; position: absolute; top: 28px; left: 28px;
  font-family:'Cormorant Garamond',serif;
  font-size: 0.62rem; letter-spacing: 0.3em; color: var(--gold-deep); font-weight: 700;
  text-transform: uppercase;
  content: '— EST. The Netherlands';
}
.shield-img {
  width: 220px; height: auto;
  filter: drop-shadow(0 20px 40px rgba(154,122,46,0.35));
  position: relative; z-index: 2;
}
.shield-rings {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 360px; height: 360px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  animation: ringR 30s linear infinite;
}
.shield-rings::before {
  content:''; position: absolute; inset: -40px;
  border: 1px dashed rgba(201,161,75,0.3);
  border-radius: 50%;
}
@keyframes ringR { from{transform:translate(-50%,-50%) rotate(0);} to{transform:translate(-50%,-50%) rotate(360deg);} }

.shield-tagline {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

/* ══════════════════════════════════
   CONTACT — DARK NAVY
══════════════════════════════════ */
.sec-contact { background: var(--navy-deep); position: relative; }
.sec-contact .eyebrow { color: var(--gold); }
.sec-contact .eyebrow::after { background: var(--gold); }

/* 3-column contact layout */
.contact-3col {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1.2fr;
  width: 100%;
  min-height: 600px;
}

/* Columns — all same background */
.contact-col-left {
  background: var(--navy-deep);
  padding: 5rem 3.5rem;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  border-right: 1px solid var(--navy-line);
}
.contact-col-left .section-h { margin-bottom: 1.5rem; }
.contact-col-left .eyebrow { justify-content: center; }
.contact-logo {
  width: 120px; height: auto;
  margin: 2rem 0;
  opacity: 0.9;
}
.contact-intro {
  font-size: 0.88rem; color: rgba(255,255,255,0.72);
  line-height: 1.8; font-weight: 400;
}

/* Middle column */
.contact-col-mid {
  background: var(--navy-deep);
  padding: 5rem 3.5rem;
  border-right: 1px solid var(--navy-line);
  display: flex; flex-direction: column; justify-content: center;
}

/* Right column */
.contact-col-right {
  background: var(--navy-deep);
  padding: 5rem 3.5rem;
}

.c-office {
  padding:1.3rem 1.5rem;
  border:1px solid var(--navy-line);
  background:var(--navy);
  margin-bottom:0.8rem; display:flex; gap:1rem; align-items:flex-start;
  transition:all 0.3s;
}
.c-office:hover { border-color:var(--gold-line); box-shadow:0 0 20px rgba(201,161,75,0.07); }
.c-dot { width:8px; height:8px; border-radius:50%; background:var(--gold); margin-top:6px; flex-shrink:0; box-shadow:0 0 8px var(--gold-glow); }
.c-name {
  font-size:0.66rem; letter-spacing:0.2em; text-transform:uppercase;
  color:var(--gold); margin-bottom:6px; font-weight:700;
}
.c-detail { font-size:0.85rem; color:rgba(255,255,255,0.85); font-weight:400; line-height:1.65; }

.c-email-block {
  margin-top: 1.5rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--gold-line);
  background: rgba(201,161,75,0.05);
}
.c-email-block .lbl {
  font-size: 0.56rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gray-cool); font-weight: 600; margin-bottom: 8px;
}
.c-email-block .em {
  font-size: 1.05rem; color: var(--gold); font-weight: 500; letter-spacing: 0.01em;
}
.c-email-block .web {
  font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 400; margin-top: 4px;
}

.wa-btn {
  display:inline-flex; align-items:center; gap:10px;
  padding:1rem 2rem; background:var(--gold); color:var(--navy);
  font-size:0.7rem; letter-spacing:0.18em; text-transform:uppercase; font-weight:700;
  text-decoration:none; margin-top:1.8rem; transition:all 0.3s;
  border: none;
}
.wa-btn:hover { background:var(--gold-deep); color:var(--navy); transform:translateY(-2px); box-shadow:0 8px 20px rgba(201,161,75,0.3); }

.form-panel {
  padding: 2.5rem;
  border: 1px solid var(--navy-line);
  background: var(--navy);
}
.form-panel-title {
  font-family:'Cormorant Garamond',serif;
  font-size:1.7rem; font-weight:500; color:var(--white); margin-bottom:0.4rem;
}
.form-panel-sub {
  font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-bottom: 2rem;
  font-weight: 400;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.f-group { display:flex; flex-direction:column; gap:7px; margin-bottom:1rem; }
.f-group label {
  font-size:0.58rem; letter-spacing:0.26em; text-transform:uppercase;
  color:var(--gold); font-weight:700;
}
.f-group input, .f-group select, .f-group textarea {
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.12);
  color:var(--white); padding:0.95rem 1rem;
  font-size:0.86rem; font-family:'Inter',sans-serif;
  outline:none; transition:border-color 0.3s;
}
.f-group input::placeholder, .f-group textarea::placeholder { color:rgba(194,202,214,0.4); }
.f-group input:focus,.f-group select:focus,.f-group textarea:focus { border-color:var(--gold); }
.f-group select option { background:var(--navy); color:var(--white); }
.f-group textarea { resize:vertical; min-height:110px; }

/* PDF upload section */
.pdf-upload-section {
  margin-bottom: 1.2rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(201,161,75,0.25);
  background: rgba(201,161,75,0.04);
}
.pdf-upload-label {
  font-size: 0.6rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 1rem;
}
.pdf-upload-label span { color: rgba(255,255,255,0.45); font-weight: 400; letter-spacing: 0.1em; }
.pdf-upload-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.8rem; }
.file-input-wrap { position: relative; }
.file-input-wrap input[type="file"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer; z-index: 2;
}
.file-placeholder {
  display: block;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.4);
  padding: 0.75rem 0.9rem;
  font-size: 0.78rem; font-family: 'Inter', sans-serif;
  transition: border-color 0.3s, color 0.3s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.file-input-wrap:hover .file-placeholder {
  border-color: var(--gold); color: rgba(255,255,255,0.75);
}

.submit-btn {
  width:100%; padding:1.15rem;
  background:var(--gold); color:var(--navy);
  border:none; cursor:pointer;
  font-size:0.72rem; letter-spacing:0.26em; text-transform:uppercase; font-weight:700;
  font-family:'Inter',sans-serif; transition:all 0.3s;
}
.submit-btn:hover { background:var(--gold-light); box-shadow:0 8px 28px rgba(201,161,75,0.35); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: var(--warm-bg);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border);
  color: var(--ink-mid);
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:4rem;
  padding: 0 6% 3rem;
  border-bottom:1px solid var(--border); margin-bottom:2rem;
  max-width: 1340px; margin-left: auto; margin-right: auto;
}
.footer-desc {
  font-size:0.85rem; color:var(--ink-mid); line-height:1.8;
  margin-top:1.4rem; max-width:320px; font-weight:400;
}
.footer-tagline {
  font-size: 0.6rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
  margin-top: 1rem; margin-bottom: 0.4rem;
}
.footer-col h5 {
  font-size:0.66rem; letter-spacing:0.28em; text-transform:uppercase;
  color:var(--navy); margin-bottom:1.4rem; font-weight:700;
}
.footer-col ul { list-style:none; }
.footer-col li {
  margin-bottom:0.7rem;
  font-size:0.85rem; color:var(--ink-mid);
  font-weight:400; line-height:1.5;
}
.footer-col a {
  color:var(--ink-mid); text-decoration:none;
  transition:color 0.3s;
}
.footer-col a:hover { color:var(--gold-deep); }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:1rem 2rem;
  max-width: 1340px; margin: 0 auto;
  padding: 0 6%;
}
.footer-bottom p { font-size:0.78rem; color:var(--ink-mid); margin: 0; }
.footer-bottom-left { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-bottom-right { display: flex; align-items: center; gap: 1.5rem; }
.footer-reg-details {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.72rem; color: var(--text-body);
  letter-spacing: 0.04em; font-weight: 500;
}
.footer-reg-sep { opacity: 0.4; }
.footer-disclaimer {
  font-size: 0.74rem; color: var(--text-body); line-height: 1.7;
  max-width: 1340px; margin: 1.6rem auto 0;
  padding: 1.4rem 6% 0;
  border-top: 1px solid var(--border);
}
.footer-legal { display:flex; gap:2rem; }
.footer-legal a {
  font-size:0.74rem; color:var(--ink-mid);
  text-decoration:none; transition:color 0.3s; font-weight: 500;
}
.footer-legal a:hover { color:var(--gold-deep); }

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
.fade-up {
  opacity:0; transform:translateY(30px);
  transition:opacity 0.85s ease, transform 0.85s ease;
}
.fade-up.visible { opacity:1; transform:translateY(0); }
.delay-1 { transition-delay:0.15s; }
.delay-2 { transition-delay:0.3s; }

/* ══════════════════════════════════
   RESPONSIVE — MOBILE-FIRST OVERHAUL
══════════════════════════════════ */

/* Universal overflow prevention */
html, body { overflow-x: hidden; max-width: 100vw; }
img, video, iframe { max-width: 100%; height: auto; }
.section-inner, .global-inner, .nav-inner, .hero-content, .trust-strip-inner, .footer-grid, .footer-bottom { box-sizing: border-box; min-width: 0; }

/* All grid/flex children need min-width: 0 to prevent overflow */
.section-inner > *, .petroleum > *, .gold-header > *, .log-header > *,
.petro-header > *, .petro-cards > *, .global-inner > *, .about-layout > *,
.contact-3col > *, .footer-grid > *, .why-grid > *, .log-grid > *,
.cv-grid > *, .gold-cards > *,
.cities-grid > * { min-width: 0; }

/* ─── TABLETS (1100px and below) ─── */
@media (max-width: 1100px) {
  .section-inner { padding: 1rem 6% 3rem; }
  .global-inner { padding: 1rem 6% 3rem; }
  .global-inner, .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-3col { grid-template-columns: 1fr 1fr; }
  .contact-col-right { grid-column: 1 / -1; border-right: none; border-top: 1px solid var(--navy-line); }
  .gold-header, .log-header, .petro-header { grid-template-columns: 1fr; gap: 2rem; }
  .cities-block { grid-template-columns: 1fr; gap: 1rem; padding: 1.2rem 0; }
  .gold-header .body-text, .log-header .body-text, .petro-header .body-text { padding-top: 0; max-width: 100%; }
  .gold-header { margin-bottom: 2rem; }
  .log-header { margin-bottom: 2rem; }
  .petro-header { margin-bottom: 2rem; }
  .log-grid { grid-template-columns: 1fr 1fr; }
  .petro-cards { grid-template-columns: 1fr 1fr; }
  .gold-cards { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cv-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; margin-bottom: 1rem; }
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3),
  .footer-grid > div:nth-child(4) { }
  .t-sep { display: none; }
  .hero-pillars { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .hero-pillar { border-right: none; padding-right: 0; }
  .section-h { font-size: clamp(2rem, 4.5vw, 2.8rem); }
}

/* ─── LARGE MOBILE / SMALL TABLET (900px and below) ─── */
@media (max-width: 900px) {
  .form-panel-title { font-size: 1.4rem; }
  .hero h1 { font-size: clamp(2.4rem, 6vw, 3.4rem); }
}

/* ─── MOBILE LANDSCAPE / TABLET PORTRAIT (768px and below) ─── */
@media (max-width: 768px) {
  /* ─ Body & Nav ─ */
  body { padding-top: 70px; font-size: 15px; }
  .hero { margin-top: -70px; padding-top: 70px; min-height: auto; }
  .nav-inner { height: 70px; padding: 0 5%; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { top: 70px; }
  .mobile-menu.open { max-height: calc(100vh - 70px); }

  /* ─ Section spacing ─ */
  .section-inner { padding: 0.8rem 5% 2.8rem; }
  .global-inner { padding: 0.8rem 5% 2.8rem; }
  .hero-content { padding: 90px 5% 50px; }

  /* ─ Typography ─ */
  .hero h1 { font-size: clamp(2rem, 7.5vw, 2.8rem); line-height: 1.15; margin-bottom: 1.5rem; }
  .hero-sub { font-size: 0.95rem; line-height: 1.65; max-width: 100%; margin-bottom: 2rem; }
  .hero-eyebrow { font-size: 0.6rem; margin-bottom: 1.5rem; letter-spacing: 0.3em; }
  .section-h { font-size: clamp(1.8rem, 6vw, 2.4rem); line-height: 1.2; margin-bottom: 1.2rem; }
  .body-text { font-size: 0.92rem; line-height: 1.65; }
  .eyebrow { font-size: 0.6rem; letter-spacing: 0.22em; }

  /* ─ Buttons & Actions ─ */
  .hero-actions { flex-direction: column; align-items: stretch; gap: 0.8rem; margin-bottom: 3rem; }
  .btn-primary, .btn-secondary { padding: 0.95rem 1.5rem; font-size: 0.68rem; justify-content: center; width: 100%; }

  /* ─ Hero Pillars ─ */
  .hero-pillars { grid-template-columns: 1fr 1fr; gap: 0.8rem; padding-top: 1.8rem; }
  .hero-pillar { border-right: none; padding: 1rem 0; }
  .hero-pillar .num { font-size: 2rem; margin-bottom: 0.4rem; }
  .hero-pillar .lbl { font-size: 0.52rem; letter-spacing: 0.22em; }

  /* ─ All Grids → Single Column ─ */
  .log-grid, .why-grid, .footer-grid, .form-row { grid-template-columns: 1fr !important; gap: 1rem; }
  .petro-cards { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .gold-cards { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .cv-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* ─ Marquee ─ */
  .marquee-item { font-size: 0.78rem; padding: 0 0.9rem; }
  .marquee-bar { padding: 0.9rem 0; }

  /* ─ Trust Strip ─ */
  .trust-strip-inner { padding: 2.2rem 5%; gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
  .t-item { padding: 0.8rem 0.6rem; flex: 1 1 28%; min-width: 100px; }
  .t-num { font-size: 1.8rem; }
  .t-lbl { font-size: 0.55rem; letter-spacing: 0.22em; margin-top: 4px; }
  .t-sep { display: none; }

  /* ─ Petroleum ─ */
  .petro-card-body { padding: 1.1rem 1.2rem 1.3rem; }
  .petro-card-body h4 { font-size: 0.68rem; }
  .petro-card-body p { font-size: 0.74rem; }
  .petro-card-inset { padding: 1.5rem 1.4rem; }
  .petro-card-inset h4 { font-size: 1.25rem; }

  /* ─ Logistics ─ */
  .log-card { display: block; }
  .log-img { aspect-ratio: 16/10; height: auto !important; }
  .log-body { padding: 1.4rem 1.2rem; }
  .log-body h4 { font-size: 1rem; }
  .log-body p { font-size: 0.82rem; line-height: 1.55; }
  .log-num { font-size: 1.4rem; padding: 0.5rem 0.85rem; }
  .log-card-inset { grid-column: 1 !important; padding: 1.5rem 1.2rem; text-align: left; }
  .log-card-inset h4 { font-size: 1rem; margin: 0.4rem 0; }
  .log-card-inset p { font-size: 0.8rem; }

  /* ─ Gold ─ */
  .gold-cards { grid-template-columns: 1fr; gap: 1rem; }
  .gc-body { padding: 1.1rem 1.1rem 1.3rem; }
  .gc-title { font-size: 1.1rem; }
  .gc-desc { font-size: 0.82rem; }
  .origin-tags { gap: 0.4rem; justify-content: flex-start; }
  .origin-tag { font-size: 0.55rem; padding: 0.4rem 0.8rem; letter-spacing: 0.2em; }

  /* ─ Global Reach ─ */
  .cities-block { padding: 1.5rem 0; margin-top: 1.5rem; }
  .cities-label { font-size: 1.1rem; }
  .cities-label small { font-size: 0.55rem; margin-top: 6px; }
  .cities-grid { gap: 0.5rem 0.8rem; }
  .city-item { font-size: 0.6rem; letter-spacing: 0.15em; }
  .city-item::before { width: 3px; height: 3px; }

  /* ─ Why Cards ─ */
  .w-card { padding: 1.6rem 1.4rem; }
  .w-card svg { width: 28px; height: 28px; margin-bottom: 1rem; }
  .w-card h4 { font-size: 0.95rem; margin-bottom: 0.6rem; }
  .w-card p { font-size: 0.8rem; line-height: 1.55; }
  .w-card[data-n]::after { font-size: 1rem; top: 0.8rem; right: 1rem; }

  /* ─ About ─ */
  .about-layout { gap: 2rem; }
  .about-layout blockquote { font-size: 1.1rem; padding: 0.6rem 1rem; margin: 1rem 0; }
  .shield-display { min-height: 280px; padding: 1.5rem; }
  .shield-img { width: 130px; }
  .shield-rings { width: 220px; height: 220px; }
  .shield-tagline { font-size: 0.55rem; letter-spacing: 0.18em; }
  .a-stat { padding: 1.2rem 0.8rem; }
  .a-stat .n { font-size: 1.7rem; }
  .a-stat .l { font-size: 0.52rem; }

  /* ─ Core Values ─ */
  .cv-card { padding: 1.4rem 1.2rem; }
  .cv-card h5 { font-size: 0.72rem; margin-bottom: 0.5rem; }
  .cv-card p { font-size: 0.78rem; line-height: 1.55; }
  .cv-icon { width: 30px; height: 30px; margin-bottom: 0.8rem; }

  /* ─ Contact ─ */
  .form-panel { padding: 1.5rem 1.2rem; }
  .form-panel-title { font-size: 1.2rem; margin-bottom: 0.3rem; }
  .form-panel-sub { font-size: 0.72rem; margin-bottom: 1.5rem; }
  .f-group { margin-bottom: 0.8rem; }
  .f-group label { font-size: 0.55rem; }
  .f-group input, .f-group select, .f-group textarea {
    font-size: 0.82rem; padding: 0.75rem 0.85rem;
    width: 100%; max-width: 100%;
  }
  .submit-btn { padding: 0.85rem 1.2rem; font-size: 0.68rem; width: 100%; }
  .pdf-upload-grid { grid-template-columns: 1fr; }
  .c-office { padding: 0.9rem 1rem; margin-bottom: 0.5rem; gap: 0.7rem; }
  .c-name { font-size: 0.6rem; letter-spacing: 0.16em; }
  .c-detail { font-size: 0.78rem; line-height: 1.5; }
  .c-email-block { padding: 1rem 1.2rem; margin-top: 1rem; }
  .c-email-block .em { font-size: 0.95rem; }
  .c-email-block .web { font-size: 0.78rem; }
  .wa-btn { width: 100%; justify-content: center; padding: 0.95rem 1rem; font-size: 0.65rem; margin-top: 1.2rem; }

  /* ─ Footer ─ */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 0 5%; }
  .footer-desc { font-size: 0.82rem; line-height: 1.6; }
  .footer-col h5 { font-size: 0.7rem; margin-bottom: 0.8rem; }
  .footer-col a { font-size: 0.78rem; }
  .footer-col li { margin-bottom: 0.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.5rem 5% 0; }
  .footer-bottom p { font-size: 0.7rem; line-height: 1.55; }
  .footer-legal { gap: 1rem; flex-wrap: wrap; }
  .footer-legal a { font-size: 0.66rem; }
}

/* ─── SMALL MOBILE (600px and below) ─── */
@media (max-width: 600px) {
  body { padding-top: 65px; }
  .nav-inner { height: 65px; padding: 0 4%; }
  .hero { margin-top: -65px; padding-top: 65px; }
  .mobile-menu { top: 65px; }
  .mobile-menu.open { max-height: calc(100vh - 65px); }
  .hero-content { padding: 80px 4% 40px; }
  .section-inner { padding: 0.7rem 4% 2.3rem; }
  .global-inner { padding: 0.7rem 4% 2.3rem; }

  /* Typography */
  .hero h1 { font-size: clamp(1.7rem, 7.5vw, 2.3rem); }
  .section-h { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .hero-sub { font-size: 0.88rem; }
  .body-text { font-size: 0.88rem; }

  /* Hero pillars to single column */
  .hero-pillars { grid-template-columns: 1fr 1fr; gap: 0.6rem; padding-top: 1.4rem; }
  .hero-pillar { padding: 0.7rem 0; }
  .hero-pillar .num { font-size: 1.7rem; }
  .scroll-hint { display: none; }

  /* Stats */
  .about-stats { grid-template-columns: 1fr 1fr 1fr; }
  .a-stat { padding: 1rem 0.5rem; }
  .a-stat .n { font-size: 1.5rem; }
  .a-stat .l { font-size: 0.48rem; }
  .cv-grid { grid-template-columns: 1fr; }
  .petro-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Trust strip — 3 columns */
  .trust-strip-inner { padding: 1.8rem 4%; gap: 0.8rem; }
  .t-item { flex: 1 1 30%; padding: 0.6rem 0.4rem; min-width: 80px; }
  .t-num { font-size: 1.5rem; }
  .t-lbl { font-size: 0.48rem; letter-spacing: 0.18em; }

  /* Marquee */
  .marquee-item { font-size: 0.72rem; padding: 0 0.7rem; }

  /* Logistics inset */
  .log-card-inset { padding: 1.2rem 1rem; }

  /* Cities */
  .city-item { font-size: 0.55rem; letter-spacing: 0.12em; }
  .cities-grid { gap: 0.4rem 0.7rem; }

  /* Contact */
  .form-panel { padding: 1.3rem 1rem; }
  .contact-3col { grid-template-columns: 1fr; }
  .contact-col-left, .contact-col-mid, .contact-col-right { padding: 3rem 5%; border-right: none; border-bottom: 1px solid var(--navy-line); }
  .contact-col-right { border-bottom: none; }

  /* Shield */
  .shield-display { min-height: 240px; padding: 1.2rem; }
  .shield-img { width: 110px; }
  .shield-rings { width: 200px; height: 200px; }

  /* Logo */
  .logo-img { height: 38px; }
}

/* ─── EXTRA SMALL (480px and below) ─── */
@media (max-width: 480px) {
  body { padding-top: 60px; }
  .nav-inner { height: 60px; padding: 0 4%; }
  .hero { margin-top: -60px; padding-top: 60px; }
  .mobile-menu { top: 60px; }
  .mobile-menu.open { max-height: calc(100vh - 60px); }
  .hero-content { padding: 70px 4% 30px; }
  .section-inner { padding: 0.6rem 4% 2rem; }
  .global-inner { padding: 0.6rem 4% 2rem; }

  /* Typography very small */
  .hero h1 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .section-h { font-size: clamp(1.35rem, 5vw, 1.7rem); }
  .form-panel-title { font-size: 1.05rem; }

  /* Logo */
  .logo-img { height: 34px; }
  .nav-cta { padding: 0.45rem 0.8rem; font-size: 0.55rem; letter-spacing: 0.12em; }

  /* Hero pillars */
  .hero-pillars { grid-template-columns: 1fr; gap: 0.4rem; }
  .hero-pillar { padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero-pillar:last-child { border-bottom: none; }

  /* About stats */
  .about-stats { grid-template-columns: 1fr 1fr; }

  /* Trust strip */
  .trust-strip-inner { flex-direction: column; gap: 0; padding: 1rem 4%; }
  .t-item { flex: none; width: 100%; padding: 1rem 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .t-item:last-child { border-bottom: none; }
  .t-num { font-size: 1.6rem; }

  /* Marquee */
  .marquee-item { font-size: 0.65rem; padding: 0 0.6rem; }

  /* Buttons */
  .btn-primary, .btn-secondary { padding: 0.85rem 1.2rem; font-size: 0.62rem; }

  /* Gold */
  .gold-cards { grid-template-columns: 1fr; }
  .origin-tag { font-size: 0.5rem; padding: 0.35rem 0.7rem; }

  /* Shield */
  .shield-display { min-height: 200px; padding: 1rem; }
  .shield-img { width: 95px; }
  .shield-rings { width: 170px; height: 170px; }
  .shield-tagline { font-size: 0.5rem; }

  /* Footer */
  .footer-bottom { padding: 1.2rem 4% 0; }
  .footer-bottom p { font-size: 0.65rem; }
  .footer-legal { gap: 0.8rem; }
  .footer-legal a { font-size: 0.6rem; }

  /* Forms - keep inputs touchable */
  .f-group input, .f-group select, .f-group textarea { font-size: 16px; padding: 0.8rem; } /* 16px prevents iOS zoom */

  /* Body padding adjustments */
  blockquote { font-size: 0.95rem; padding-left: 0.8rem; margin: 0.8rem 0; }
  .about-layout blockquote { font-size: 1rem; padding-left: 1rem; margin: 1rem 0; }
}

/* ─── VERY SMALL (360px and below) ─── */
@media (max-width: 360px) {
  .hero h1 { font-size: 1.45rem; }
  .section-h { font-size: 1.3rem; }
  .marquee-item { font-size: 0.6rem; }
  .hero-pillar .num { font-size: 1.5rem; }
}

/* ── LOGO ─────────────────────────────────────────────────────────── */
.logo { display: flex; align-items: center; text-decoration: none; padding: 0; }
.logo-img {
    height: 62px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: height 0.25s ease;
}
#main-nav.scrolled .logo-img { height: 50px; }
@media (max-width: 768px) { .logo-img { height: 46px; } }

/* Hide the old CSS-only logo blocks if any markup leaks back */
.logo-mg-block, .logo .brand, .logo .tagline { display: none !important; }

/* ── ACCESSIBILITY: respect reduced motion ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── WP admin bar fix ─────────────────────────────────────────────── */
html { margin-top: 0 !important; }
#wpadminbar { display: none; }

/* ══════════════════════════════════
   LEGAL PAGES
══════════════════════════════════ */
.legal-hero {
  background: var(--navy);
  padding: 9rem 6% 5rem;
  position: relative;
}
.legal-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.legal-hero-inner { max-width: 860px; margin: 0 auto; }
.legal-hero .eyebrow { color: var(--gold); margin-bottom: 1.2rem; }
.legal-hero .eyebrow::after { background: var(--gold); }
.legal-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white);
  font-weight: 600; line-height: 1.15; margin-bottom: 1rem;
}
.legal-meta { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.legal-meta a { color: var(--gold-light); text-decoration: none; }

.legal-body { background: var(--white); }
.legal-inner {
  max-width: 860px; margin: 0 auto;
  padding: 5rem 6%;
}

/* Content styles */
.legal-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; color: var(--navy); font-weight: 600;
  margin: 3rem 0 1rem; padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.legal-inner h3 {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700; margin: 2rem 0 0.6rem;
}
.legal-inner p {
  font-size: 0.92rem; color: var(--body); line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-inner ul, .legal-inner ol {
  margin: 0.5rem 0 1.2rem 1.4rem;
}
.legal-inner li {
  font-size: 0.92rem; color: var(--body); line-height: 1.75;
  margin-bottom: 0.4rem;
}
.legal-inner strong { color: var(--navy); font-weight: 600; }
.legal-inner a { color: var(--gold-deep); text-decoration: none; }
.legal-inner a:hover { text-decoration: underline; }

/* Dutch divider */
.legal-lang-divider {
  display: flex; align-items: center; gap: 1.5rem;
  margin: 4rem 0 3rem;
}
.legal-lang-divider::before, .legal-lang-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.legal-lang-divider span {
  font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700; white-space: nowrap;
}
.legal-dutch { opacity: 0.92; }

/* Compliance step list */
.legal-inner .compliance-steps {
  counter-reset: step;
  list-style: none; margin-left: 0;
}
.legal-inner .compliance-steps li {
  counter-increment: step;
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.8rem 0; border-bottom: 1px solid var(--border);
}
.legal-inner .compliance-steps li::before {
  content: counter(step);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--gold); font-weight: 600;
  line-height: 1; flex-shrink: 0; width: 28px;
}

@media (max-width: 768px) {
  .legal-hero { padding: 8rem 5% 4rem; }
  .legal-inner { padding: 3rem 5%; }
  .legal-inner h2 { font-size: 1.4rem; margin-top: 2.5rem; }
}
@media (max-width: 600px) {
  .legal-hero { padding: 7rem 4% 3rem; }
  .legal-inner { padding: 2.5rem 4%; }
}

/* ══════════════════════════════════════════════════════════════════
   KYC PORTAL
══════════════════════════════════════════════════════════════════ */

/* Hero */
.kyc-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 7rem 6% 4rem;
  position: relative;
  overflow: hidden;
}
.kyc-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,161,75,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,161,75,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.kyc-hero-inner { max-width: 1340px; margin: 0 auto; position: relative; z-index: 2; }
.kyc-hero .eyebrow { color: var(--gold); margin-bottom: 1.2rem; }
.kyc-hero .eyebrow::after { background: var(--gold); }
.kyc-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); color: #fff;
  font-weight: 600; line-height: 1.15; margin-bottom: 1rem;
}
.kyc-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: 700px; }

/* Top progress bar (3 steps) */
.kyc-progress-top {
  display: flex; align-items: center; gap: 14px;
  max-width: 720px; margin-top: 1rem;
}
.kpr-step { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.4); }
.kpr-step.kpr-active { color: #fff; }
.kpr-step.kpr-done { color: var(--gold); }
.kpr-num {
  width: 28px; height: 28px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
  border: 2px solid rgba(255,255,255,0.2);
}
.kpr-step.kpr-active .kpr-num { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.kpr-step.kpr-done .kpr-num { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.kpr-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.kpr-line { flex: 1; height: 1px; background: rgba(255,255,255,0.15); }
.kpr-line.kpr-line-done { background: var(--gold); }

/* Hub — type selection */
.kyc-hub-section { background: var(--warm-bg); padding: 5rem 6%; }
.kyc-hub-inner { max-width: 1340px; margin: 0 auto; padding: 0 6%; }
.kyc-hub-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy);
  text-align: center; margin-bottom: 0.6rem; font-weight: 600;
}
.kyc-hub-sub { text-align: center; color: var(--text-body); max-width: 700px; margin: 0 auto 3rem; font-size: 0.95rem; line-height: 1.7; }
.kyc-hub-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.kyc-hub-card {
  background: #fff; border: 1px solid var(--border); padding: 2.5rem 2rem;
  text-decoration: none; transition: all 0.3s; border-radius: 4px; display: block;
  position: relative; overflow: hidden;
}
.kyc-hub-card:hover {
  transform: translateY(-4px); border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(32,44,88,0.12);
}
.kyc-hub-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.kyc-hub-card:hover::before { transform: scaleX(1); }
.khc-icon { font-size: 2.6rem; margin-bottom: 1rem; }
.khc-label {
  font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700; margin-bottom: 0.7rem;
}
.khc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; color: var(--navy); font-weight: 600;
  line-height: 1.25; margin-bottom: 1rem;
}
.khc-desc { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; margin-bottom: 1.5rem; }
.khc-cta {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 700;
}
.kyc-hub-card:hover .khc-cta { color: var(--navy); }
.kyc-hub-footer-note {
  text-align: center; margin-top: 3rem; font-size: 0.88rem; color: var(--text-body);
}
.kyc-hub-footer-note a { color: var(--gold-deep); font-weight: 600; }

/* Form section */
.kyc-form-section { background: var(--warm-bg); padding: 3rem 6% 5rem; }
.kyc-form-inner { max-width: 860px; margin: 0 auto; }

/* Download PDF banner */
.kyc-pdf-download {
  background: var(--navy); color: #fff;
  padding: 1.4rem 2rem; border-radius: 6px; margin-bottom: 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  border-left: 4px solid var(--gold);
}
.kyc-pdf-download.kyc-pdf-pending { background: #4a4640; border-left-color: rgba(201,161,75,0.5); }
.kpd-text strong { font-size: 0.95rem; color: var(--gold); display: block; margin-bottom: 4px; }
.kpd-text p { font-size: 0.82rem; color: rgba(255,255,255,0.78); margin: 0; line-height: 1.5; }
.kpd-text a { color: var(--gold-light); }
.kpd-btn {
  display: inline-block; padding: 0.85rem 1.5rem; background: var(--gold); color: var(--navy);
  text-decoration: none; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; white-space: nowrap; flex-shrink: 0; transition: all 0.3s;
}
.kpd-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Error box */
.kyc-error-box {
  background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b;
  padding: 1rem 1.5rem; border-radius: 6px; margin-bottom: 1.5rem;
}
.kyc-error-box strong { font-size: 0.9rem; }
.kyc-error-box ul { margin: 0.5rem 0 0 1.5rem; font-size: 0.85rem; }

/* Step pills bar */
.kyc-steps-bar {
  display: flex; align-items: center; gap: 8px;
  margin: 0 0 2.5rem; flex-wrap: wrap;
}
.kyc-step-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 30px; background: #fff;
  border: 1px solid var(--border); color: var(--text-muted);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
}
.kyc-step-pill span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--border); color: var(--text-muted); font-weight: 700; font-size: 11px;
}
.kyc-step-pill.kyc-pill-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.kyc-step-pill.kyc-pill-active span { background: var(--gold); color: var(--navy); }
.kyc-step-pill.kyc-pill-done { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.kyc-step-pill.kyc-pill-done span { background: var(--navy); color: var(--gold); }
.kyc-step-line { flex: 1; height: 1px; background: var(--border); min-width: 10px; max-width: 30px; }

/* Step panels */
.kyc-step-panel { display: none; background: #fff; padding: 2.5rem; border: 1px solid var(--border); border-radius: 6px; }
.kyc-step-panel.kyc-step-panel-active { display: block; }
.kyc-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--navy); margin: 0 0 0.4rem; font-weight: 600;
}
.kyc-step-desc { font-size: 0.88rem; color: var(--text-body); margin-bottom: 1.8rem; line-height: 1.6; }
.kyc-subsection-title {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700; margin: 2rem 0 1rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--border);
}

/* Form fields */
.kyc-step-panel .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.kyc-step-panel .f-group { margin-bottom: 1.2rem; }
.kyc-step-panel .f-group label {
  display: block; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy); font-weight: 700; margin-bottom: 6px;
}
.kyc-step-panel .f-group .req { color: #ef4444; }
.kyc-step-panel .f-group .optional { color: var(--text-muted); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 11px; }
.kyc-step-panel .f-group input,
.kyc-step-panel .f-group select,
.kyc-step-panel .f-group textarea {
  width: 100%; padding: 10px 14px;
  border: 1px solid var(--border); background: #fff; color: var(--ink);
  font-size: 0.92rem; font-family: 'Inter', sans-serif; outline: none;
  transition: border-color 0.2s; box-sizing: border-box;
}
.kyc-step-panel .f-group input:focus,
.kyc-step-panel .f-group select:focus,
.kyc-step-panel .f-group textarea:focus { border-color: var(--gold); }
.kyc-step-panel .f-group input.kyc-invalid,
.kyc-step-panel .f-group select.kyc-invalid,
.kyc-step-panel .f-group textarea.kyc-invalid { border-color: #ef4444; background: #fef2f2; }
.kyc-step-panel .f-hint { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; display: block; }

/* Document groups */
.doc-group {
  margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.doc-group:last-child { border-bottom: none; }
.doc-group-title {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700; margin-bottom: 1.2rem;
  padding-bottom: 0.6rem; border-bottom: 1px solid var(--gold-line);
}
.doc-field { margin-bottom: 1rem; }
.doc-field .file-input-wrap { position: relative; margin-top: 6px; }
.doc-field .file-input-wrap input[type="file"] {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; z-index: 2;
}
.doc-field .file-placeholder {
  display: block; padding: 12px 14px; background: var(--off-white);
  border: 1px dashed var(--border); border-radius: 4px;
  font-size: 0.85rem; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: all 0.2s;
}
.doc-field .file-input-wrap:hover .file-placeholder { border-color: var(--gold); color: var(--navy); }
.doc-field .file-input-wrap.file-selected .file-placeholder {
  background: rgba(201,161,75,0.08); border-color: var(--gold);
  border-style: solid; color: var(--navy); font-weight: 600;
}
.doc-field .file-input-wrap.kyc-file-invalid .file-placeholder { border-color: #ef4444; background: #fef2f2; color: #991b1b; }

/* FATF box */
.fatf-box {
  background: var(--warm-bg); border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem; margin-bottom: 1.5rem; border-radius: 4px;
}
.fatf-box strong { font-size: 0.95rem; color: var(--navy); display: block; margin-bottom: 0.8rem; }
.fatf-box ol { padding-left: 1.5rem; margin: 1rem 0; }
.fatf-box li { font-size: 0.85rem; color: var(--text-body); line-height: 1.7; margin-bottom: 0.5rem; }
.fatf-box li strong { display: inline; color: var(--navy); }
.fatf-box p { font-size: 0.85rem; color: var(--text-body); line-height: 1.7; margin-bottom: 0.8rem; }
.fatf-box .form-row { margin-top: 1.2rem; }

/* Checkboxes */
.kyc-checkboxes { margin-top: 1rem; }
.kyc-checkbox-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--border-soft);
  cursor: pointer; font-size: 0.88rem; color: var(--ink-mid); line-height: 1.6;
}
.kyc-checkbox-row input[type="checkbox"] {
  margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; cursor: pointer;
}
.kyc-checkbox-row a { color: var(--gold-deep); font-weight: 600; }
.kyc-checkbox-row em { font-size: 11px; color: #ef4444; font-style: normal; font-weight: 600; }
.kyc-checkbox-row.kyc-checkbox-optional { color: var(--text-body); }

/* Step nav buttons */
.kyc-step-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.kyc-btn-back, .kyc-btn-next, .kyc-btn-submit {
  padding: 12px 28px; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 700; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all 0.3s;
}
.kyc-btn-back { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.kyc-btn-back:hover { color: var(--navy); border-color: var(--navy); }
.kyc-btn-next, .kyc-btn-submit { background: var(--navy); color: #fff; }
.kyc-btn-next:hover { background: var(--gold); color: var(--navy); }
.kyc-btn-submit { background: var(--gold); color: var(--navy); padding: 14px 36px; }
.kyc-btn-submit:hover { background: var(--gold-light); }
.kyc-btn-submit:disabled { background: var(--text-muted); cursor: not-allowed; }

/* Success page */
.kyc-success-section { background: var(--warm-bg); padding: 4rem 6% 5rem; }
.kyc-success-inner { max-width: 720px; margin: 0 auto; }
.kyc-success-card {
  background: #fff; border: 1px solid var(--border); padding: 3rem;
  border-radius: 6px; text-align: center;
}
.success-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 80px; height: 80px; border-radius: 50%;
  background: #10b981; color: #fff; font-size: 40px; margin-bottom: 1.5rem;
}
.kyc-success-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; color: var(--navy); font-weight: 600;
  margin-bottom: 1rem;
}
.success-ref {
  display: inline-block; background: var(--warm-bg); padding: 0.8rem 1.5rem;
  border-radius: 4px; margin: 1rem auto 1.5rem; border: 1px solid var(--gold-line);
}
.success-ref-label {
  display: block; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
}
.success-ref-num {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--navy); font-weight: 700; margin-top: 4px;
}
.sla-banner {
  background: var(--navy); color: #fff;
  padding: 1rem 1.5rem; border-radius: 6px; margin: 1.5rem 0;
  font-size: 0.92rem; line-height: 1.6;
}
.sla-banner strong { color: var(--gold); }
.success-next-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--navy); font-weight: 600;
  margin: 2rem 0 1rem; text-align: left;
}
.success-next-list { list-style: none; padding: 0; text-align: left; counter-reset: snl; }
.success-next-list li {
  counter-increment: snl; padding: 0.8rem 0 0.8rem 3rem; position: relative;
  border-bottom: 1px solid var(--border-soft);
}
.success-next-list li::before {
  content: counter(snl); position: absolute; left: 0; top: 0.7rem;
  width: 32px; height: 32px; border-radius: 50%; background: var(--gold);
  color: var(--navy); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.success-next-list strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.success-next-list span { font-size: 0.85rem; color: var(--text-body); line-height: 1.6; }
.success-actions {
  display: flex; gap: 12px; justify-content: center; margin: 2rem 0 1.5rem;
  flex-wrap: wrap;
}
.success-btn-primary {
  padding: 12px 28px; background: var(--gold); color: var(--navy);
  text-decoration: none; font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 700;
}
.success-btn-primary:hover { background: var(--gold-light); }
.success-btn-secondary {
  padding: 12px 28px; background: transparent; color: var(--navy);
  text-decoration: none; font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 700;
  border: 1px solid var(--border);
}
.success-btn-secondary:hover { border-color: var(--navy); }
.success-contact { font-size: 0.85rem; color: var(--text-body); margin-top: 1.5rem; }
.success-contact a { color: var(--gold-deep); font-weight: 600; }

/* Login page */
.login-wrap {
  background: var(--warm-bg); min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 6%;
}
.login-card {
  background: #fff; padding: 3rem; border: 1px solid var(--border);
  border-radius: 6px; max-width: 440px; width: 100%; box-shadow: 0 8px 32px rgba(32,44,88,0.08);
}
.login-brand { text-align: center; margin-bottom: 2rem; }
.login-logo { width: 120px; height: auto; margin: 0 auto 0.6rem; display: block; }
.login-brand-tag {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
}
.login-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--navy); font-weight: 600;
  text-align: center; margin-bottom: 0.4rem;
}
.login-sub { text-align: center; color: var(--text-body); font-size: 0.88rem; margin-bottom: 2rem; }
.login-error {
  background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b;
  padding: 0.8rem 1rem; border-radius: 4px; margin-bottom: 1.2rem; font-size: 0.85rem;
}
.login-notice {
  background: #ecfdf5; border: 1px solid #10b981; color: #065f46;
  padding: 0.8rem 1rem; border-radius: 4px; margin-bottom: 1.2rem; font-size: 0.85rem;
}
.login-form .f-group { margin-bottom: 1rem; }
.login-form .f-group label {
  display: block; font-size: 0.62rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--navy); font-weight: 700; margin-bottom: 6px;
}
.login-form .f-group input {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border);
  background: #fff; font-size: 0.92rem; outline: none; transition: border-color 0.2s;
  box-sizing: border-box;
}
.login-form .f-group input:focus { border-color: var(--gold); }
.login-remember-row {
  display: flex; align-items: center; justify-content: space-between;
  margin: 1.2rem 0; font-size: 0.85rem;
}
.login-remember { display: flex; align-items: center; gap: 8px; color: var(--text-body); cursor: pointer; }
.login-remember input { width: 16px; height: 16px; }
.login-forgot { color: var(--gold-deep); text-decoration: none; font-weight: 600; font-size: 0.82rem; }
.login-forgot:hover { color: var(--navy); }
.login-submit {
  width: 100%; padding: 14px; background: var(--gold); color: var(--navy);
  border: none; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: all 0.3s;
}
.login-submit:hover { background: var(--gold-light); }
.login-register-row {
  text-align: center; margin-top: 1.5rem; font-size: 0.88rem; color: var(--text-body);
}
.login-register-row a { color: var(--gold-deep); font-weight: 600; }

/* Dashboard */
.dash-wrap { background: var(--warm-bg); min-height: 70vh; padding: 0 0 4rem; }
.dash-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 3rem 6% 2.5rem;
  display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.dash-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff;
  font-weight: 600; margin: 0.4rem 0 0;
}
.dash-header .eyebrow { color: var(--gold); }
.dash-header .eyebrow::after { background: var(--gold); }
.dash-subline { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 4px; }
.dash-logout {
  padding: 9px 22px; background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.3); text-decoration: none;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
}
.dash-logout:hover { border-color: var(--gold); color: var(--gold); }
.dash-inner { max-width: 880px; margin: -2rem auto 0; padding: 0 6%; position: relative; z-index: 2; }
.dash-card {
  background: #fff; border: 1px solid var(--border); padding: 1.8rem 2rem;
  margin-bottom: 1.2rem; border-radius: 6px;
}
.dash-card-title {
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700; margin-bottom: 1.2rem;
  padding-bottom: 0.7rem; border-bottom: 1px solid var(--border-soft);
}
.dash-status-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 1rem;
}
.dash-status-pill {
  display: inline-block; padding: 5px 14px; border-radius: 30px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em;
}
.dash-ref { font-size: 0.85rem; color: var(--text-body); }
.dash-ref strong { color: var(--navy); font-family: monospace; }
.dash-sub-date { font-size: 0.82rem; color: var(--text-muted); margin-left: auto; }
.dash-timeline {
  display: flex; align-items: center; gap: 14px; margin: 1.5rem 0; flex-wrap: wrap;
}
.dash-tl-step { display: flex; align-items: center; gap: 10px; color: var(--text-muted); }
.dtls-dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--border);
}
.dash-tl-step.dash-tl-done .dtls-dot { background: var(--gold); }
.dash-tl-step.dash-tl-active .dtls-dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(201,161,75,0.2); }
.dash-tl-step.dash-tl-done .dtls-label { color: var(--navy); font-weight: 600; }
.dash-tl-step.dash-tl-active .dtls-label { color: var(--gold-deep); }
.dtls-label { font-size: 0.78rem; }
.dash-tl-line { flex: 1; height: 2px; background: var(--border); min-width: 30px; max-width: 80px; }
.dash-tl-line-done { background: var(--gold); }
.dash-sla {
  background: var(--warm-bg); padding: 0.8rem 1.2rem; border-radius: 4px;
  font-size: 0.88rem; color: var(--ink-mid); margin-top: 1rem; border-left: 3px solid var(--gold);
}
.dash-approved-banner {
  background: #ecfdf5; border: 1px solid #10b981; color: #065f46;
  padding: 0.9rem 1.2rem; border-radius: 4px; font-size: 0.9rem; margin-top: 1rem;
}
.dash-reject-box {
  background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b;
  padding: 0.9rem 1.2rem; border-radius: 4px; font-size: 0.88rem; margin: 1rem 0;
}
.dash-doc-list { padding: 0.4rem 0; }
.dash-doc-item {
  display: grid; grid-template-columns: 30px 1fr 100px; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border-soft);
  font-size: 0.88rem; align-items: center;
}
.dash-doc-item:last-child { border-bottom: none; }
.ddi-icon { text-align: center; font-size: 1rem; }
.ddi-name { color: var(--ink-mid); }
.ddi-name small { color: var(--text-muted); font-size: 0.75rem; margin-left: 6px; }
.ddi-status { text-align: right; font-size: 0.82rem; }
.ddi-status a { color: var(--gold-deep); text-decoration: none; font-weight: 600; }
.ddi-missing { color: #ef4444; font-weight: 600; }
.ddi-not { color: var(--text-muted); }
.dash-help-text { font-size: 0.9rem; color: var(--text-body); margin-bottom: 1rem; line-height: 1.6; }
.dash-btn-gold {
  display: inline-block; padding: 11px 24px; background: var(--gold); color: var(--navy);
  text-decoration: none; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 700;
}
.dash-btn-gold:hover { background: var(--gold-light); }
.dash-empty {
  background: #fff; padding: 4rem 2rem; text-align: center;
  border-radius: 6px; max-width: 600px; margin: 4rem auto;
}

/* Compliance footer */
.compliance-footer {
  background: var(--off-white); border-top: 1px solid var(--border);
  padding: 2rem 6%; font-size: 0.78rem; color: var(--text-body); line-height: 1.7;
}
.compliance-inner { max-width: 1100px; margin: 0 auto; }
.compliance-title {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700; margin-bottom: 0.8rem;
}
.compliance-footer p { margin-bottom: 0.8rem; }
.compliance-contact { color: var(--ink-mid); font-weight: 600; }
.compliance-contact a { color: var(--gold-deep); text-decoration: none; }

/* WhatsApp floating button */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; background: #25d366; color: #fff;
  border-radius: 30px; text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  font-family: 'Inter', sans-serif; font-size: 0.78rem; line-height: 1.3;
  transition: transform 0.2s;
}
.wa-float:hover { transform: translateY(-2px); color: #fff; }
.wa-float-icon { font-size: 22px; }
.wa-float-text strong { display: block; }

/* Responsive */
@media (max-width: 900px) {
  .kyc-hub-grid { grid-template-columns: 1fr; }
  .kyc-step-panel .form-row { grid-template-columns: 1fr; }
  .kyc-pdf-download { flex-direction: column; align-items: flex-start; }
  .kpd-btn { width: 100%; text-align: center; }
  .kyc-step-panel { padding: 1.5rem; }
  .login-card { padding: 2rem 1.5rem; }
  .kyc-progress-top { gap: 8px; }
  .kpr-label { display: none; }
  .kpr-line { max-width: none; }
  .dash-status-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .dash-sub-date { margin-left: 0; }
}
@media (max-width: 600px) {
  .kyc-hero { padding: 5rem 5% 3rem; }
  .kyc-hub-section, .kyc-form-section, .kyc-success-section { padding: 3rem 5%; }
  .kyc-success-card { padding: 2rem 1.5rem; }
  .success-actions { flex-direction: column; }
  .success-btn-primary, .success-btn-secondary { width: 100%; text-align: center; box-sizing: border-box; }
  .dash-header { padding: 2.5rem 5% 2rem; flex-direction: column; align-items: flex-start; }
  .dash-inner { padding: 0 5%; }
  .wa-float { bottom: 16px; right: 16px; padding: 10px 14px; }
  .wa-float-text { display: none; }
  .kyc-steps-bar { gap: 4px; }
  .kyc-step-pill { padding: 6px 10px; font-size: 0.62rem; }
  .kyc-step-pill span { width: 18px; height: 18px; font-size: 10px; }
}

/* ══════════════════════════════════════════════════════════════════
   KYC START — Homepage 3-card section
══════════════════════════════════════════════════════════════════ */
.sec-kyc-start {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.sec-kyc-start::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,161,75,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,161,75,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.sec-kyc-start .section-inner { position: relative; z-index: 2; }
.kyc-start-head { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.kyc-start-head .eyebrow { color: var(--gold); justify-content: center; display: inline-flex; }
.kyc-start-head .eyebrow::after { background: var(--gold); }
.kyc-start-head .section-h { color: #fff !important; }
.kyc-start-head .section-h em { color: var(--gold) !important; font-style: italic; font-weight: 500; }
.kyc-start-head .body-text {
  color: rgba(255,255,255,0.75); margin: 1.5rem auto 0; max-width: 640px;
}

.kyc-start-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
@media (max-width: 1200px) {
  .kyc-start-grid { grid-template-columns: repeat(2, 1fr); }
}
.kyc-start-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 2.4rem 2rem;
  text-decoration: none; display: block;
  transition: all 0.3s; border-radius: 4px;
  position: relative; overflow: hidden;
}
.kyc-start-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.kyc-start-card:hover {
  background: rgba(201,161,75,0.06);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.kyc-start-card:hover::before { transform: scaleX(1); }
.ksc-icon { font-size: 2.4rem; margin-bottom: 0.8rem; }
.ksc-label {
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 0.6rem;
}
.ksc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: #fff; font-weight: 500;
  line-height: 1.2; margin-bottom: 0.9rem;
}
.ksc-desc {
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 1.4rem;
}
.ksc-cta {
  display: inline-block; font-size: 0.66rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); font-weight: 700;
}
.kyc-start-card:hover .ksc-cta { color: var(--gold-light); }

.kyc-start-foot {
  text-align: center; margin-top: 2.5rem;
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
}
.kyc-start-foot a { color: var(--gold); font-weight: 600; text-decoration: none; }
.kyc-start-foot a:hover { color: var(--gold-light); }

@media (max-width: 900px) {
  .kyc-start-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ══════════════════════════════════════════════════════════════════
   CONTACT — Redesigned to match KYC START section
══════════════════════════════════════════════════════════════════ */

/* Override the old 3-column contact layout */
.sec-contact .section-inner { max-width: 1340px; margin: 0 auto; padding: 7rem 6%; position: relative; z-index: 2; }

.contact-head { text-align: center; max-width: 780px; margin: 0 auto 3.5rem; }
.contact-head .eyebrow { color: var(--gold); justify-content: center; display: inline-flex; }
.contact-head .eyebrow::after { background: var(--gold); }
.contact-head .section-h { color: #fff !important; }
.contact-head .section-h em { color: var(--gold) !important; font-style: italic; font-weight: 500; }
.contact-head .body-text {
  color: rgba(255,255,255,0.75); margin: 1.5rem auto 0; max-width: 640px;
}

/* 3 office cards */
.contact-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 2rem 1.8rem;
  border-radius: 4px; position: relative; overflow: hidden;
  transition: all 0.3s;
}
.contact-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.contact-card:hover {
  background: rgba(201,161,75,0.06);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.25);
}
.contact-card:hover::before { transform: scaleX(1); }
.cc-icon { font-size: 1.8rem; margin-bottom: 0.7rem; }
.cc-label {
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 0.5rem;
}
.cc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; color: #fff; font-weight: 500;
  line-height: 1.2; margin-bottom: 0.8rem;
}
.cc-desc {
  font-size: 0.88rem; color: rgba(255,255,255,0.85);
  font-weight: 600; line-height: 1.55; margin-bottom: 0.8rem;
}
.cc-meta {
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  line-height: 1.65; margin: 0;
}

/* Direct contact strip */
.contact-direct-strip {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0;
  background: rgba(201,161,75,0.06);
  border: 1px solid rgba(201,161,75,0.25);
  border-radius: 4px;
  padding: 1.4rem 1.8rem;
  margin-bottom: 3rem;
}
.cds-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 2rem;
}
.cds-label {
  font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 4px;
}
.cds-value {
  font-size: 0.95rem; color: #fff; text-decoration: none; font-weight: 600;
}
a.cds-value:hover { color: var(--gold); }
.cds-divider {
  width: 1px; height: 32px; background: rgba(201,161,75,0.25);
}

/* Form panel — centered */
.contact-form-wrap {
  max-width: 780px; margin: 0 auto;
}

/* Form panel inherits styles from .form-panel — already styled in the form section CSS.
   Just ensure it sits well on the dark background. */
.contact-form-wrap .form-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 2.5rem;
}
.contact-form-wrap .form-panel-title { color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; margin-bottom: 0.4rem; }
.contact-form-wrap .form-panel-sub { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 2rem; }

/* Responsive */
@media (max-width: 900px) {
  .contact-cards { grid-template-columns: 1fr; gap: 1rem; }
  .contact-direct-strip { flex-direction: column; gap: 1rem; padding: 1.2rem; }
  .cds-divider { width: 60%; height: 1px; }
  .cds-item { padding: 0; }
}
@media (max-width: 600px) {
  .sec-contact .section-inner { padding: 4rem 5%; }
  .contact-form-wrap .form-panel { padding: 1.5rem; }
}

/* ══════════════════════════════════════════════════════════════════
   ANCHOR SCROLL OFFSET — fixes fixed-nav overlap on #anchor jumps
══════════════════════════════════════════════════════════════════ */
section[id], div[id] {
  scroll-margin-top: 90px;
}
@media (max-width: 1100px) { section[id], div[id] { scroll-margin-top: 80px; } }
@media (max-width: 768px)  { section[id], div[id] { scroll-margin-top: 75px; } }
@media (max-width: 600px)  { section[id], div[id] { scroll-margin-top: 70px; } }

/* ══════════════════════════════════════════════════════════════════
   BIG-SCREEN OPTIMISATION — fills empty space on 1920px+ displays
══════════════════════════════════════════════════════════════════ */
/* Big screens — sections are NOT forced to min-height so they hug content */
@media (min-width: 1920px) {
  .section-inner { padding: 2rem 6% 6rem; }
  .global-inner { padding: 2rem 6% 6rem; }
  .body-text { font-size: 1.05rem; line-height: 1.85; }
}

/* ══════════════════════════════════════════════════════════════════
   1300px BREAKPOINT — smooths the gap between 1100px and full desktop
══════════════════════════════════════════════════════════════════ */
@media (max-width: 1300px) and (min-width: 1101px) {
  .section-inner, .kyc-hub-inner, .kyc-hero-inner { padding-left: 5%; padding-right: 5%; }
  .log-header, .petro-header, .gold-header { gap: 3.5rem; }
  .body-text { font-size: 0.92rem; }
}

/* ══════════════════════════════════════════════════════════════════
   VERIFIED TRADE — Intro frames (Manage Success + Three Pillars)
══════════════════════════════════════════════════════════════════ */
.vt-intro-frames {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}
.vt-frame {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 1.1rem 1.5rem 1.2rem;
  border-radius: 0 0 4px 4px;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
}
.vt-frame:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(32,44,88,0.09);
}
.vt-frame-tag {
  font-size: 0.55rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700; margin-bottom: 0.4rem;
}
.vt-frame-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--navy); font-weight: 600;
  line-height: 1.2; margin: 0 0 0.5rem;
}
.vt-frame-body {
  font-size: 0.82rem; color: var(--text-body); line-height: 1.6;
  margin: 0;
}
.vt-pillars-list {
  list-style: none; padding: 0; margin: 0;
}
.vt-pillars-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.8rem; color: var(--text-body); line-height: 1.5;
  position: relative; padding-left: 1.1rem;
}
.vt-pillars-list li:first-child { padding-top: 0; }
.vt-pillars-list li:last-child { border-bottom: none; padding-bottom: 0; }
.vt-pillars-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0.42rem;
  color: var(--gold-deep); font-weight: 700; font-size: 0.85rem;
}
.vt-pillars-list li:first-child::before { top: 0.02rem; }
.vt-pillars-list li strong {
  color: var(--navy); font-weight: 700;
}

@media (max-width: 900px) {
  .vt-intro-frames { grid-template-columns: 1fr; gap: 0.8rem; }
  .vt-frame { padding: 0.9rem 1.2rem 1rem; }
}

/* Verified Trade — centered section header (cleaner than 2-col) */
.vt-section-head {
  text-align: center; max-width: 780px; margin: 0 auto 2.5rem;
}
.vt-section-head .eyebrow { justify-content: center; display: inline-flex; }
.vt-section-head .section-h { margin-bottom: 1rem; }
.vt-section-head .body-text { max-width: 640px; margin: 0 auto; font-size: 0.95rem; line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════════
   UNIFIED CENTERED SECTION HEADERS
   Used by: Verified Trade, Petroleum, Logistics, Gold
══════════════════════════════════════════════════════════════════ */
.vt-section-head, .petro-section-head, .log-section-head, .gold-section-head {
  text-align: center; max-width: 900px; margin: 0 auto 2.5rem;
}
.vt-section-head .eyebrow,
.petro-section-head .eyebrow,
.log-section-head .eyebrow,
.gold-section-head .eyebrow {
  justify-content: center; display: inline-flex;
}
.petro-section-head .eyebrow,
.gold-section-head.gold-section-head .eyebrow { color: var(--gold); }
.petro-section-head .eyebrow::after,
.gold-section-head .eyebrow::after { background: var(--gold); }
.vt-section-head .section-h,
.petro-section-head .section-h,
.log-section-head .section-h,
.gold-section-head .section-h { margin-bottom: 1rem; }
.vt-section-head .body-text,
.petro-section-head .body-text,
.log-section-head .body-text,
.gold-section-head .body-text {
  max-width: 720px; margin: 0 auto; font-size: 0.95rem; line-height: 1.7;
}
.petro-section-head .body-text {
  color: rgba(255,255,255,0.75);
}

/* ══════════════════════════════════════════════════════════════════
   FINAL UNIFIED HEADER OVERRIDES — every section header uses
   the same max-width, margin-bottom and inner spacing
══════════════════════════════════════════════════════════════════ */
.vt-section-head, .petro-section-head, .log-section-head, .gold-section-head,
.global-head, .why-head, .kyc-start-head, .contact-head, .kyc-start-head {
  max-width: 900px !important; margin: 0 auto 2.2rem !important;
}
.global-head .body-text,
.why-head .body-text,
.kyc-start-head .body-text,
.contact-head .body-text,
.vt-section-head .body-text,
.petro-section-head .body-text,
.log-section-head .body-text,
.gold-section-head .body-text {
  max-width: 720px; margin: 1rem auto 0; font-size: 0.95rem; line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════════
   UNIFIED SECTION HEIGHT — all sections sized like Global Reach
   ~588px content height on laptop, content vertically centered
══════════════════════════════════════════════════════════════════ */
@media (min-width: 901px) {
  .sec-verified, .sec-petroleum, .sec-logistics, .sec-gold,
  .sec-global, .sec-why, .sec-about, .sec-kyc-start, .sec-contact {
    min-height: 588px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .sec-verified > .section-inner,
  .sec-petroleum > .section-inner,
  .sec-logistics > .section-inner,
  .sec-gold > .section-inner,
  .sec-why > .section-inner,
  .sec-about > .section-inner,
  .sec-kyc-start > .section-inner,
  .sec-contact > .section-inner,
  .sec-global > .global-inner {
    width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════════════
   FORCE ALL SECTIONS TO ~675PX HEIGHT (Global Reach baseline)
   Tightens internal element sizes proportionally
══════════════════════════════════════════════════════════════════ */
@media (min-width: 901px) {

  /* All centered headers — tighter on desktop */
  .vt-section-head, .petro-section-head, .log-section-head, .gold-section-head,
  .global-head, .why-head, .kyc-start-head, .contact-head {
    margin-bottom: 1.5rem !important;
  }
  .vt-section-head .body-text, .petro-section-head .body-text,
  .log-section-head .body-text, .gold-section-head .body-text,
  .global-head .body-text, .why-head .body-text,
  .kyc-start-head .body-text, .contact-head .body-text {
    margin-top: 0.6rem !important; font-size: 0.88rem !important; line-height: 1.55 !important;
  }
  .section-h { font-size: clamp(1.6rem, 2.2vw, 2.5rem) !important; margin-bottom: 0.6rem !important; }

  /* ── VERIFIED TRADE — shrink 2 intro frames + cards + banner ── */
  .vt-intro-frames { margin-bottom: 1rem !important; }
  .vt-frame { padding: 0.7rem 1rem 0.8rem !important; }
  .vt-frame-tag { margin-bottom: 0.3rem !important; font-size: 0.5rem !important; }
  .vt-frame-title { font-size: 0.95rem !important; margin: 0 0 0.3rem !important; }
  .vt-frame-body { font-size: 0.74rem !important; line-height: 1.5 !important; }
  .vt-pillars-list li { padding: 0.3rem 0 !important; font-size: 0.72rem !important; line-height: 1.45 !important; padding-left: 0.95rem !important; }
  .vt-pillars-list li::before { font-size: 0.75rem !important; top: 0.35rem !important; }

  /* ── ALL 4-CARD GRIDS (Petroleum, Logistics, Gold, Global, Verified) ── */
  .log-img { height: 110px !important; }
  .log-num { font-size: 1.2rem !important; padding: 2px 10px !important; top: 8px !important; left: 8px !important; }
  .log-body { padding: 0.7rem 0.9rem 0.85rem !important; }
  .log-body h4 { font-size: 0.66rem !important; margin-bottom: 0.4rem !important; }
  .log-body p { font-size: 0.72rem !important; line-height: 1.5 !important; }
  .petro-card-body { padding: 0.7rem 0.9rem 0.85rem !important; }
  .petro-card-body h4 { font-size: 0.66rem !important; margin-bottom: 0.4rem !important; }
  .petro-card-body p { font-size: 0.72rem !important; line-height: 1.5 !important; }
  .gc-img { aspect-ratio: 16/10 !important; }
  .gc-body { padding: 0.7rem 0.9rem 0.85rem !important; }
  .gc-title { font-size: 0.95rem !important; margin: 0 !important; }
  .gc-desc { font-size: 0.72rem !important; line-height: 1.45 !important; }
  .gc-label { font-size: 0.5rem !important; }

  /* ── INSET BANNERS (very compact) ── */
  .log-card-inset, .petro-card-inset { padding: 0.85rem 1.2rem !important; }
  .log-card-inset .li-tag, .petro-card-inset .li-tag { margin-bottom: 0.3rem !important; font-size: 0.5rem !important; }
  .log-card-inset h4, .petro-card-inset h4 { font-size: 1rem !important; margin-bottom: 0.3rem !important; line-height: 1.15 !important; }
  .log-card-inset p, .petro-card-inset p { font-size: 0.7rem !important; line-height: 1.5 !important; }

  /* ── GOLD ORIGIN TAGS ── */
  .origin-tags { margin-top: 0.7rem !important; gap: 0.3rem !important; }
  .origin-tag { font-size: 0.52rem !important; padding: 0.3rem 0.7rem !important; }

  /* ── GLOBAL REACH CITIES BLOCK ── */
  .cities-block { padding: 0.9rem 0 !important; gap: 2rem !important; }
  .cities-label { font-size: 1rem !important; }
  .cities-label small { font-size: 0.52rem !important; }
  .city-item { font-size: 0.66rem !important; }
  .sec-global .petro-cards { margin-bottom: 1.2rem !important; }

  /* ── WHY MG cards ── */
  .w-card { padding: 1rem 1.1rem !important; }
  .w-card svg { width: 26px !important; height: 26px !important; margin-bottom: 0.6rem !important; }
  .w-card h4 { font-size: 0.85rem !important; margin-bottom: 0.4rem !important; }
  .w-card p { font-size: 0.72rem !important; line-height: 1.55 !important; }
  .why-grid { gap: 0.8rem !important; }

  /* ── ABOUT — tighten ── */
  .about-layout { gap: 2.5rem !important; }
  .about-layout .section-h { font-size: 1.6rem !important; margin-bottom: 0.5rem !important; }
  .about-layout p, .about-layout li { font-size: 0.82rem !important; line-height: 1.55 !important; }
  .about-layout blockquote { font-size: 0.95rem !important; padding: 0.5rem 0.9rem !important; margin: 0.7rem 0 !important; }
  .about-stats { margin-top: 1rem !important; }
  .a-stat { padding: 0.7rem 0.4rem !important; }
  .a-stat .n { font-size: 1.6rem !important; }
  .a-stat .l { font-size: 0.52rem !important; }
  .cv-grid { gap: 0.7rem !important; }
  .cv-card { padding: 0.8rem !important; }
  .cv-card h5 { font-size: 0.68rem !important; margin-bottom: 0.3rem !important; }
  .cv-card p { font-size: 0.72rem !important; line-height: 1.45 !important; }
  .cv-icon { width: 26px !important; height: 26px !important; margin-bottom: 0.5rem !important; }
  .shield-display { min-height: 320px !important; padding: 1rem !important; }
  .shield-img { width: 100px !important; }
  .shield-rings { width: 200px !important; height: 200px !important; }

  /* ── KYC START cards ── */
  .kyc-start-card { padding: 1.2rem 1.3rem !important; }
  .ksc-icon { font-size: 1.6rem !important; margin-bottom: 0.4rem !important; }
  .ksc-title { font-size: 1.1rem !important; margin-bottom: 0.5rem !important; }
  .ksc-desc { font-size: 0.74rem !important; line-height: 1.55 !important; margin-bottom: 0.8rem !important; }
  .kyc-start-foot { margin-top: 1rem !important; font-size: 0.78rem !important; }

  /* ── CONTACT — restructure to fit ── */
  .contact-cards { margin-bottom: 1rem !important; }
  .contact-card { padding: 1rem 1.2rem !important; }
  .cc-icon { font-size: 1.4rem !important; margin-bottom: 0.3rem !important; }
  .cc-label { font-size: 0.5rem !important; margin-bottom: 0.3rem !important; }
  .cc-title { font-size: 1.05rem !important; margin-bottom: 0.4rem !important; }
  .cc-desc { font-size: 0.78rem !important; margin-bottom: 0.4rem !important; }
  .cc-meta { font-size: 0.7rem !important; line-height: 1.5 !important; }
  .contact-direct-strip { padding: 0.7rem 1rem !important; margin-bottom: 1rem !important; }
  .cds-label { font-size: 0.5rem !important; }
  .cds-value { font-size: 0.82rem !important; }
  .contact-form-wrap .form-panel { padding: 1rem 1.2rem !important; }
  .contact-form-wrap .form-panel-title { font-size: 1.05rem !important; margin-bottom: 0.2rem !important; }
  .contact-form-wrap .form-panel-sub { font-size: 0.72rem !important; margin-bottom: 0.8rem !important; }
  .contact-form-wrap .f-group { margin-bottom: 0.5rem !important; }
  .contact-form-wrap .f-group label { font-size: 0.52rem !important; margin-bottom: 3px !important; }
  .contact-form-wrap .f-group input,
  .contact-form-wrap .f-group select,
  .contact-form-wrap .f-group textarea { padding: 0.5rem 0.7rem !important; font-size: 0.78rem !important; }
  .contact-form-wrap .f-group textarea { min-height: 60px !important; }
  .contact-form-wrap .form-row { gap: 0.6rem !important; }
  .contact-form-wrap .pdf-upload-section { padding: 0.6rem 0.8rem !important; margin-bottom: 0.6rem !important; }
  .contact-form-wrap .pdf-upload-label { font-size: 0.52rem !important; margin-bottom: 0.4rem !important; }
  .contact-form-wrap .file-placeholder { padding: 0.5rem 0.7rem !important; font-size: 0.7rem !important; }
  .contact-form-wrap .submit-btn { padding: 0.7rem !important; font-size: 0.64rem !important; }
  .contact-form-wrap form p { font-size: 0.58rem !important; margin-top: 0.5rem !important; }

  /* Reset min-height to use new value — sections fit at ~700px now */
  .sec-verified, .sec-petroleum, .sec-logistics, .sec-gold,
  .sec-global, .sec-why, .sec-about, .sec-kyc-start, .sec-contact {
    min-height: auto;
  }
}

/* ══════════════════════════════════════════════════════════════════
   CONTACT SECTION — extreme compact mode to fit ~675px
══════════════════════════════════════════════════════════════════ */
@media (min-width: 901px) {
  .sec-contact .section-inner { padding-top: 1rem !important; padding-bottom: 2rem !important; }
  .contact-head { margin-bottom: 1rem !important; }
  .contact-head .section-h { font-size: 1.8rem !important; margin-bottom: 0.4rem !important; }
  .contact-head .body-text { font-size: 0.85rem !important; line-height: 1.5 !important; margin-top: 0.5rem !important; }

  /* 3 office cards — much more compact (horizontal mini cards) */
  .contact-cards { gap: 0.8rem !important; margin-bottom: 0.8rem !important; }
  .contact-card { padding: 0.7rem 1rem !important; }
  .cc-icon { font-size: 1rem !important; margin-bottom: 0.1rem !important; display: inline-block; }
  .cc-label { font-size: 0.48rem !important; letter-spacing: 0.22em !important; margin-bottom: 0.15rem !important; }
  .cc-title { font-size: 0.95rem !important; margin-bottom: 0.25rem !important; line-height: 1.15 !important; }
  .cc-desc { font-size: 0.72rem !important; margin-bottom: 0.25rem !important; line-height: 1.4 !important; font-weight: 500 !important; }
  .cc-meta { font-size: 0.66rem !important; line-height: 1.4 !important; }

  /* Direct strip — flat single row */
  .contact-direct-strip { padding: 0.5rem 0.8rem !important; margin-bottom: 0.8rem !important; }
  .cds-item { padding: 0 1.2rem !important; }
  .cds-label { font-size: 0.46rem !important; margin-bottom: 1px !important; }
  .cds-value { font-size: 0.74rem !important; }
  .cds-divider { height: 22px !important; }

  /* Form — extremely tight */
  .contact-form-wrap .form-panel { padding: 0.9rem 1.1rem 1rem !important; }
  .contact-form-wrap .form-panel-title { font-size: 0.95rem !important; margin-bottom: 0.1rem !important; }
  .contact-form-wrap .form-panel-sub { font-size: 0.66rem !important; margin-bottom: 0.6rem !important; }
  .contact-form-wrap .f-group { margin-bottom: 0.4rem !important; gap: 3px !important; }
  .contact-form-wrap .f-group label { font-size: 0.48rem !important; }
  .contact-form-wrap .f-group input,
  .contact-form-wrap .f-group select,
  .contact-form-wrap .f-group textarea {
    padding: 0.4rem 0.6rem !important; font-size: 0.74rem !important;
  }
  .contact-form-wrap .f-group textarea { min-height: 50px !important; }
  .contact-form-wrap .form-row { gap: 0.5rem !important; }
  .contact-form-wrap .submit-btn { padding: 0.55rem !important; font-size: 0.6rem !important; }
  .contact-form-wrap form p { font-size: 0.55rem !important; margin-top: 0.3rem !important; line-height: 1.4 !important; }
}

/* ══════════════════════════════════════════════════════════════════
   FOOD PLATFORM — Premium natural food products
══════════════════════════════════════════════════════════════════ */
.sec-food { background: var(--off-white); }
.food-section-head { text-align: center; max-width: 900px; margin: 0 auto 1.5rem; }
.food-section-head .eyebrow { justify-content: center; display: inline-flex; }
.food-section-head .body-text { max-width: 720px; margin: 0.6rem auto 0; }

.food-origin {
  margin-top: 0.5rem; font-size: 0.68rem; letter-spacing: 0.04em;
  color: var(--gold-deep); font-weight: 600;
}

/* Featured Eggs inset — 2-column with image */
.food-inset { padding: 0 !important; overflow: hidden; }
.food-inset-inner {
  display: grid; grid-template-columns: 1fr 280px; gap: 1.5rem;
  align-items: center;
}
.food-inset-text { padding: 1rem 1.4rem; }
.food-inset-text .li-tag { margin-bottom: 0.5rem; }
.food-inset-text h4 { margin-bottom: 0.5rem; }
.food-inset-text p { margin-bottom: 0.8rem; }
.food-eggs-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 0.6rem;
}
.food-eggs-tags span {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(201,161,75,0.15);
  border: 1px solid rgba(201,161,75,0.3);
  padding: 4px 10px;
  font-size: 0.66rem; color: var(--gold);
  font-weight: 600; letter-spacing: 0.04em;
}
.food-inset-img {
  height: 100%; min-height: 160px; max-height: 200px; overflow: hidden;
}
.food-inset-img img {
  width: 100%; height: 100%; object-fit: cover;
}

@media (max-width: 900px) {
  .food-inset-inner { grid-template-columns: 1fr; gap: 0; }
  .food-inset-img { max-height: 150px; }
  .food-inset-text { padding: 1rem 1.2rem; }
}

/* ══════════════════════════════════════════════════════════════════
   TWO-TIER NAVIGATION — top utility bar + main sections bar
══════════════════════════════════════════════════════════════════ */
nav.nav-two-tier {
  background: var(--warm-bg);
  padding: 0;
  height: auto;
}

/* TOP BAR */
.nav-top-bar {
  background: var(--warm-bg);
  border-bottom: 1px solid var(--border);
}
.nav-top-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 6%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
nav.nav-two-tier .logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
nav.nav-two-tier .logo-img { height: 42px; width: auto; }
.logo-brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--navy); letter-spacing: 0.06em;
}

/* Top utility links */
.nav-top-links {
  display: flex; align-items: center; gap: 0;
  list-style: none; padding: 0; margin: 0;
}
.nav-top-links > li {
  position: relative;
}
.nav-top-links > li > a {
  display: block;
  padding: 0 1.2rem;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mid); text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-top-links > li + li > a { border-left: 1px solid var(--border); }
.nav-top-links > li:last-child > a { padding-right: 0; }
.nav-top-links > li > a:hover { color: var(--gold-deep); }

/* Sectors dropdown */
.nav-top-links li.has-dropdown:hover .nav-dropdown {
  display: block;
}
.nav-dropdown {
  display: none;
  position: absolute; top: 100%; right: 0;
  background: var(--warm-bg);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  list-style: none; padding: 0.5rem 0; margin: 0;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(32,44,88,0.12);
  z-index: 250;
}
.nav-dropdown li { border: none; }
.nav-dropdown li a {
  display: block;
  padding: 0.7rem 1.2rem;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mid); text-decoration: none;
  font-weight: 600;
  border-left: 2px solid transparent !important;
  transition: all 0.2s;
}
.nav-dropdown li a:hover {
  color: var(--gold-deep);
  background: rgba(201,161,75,0.06);
  border-left-color: var(--gold) !important;
}

/* MAIN BAR */
.nav-main-bar {
  background: var(--warm-bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(32,44,88,0.04);
}
.nav-main-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 6%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
.nav-main-links {
  display: flex; align-items: center; gap: 0;
  list-style: none; padding: 0; margin: 0;
  width: 100%;
  justify-content: space-between;
}
.nav-main-links > li {
  position: relative;
}
.nav-main-links > li > a {
  display: block;
  padding: 0 1.4rem;
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
  position: relative;
}
.nav-main-links > li:first-child > a { padding-left: 0; }
.nav-main-links > li + li > a { border-left: 1px solid var(--border); }
.nav-main-links > li > a:hover { color: var(--gold-deep); }
.nav-main-links .nav-login {
  background: var(--gold-deep) !important; color: var(--white) !important;
  padding: 6px 1.4rem !important; margin-left: 0.4rem !important;
  border-radius: 3px !important; border: none !important;
}
.nav-main-links .nav-login:hover { background: var(--navy) !important; }

/* Adjust body padding to account for two-bar nav (122px total) */
body { padding-top: 122px; }
.hero { margin-top: -122px; padding-top: 122px; }
.mobile-menu { top: 122px; }
.mobile-menu.open { max-height: calc(100vh - 122px); }

/* Tablet / mobile — collapse to single bar + hamburger */
@media (max-width: 1100px) {
  .nav-top-bar { border-bottom: 1px solid var(--border); }
  .nav-top-links { display: none; }
  .nav-main-bar { display: none; }
  .hamburger { display: flex !important; }
  body { padding-top: 70px; }
  .hero { margin-top: -70px; padding-top: 70px; }
  .mobile-menu { top: 70px; }
  .mobile-menu.open { max-height: calc(100vh - 70px); }
}
@media (max-width: 600px) {
  .logo-brand-text { display: none; }
  nav.nav-two-tier .logo-img { height: 36px; }
  .nav-top-inner { height: 60px; }
  body { padding-top: 60px; }
  .hero { margin-top: -60px; padding-top: 60px; }
  .mobile-menu { top: 60px; }
  .mobile-menu.open { max-height: calc(100vh - 60px); }
}
