
  /* ═══════════════════════════════════════
     AMECAX GROUP — DESIGN SYSTEM
     Institutional / Editorial
     ═══════════════════════════════════════ */
  :root {
    --navy:         #0A1628;
    --navy-deep:    #050B17;
    --navy-mid:     #0F1F3D;
    --navy-soft:    #1A2A4A;
    --gold:         #C9972B;
    --gold-light:   #E4B94A;
    --gold-soft:    #F0D27A;
    --gold-pale:    #FBF3DE;
    --cream:        #F6F2EA;
    --paper:        #FAF8F3;
    --ink:          #0D1424;
    --ink-soft:     #2A3142;
    --muted:        #7A8299;
    --border:       rgba(10, 22, 40, 0.08);
    --border-strong:rgba(10, 22, 40, 0.14);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter Tight', -apple-system, sans-serif;
    --font-mono:    'JetBrains Mono', monospace;

    --ease:         cubic-bezier(0.16, 1, 0.3, 1);
    --ease-expo:    cubic-bezier(0.19, 1, 0.22, 1);
  }

  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body {
    font-family: var(--font-body);
    font-weight: 400;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
  }
  img { max-width:100%; display:block; }
  a { color: inherit; text-decoration: none; }
  button { font:inherit; cursor:pointer; border:none; background:none; color:inherit; }

  .display { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em; line-height: 1.02; }
  .overline {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
  }
  .micro {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ═══ NAVIGATION ═══ */
  .nav {
    position: fixed; top:0; left:0; right:0; z-index:100;
    padding: 18px 48px;
    display: flex; justify-content: space-between; align-items: center;
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    background: rgba(10, 22, 40, 0.78);
    border-bottom: 1px solid rgba(201, 151, 43, 0.12);
    transition: all 0.4s var(--ease);
  }
  .nav-scrolled {
    padding: 12px 48px;
    background: rgba(10, 22, 40, 0.94);
  }
  .nav-brand {
    display:flex; align-items:center; gap:14px;
  }
  .nav-brand-logo {
    height: 58px;
    width: 240px;
    max-width: 240px;
    object-fit: contain;
    background: transparent;
    padding: 0;
    border-radius: 0;
  }
  .nav-links {
    display: flex; gap: 38px; align-items: center;
  }
  .nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content:""; position: absolute; bottom: -6px; left: 0; right: 0;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s var(--ease);
  }
  .nav-links a:hover { color: #fff; }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-cta {
    padding: 11px 22px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s var(--ease);
  }
  .nav-cta:hover {
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(201,151,43,0.4);
  }

  /* ═══ HERO ═══ */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .hero::before {
    content:""; position:absolute; inset:0;
    background:
      radial-gradient(ellipse 60% 50% at 75% 40%, rgba(201,151,43,0.10) 0%, transparent 55%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,151,43,0.06) 0%, transparent 50%);
    pointer-events: none;
  }
  .hero::after {
    content:""; position:absolute; inset:0;
    background-image:
      linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  }
  .hero-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 140px 48px 100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .hero-watermark {
    position: absolute;
    right: -3%;
    top: 50%;
    transform: translateY(-50%);
    width: 38rem;
    height: auto;
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
    filter: brightness(0) invert(1);
  }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 14px;
    margin-bottom: 36px;
  }
  .hero-tag::before {
    content:""; width: 36px; height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.4vw, 5.8rem);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 36px;
  }
  .hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
  }

  .hero-sub {
    font-size: 1.08rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    max-width: 580px;
    margin-bottom: 44px;
  }

  .hero-actions {
    display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  }
  .btn-primary {
    padding: 16px 34px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    display: inline-flex; align-items: center; gap: 12px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content:""; position:absolute; inset:0;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.5s var(--ease);
  }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(201,151,43,0.3); }

  .btn-ghost {
    padding: 16px 0;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    display: inline-flex; align-items: center; gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    transition: all 0.3s;
  }
  .btn-ghost:hover { color: var(--gold); border-bottom-color: var(--gold); }

  /* Hero meta panel */
  .hero-meta {
    background: rgba(255,255,255,0.025);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201,151,43,0.18);
    padding: 38px;
    border-radius: 2px;
    position: relative;
  }
  .hero-meta::before {
    content:""; position: absolute; top: -1px; left: -1px; right: -1px;
    height: 3px; background: var(--gold);
  }
  .hero-meta-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 22px;
  }
  .hero-meta-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 28px;
  }
  .hero-meta-list {
    list-style: none;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .hero-meta-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .hero-meta-list li:last-child { border-bottom: none; }
  .hero-meta-list li span:first-child { color: rgba(255,255,255,0.6); }
  .hero-meta-list li span:last-child {
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 500;
  }

  .hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 48px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    z-index: 2;
  }
  .hero-bottom-links { display: flex; gap: 36px; }

  /* ═══ MARKET TICKER ═══ */
  .ticker-section {
    background: var(--navy-deep);
    padding: 18px 0;
    border-top: 1px solid rgba(201,151,43,0.1);
    border-bottom: 1px solid rgba(201,151,43,0.1);
    overflow: hidden;
  }
  .ticker {
    display: flex;
    gap: 64px;
    animation: ticker 60s linear infinite;
    white-space: nowrap;
    font-family: var(--font-mono);
    font-size: 0.84rem;
    color: rgba(255,255,255,0.8);
  }
  .ticker-item { display: inline-flex; align-items: center; gap: 12px; }
  .ticker-symbol { color: var(--gold); font-weight: 600; letter-spacing: 0.1em; }
  .ticker-val { color: #fff; font-weight: 500; }
  .ticker-note { font-size: 0.74rem; color: var(--muted); }
  @keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ═══ SECTION ═══ */
  .section { padding: 130px 48px; }
  .container { max-width: 1440px; margin: 0 auto; }

  /* ═══ ABOUT SECTION ═══ */
  .about-section { background: var(--paper); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 100px;
  }
  .about-left { position: sticky; top: 120px; align-self: start; }
  .section-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.14em;
    margin-bottom: 16px;
    display: block;
  }
  .about-heading {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 36px;
  }
  .about-heading em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
  }
  .about-body {
    font-size: 1.05rem;
    line-height: 1.78;
    color: var(--ink-soft);
    margin-bottom: 22px;
    font-weight: 400;
  }
  .about-body strong { font-weight: 500; color: var(--ink); }

  /* ═══ WHAT WE DO ═══ */
  .what-section {
    background: var(--navy);
    color: #fff;
    padding: 140px 48px;
    position: relative;
  }
  .what-section::before {
    content:""; position:absolute; inset:0;
    background: radial-gradient(circle at 20% 30%, rgba(201,151,43,0.06) 0%, transparent 50%);
    pointer-events: none;
  }
  .what-header {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
  }
  .what-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.4vw, 4rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: #fff;
    margin-top: 16px;
  }
  .what-header h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
    display: block;
  }
  .what-header-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.68);
    font-weight: 400;
    padding-top: 18px;
  }

  .what-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    position: relative; z-index: 2;
  }
  .what-item {
    background: var(--navy);
    padding: 50px 32px;
    transition: background 0.4s var(--ease);
  }
  .what-item:hover { background: var(--navy-mid); }
  .what-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    color: var(--gold);
    margin-bottom: 36px;
  }
  .what-icon {
    width: 38px; height: 38px;
    margin-bottom: 28px;
    color: var(--gold);
    stroke-width: 1.4;
  }
  .what-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 16px;
    color: #fff;
  }
  .what-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.62);
    font-weight: 400;
  }

  /* ═══ HOW WE OPERATE ═══ */
  .how-section { background: var(--cream); padding: 140px 48px; }
  .how-header {
    max-width: 880px;
    margin-bottom: 70px;
  }
  .how-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.4vw, 4rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin: 16px 0 24px;
  }
  .how-header h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
  }
  .how-header p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink-soft);
  }

  .how-flow {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    position: relative;
  }
  .how-step {
    background: #fff;
    padding: 32px 24px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s var(--ease);
  }
  .how-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -16px rgba(10, 22, 40, 0.12);
    border-color: var(--gold);
  }
  .how-step-num {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 600;
  }
  .how-step h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .how-step p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--ink-soft);
  }
  .how-step::after {
    content: "→";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1rem;
    z-index: 2;
  }
  .how-step:last-child::after { display: none; }

  /* ═══ COMMODITIES ═══ */
  .comm-section {
    background: var(--paper);
    padding: 140px 48px;
  }
  .comm-header {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    margin-bottom: 70px;
  }
  .comm-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.4vw, 4rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin-top: 16px;
  }
  .comm-header h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
    display: block;
  }
  .comm-header-right {
    padding-top: 18px;
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.75;
  }

  .comm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .comm-card {
    background: #fff;
    padding: 38px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s var(--ease);
  }
  .comm-card:hover {
    border-color: var(--gold);
    box-shadow: 0 24px 60px -20px rgba(10, 22, 40, 0.15);
  }
  .comm-card::before {
    content:"";
    position: absolute;
    top: -1px; left: 0;
    width: 50px; height: 3px;
    background: var(--gold);
  }
  .comm-card-num {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.14em;
    margin-bottom: 16px;
  }
  .comm-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .comm-card-rows {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 12px;
    margin-top: 24px;
  }
  .comm-card-rows dt {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 6px 0;
    border-top: 1px solid var(--border);
  }
  .comm-card-rows dd {
    font-size: 0.9rem;
    color: var(--ink);
    padding: 6px 0;
    border-top: 1px solid var(--border);
  }

  /* ═══ WHO WE SERVE ═══ */
  .serve-section {
    background: var(--navy);
    color: #fff;
    padding: 140px 48px;
  }
  .serve-header {
    max-width: 900px;
    margin-bottom: 70px;
  }
  .serve-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.4vw, 4rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 16px 0 24px;
  }
  .serve-header h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
  }
  .serve-header p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
  }

  .serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .serve-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 44px 36px;
    transition: all 0.4s var(--ease);
  }
  .serve-card:hover {
    border-color: var(--gold);
    background: rgba(201,151,43,0.05);
  }
  .serve-card-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    color: var(--gold);
    margin-bottom: 24px;
  }
  .serve-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #fff;
  }
  .serve-card p {
    font-size: 0.94rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.7);
  }

  /* ═══ EXECUTION ═══ */
  .exec-section { background: var(--paper); padding: 140px 48px; }
  .exec-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    align-items: start;
  }
  .exec-left h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.4vw, 4rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin: 16px 0 28px;
  }
  .exec-left h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
    display: block;
  }
  .exec-left p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink-soft);
  }

  .exec-list { list-style: none; }
  .exec-list li {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-strong);
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    align-items: start;
  }
  .exec-list li:first-child { padding-top: 0; }
  .exec-list li:last-child { border-bottom: none; }
  .exec-list-num {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.14em;
    font-weight: 600;
  }
  .exec-list-content h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .exec-list-content p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.6;
  }

  /* ═══ LOGISTICS / PORT ═══ */
  .port-section {
    background: var(--cream);
    padding: 140px 48px;
  }
  .port-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 90px;
    align-items: center;
  }
  .port-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.4vw, 4rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin: 16px 0 28px;
  }
  .port-content h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
    display: block;
  }
  .port-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 22px;
  }

  .port-locations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
  }
  .port-loc {
    background: #fff;
    padding: 22px 20px;
    border: 1px solid var(--border);
  }
  .port-loc-state {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .port-loc h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 6px;
  }
  .port-loc p {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
  }

  .port-visual {
    aspect-ratio: 4/5;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  .port-visual::before {
    content:""; position:absolute; inset:0;
    background: linear-gradient(135deg, rgba(10,22,40,0.4) 0%, rgba(10,22,40,0.85) 100%);
    z-index: 2;
  }
  .port-visual-inner {
    position: absolute; inset: 0;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 3;
    color: #fff;
  }
  .port-visual-top .micro { color: var(--gold); display: block; margin-bottom: 14px; }
  .port-visual-top h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.2;
  }
  .port-geo {
    font-family: var(--font-mono);
    font-size: 0.84rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
  }
  .port-geo-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 11px 0;
  }
  .port-geo-item:last-child { border-bottom: none; }
  .port-geo-val { color: var(--gold); font-weight: 500; }

  .port-pattern { position: absolute; inset: 0; z-index: 1; opacity: 0.18; }

  /* ═══ STRUCTURE ═══ */
  .structure-section { background: var(--paper); padding: 140px 48px; }
  .structure-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    margin-bottom: 80px;
  }
  .structure-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.4vw, 4rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin-top: 16px;
  }
  .structure-intro h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
    display: block;
  }
  .structure-intro p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--ink-soft);
    padding-top: 16px;
  }

  .entity-diagram { position: relative; }
  .entity-top { display: flex; justify-content: center; margin-bottom: 50px; }
  .entity-card-primary {
    background: var(--navy);
    color: #fff;
    padding: 32px 50px;
    text-align: center;
    max-width: 500px;
    border: 1px solid var(--gold);
    position: relative;
  }
  .entity-card-primary::before {
    content:""; position:absolute;
    top: -1px; left: 0; right: 0; height: 3px;
    background: var(--gold);
  }
  .entity-card-primary .micro { color: var(--gold); margin-bottom: 12px; display: block; }
  .entity-card-primary h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 6px;
  }
  .entity-card-primary p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.65);
  }

  .entity-connector { width: 1px; height: 40px; background: var(--border-strong); margin: -25px auto 25px; }

  .entity-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
  }
  .entity-row::before {
    content:""; position:absolute; top: -25px;
    left: 12.5%; right: 12.5%; height: 1px;
    background: var(--border-strong);
  }
  .entity-card {
    background: #fff;
    padding: 28px 22px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s var(--ease);
  }
  .entity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px -20px rgba(10, 22, 40, 0.18);
    border-color: var(--gold);
  }
  .entity-card::before {
    content:""; position:absolute;
    top: -1px; left: 0;
    width: 36px; height: 3px;
    background: var(--gold);
  }
  .entity-card-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.14em;
    margin-bottom: 12px;
  }
  .entity-card h4 {
    font-family: var(--font-display);
    font-size: 1.16rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 6px;
  }
  .entity-card .state {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
  }
  .entity-card p {
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--ink-soft);
  }

  /* ═══ QUOTE ═══ */
  .quote-section {
    background: var(--navy);
    color: #fff;
    padding: 130px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .quote-section::before {
    content: "“";
    position: absolute;
    top: 30px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 18rem;
    color: var(--gold);
    opacity: 0.1;
    line-height: 1;
    font-weight: 700;
  }
  .quote-inner { max-width: 980px; margin: 0 auto; position: relative; z-index: 2; }
  .quote-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.7rem, 3.4vw, 3rem);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.005em;
    margin-bottom: 36px;
  }
  .quote-text em { color: var(--gold); font-style: italic; }
  .quote-attr {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }
  .quote-attr::before {
    content:""; display: inline-block;
    width: 36px; height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 14px;
  }

  /* ═══ LEADERSHIP ═══ */
  .leadership-section { background: var(--paper); padding: 140px 48px; }
  .leadership-header { max-width: 900px; margin-bottom: 70px; }
  .leadership-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.4vw, 4rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 16px 0 24px;
  }
  .leadership-header h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
  }
  .leadership-header p {
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 700px;
  }

  .leadership-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: stretch;
  }
  .leadership-photo {
    background: var(--navy);
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
  }
  .leadership-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.04);
  }
  .leadership-photo::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.55), transparent 60%);
  }
  .leadership-photo-label {
    position: absolute;
    bottom: 30px; left: 30px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.85);
    z-index: 2;
  }

  .founders-list { display: flex; flex-direction: column; justify-content: center; }
  .founder {
    padding: 26px 0;
    border-bottom: 1px solid var(--border-strong);
    transition: padding 0.4s var(--ease);
  }
  .founder:first-child { padding-top: 0; }
  .founder:last-child { border-bottom: none; }
  .founder:hover { padding-left: 14px; }
  .founder-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.16em;
    margin-bottom: 8px;
  }
  .founder-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 4px;
  }
  .founder-role {
    font-size: 0.86rem;
    color: var(--muted);
    margin-bottom: 12px;
  }
  .founder-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  /* ═══ CONTACT FORM ═══ */
  .cta-section {
    background: var(--gold);
    color: var(--navy);
    padding: 130px 48px;
    position: relative;
    overflow: hidden;
  }
  .cta-inner {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .cta-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 72px;
  }
  .cta-header .overline {
    color: var(--navy);
    opacity: 0.7;
    margin-bottom: 22px;
    display: block;
  }
  .cta-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.6vw, 4.2rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
  }
  .cta-header h2 em { font-style: italic; }
  .cta-header p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink-soft);
  }

  .contact-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 50px;
    align-items: start;
  }

  .contact-form-wrap {
    background: #fff;
    padding: 50px 46px;
    position: relative;
    box-shadow: 0 30px 70px -20px rgba(10, 22, 40, 0.25);
  }
  .contact-form-wrap::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--navy);
  }

  .honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 24px;
    margin-bottom: 28px;
  }
  .form-field { display: flex; flex-direction: column; }
  .form-field-full { grid-column: 1 / -1; }

  .form-field label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 9px;
    font-weight: 600;
  }
  .form-field label .required {
    color: #B04020;
    font-weight: 700;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink);
    padding: 13px 16px;
    border: 1px solid var(--border-strong);
    border-radius: 2px;
    background: var(--paper);
    transition: all 0.25s var(--ease);
    outline: none;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 151, 43, 0.15);
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder {
    color: var(--muted);
    font-weight: 300;
  }
  .form-field select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A8299' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
  }
  .form-field textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-body);
  }

  /* Inquiry type radio cards */
  .inquiry-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .inquiry-option {
    cursor: pointer;
    position: relative;
  }
  .inquiry-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  .inquiry-card {
    padding: 16px 14px;
    border: 1.5px solid var(--border-strong);
    border-radius: 2px;
    background: var(--paper);
    transition: all 0.25s var(--ease);
    text-align: left;
  }
  .inquiry-option:hover .inquiry-card {
    border-color: var(--gold);
    background: #fff;
  }
  .inquiry-option input[type="radio"]:checked + .inquiry-card {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
  }
  .inquiry-num {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 6px;
    font-weight: 600;
  }
  .inquiry-label {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 4px;
  }
  .inquiry-desc {
    font-size: 0.74rem;
    color: var(--muted);
    line-height: 1.4;
  }
  .inquiry-option input[type="radio"]:checked + .inquiry-card .inquiry-desc {
    color: rgba(255,255,255,0.7);
  }

  /* Submit button */
  .form-submit {
    width: 100%;
    padding: 18px 32px;
    background: var(--navy);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
  }
  .form-submit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--navy-deep);
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease);
  }
  .form-submit > * { position: relative; z-index: 1; }
  .form-submit:hover::before { transform: translateX(0); }
  .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(10, 22, 40, 0.35);
  }
  .form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
  }
  .form-submit.loading .submit-text::after {
    content: "...";
  }

  /* Form status */
  .form-status {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 2px;
    font-size: 0.92rem;
    line-height: 1.5;
    display: none;
  }
  .form-status.success {
    display: block;
    background: #E4F5EC;
    color: #1A6B3C;
    border-left: 3px solid #1A6B3C;
  }
  .form-status.error {
    display: block;
    background: #FAECE7;
    color: #B04020;
    border-left: 3px solid #B04020;
  }

  .form-note {
    margin-top: 22px;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.6;
    font-style: italic;
  }

  /* Right sidebar */
  .contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .contact-side-card {
    background: var(--navy);
    color: #fff;
    padding: 32px 30px;
    position: relative;
  }
  .contact-side-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 50px; height: 4px;
    background: var(--gold);
  }
  .contact-side-card.alt {
    background: rgba(10, 22, 40, 0.05);
    color: var(--ink);
    border: 1px solid rgba(10, 22, 40, 0.15);
  }
  .contact-side-card.alt::before { background: var(--navy); }
  .contact-side-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 600;
  }
  .contact-side-card.alt .contact-side-label { color: var(--navy); opacity: 0.7; }
  .contact-side-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #fff;
  }
  .contact-side-card p {
    font-size: 0.94rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.8);
  }
  .contact-side-card.alt p { color: var(--ink-soft); }
  .contact-side-card.alt strong { color: var(--navy); font-weight: 600; }

  .contact-email,
  .contact-link {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 8px;
    transition: color 0.3s;
    font-weight: 500;
    word-break: break-all;
  }
  .contact-email:hover, .contact-link:hover { color: #fff; }
  .contact-link {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-body);
    font-weight: 400;
  }

  /* ═══ FOOTER ═══ */
  .footer {
    background: var(--navy-deep);
    color: #fff;
    padding: 90px 48px 32px;
  }
  .footer-main {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 70px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
  }
  .footer-brand img {
    height: 68px;
    width: 280px;
    max-width: 100%;
    object-fit: contain;
    background: transparent;
    padding: 0;
    border-radius: 0;
  }
  .footer-tag {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    max-width: 380px;
    margin-bottom: 30px;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
  }
  .footer-contact a { transition: color 0.3s; }
  .footer-contact a:hover { color: var(--gold); }
  .footer-col h5 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 11px; }
  .footer-col a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
  }
  .footer-col a:hover { color: #fff; }

  .footer-disclaimer {
    max-width: 1440px;
    margin: 40px auto 0;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    font-style: italic;
  }

  .footer-bottom {
    max-width: 1440px;
    margin: 26px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
  }
  .footer-bottom-links { display: flex; gap: 28px; }
  .footer-bottom-links a:hover { color: var(--gold); }

  /* RESPONSIVE */
  @media (max-width: 1100px) {
    .hero-inner, .what-header, .structure-intro, .port-grid, .comm-header, .leadership-grid, .about-grid, .exec-grid {
      grid-template-columns: 1fr; gap: 60px;
    }
    .what-grid, .entity-row, .serve-grid, .comm-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .how-flow { grid-template-columns: repeat(3, 1fr); gap: 20px 32px; }
    .how-step::after { display: none; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
    .port-locations { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 36px; }
    .inquiry-options { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 680px) {
    .nav { padding: 12px 18px; }
    .nav-links { display: none; }
    .section, .what-section, .how-section, .comm-section, .serve-section, .exec-section, .port-section, .quote-section, .leadership-section, .cta-section, .footer { padding: 80px 20px; }
    .hero-inner { padding: 110px 20px 80px; }
    .what-grid, .entity-row, .serve-grid, .comm-grid, .how-flow, .footer-main {
      grid-template-columns: 1fr;
    }
    .form-grid { grid-template-columns: 1fr; }
    .inquiry-options { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 32px 24px; }
  }

@media (max-width: 680px) {
  .nav-brand-logo { height: 44px; width: 185px; max-width: 185px; }
  .footer-brand img { height: 54px; width: 220px; }
}
