
/* ── TOKENS ─────────────────────────────────────────────────────── */
:root {
  --ink:       #061C35;
  --ink-mid:   #0F2E4E;
  --ink-soft:  #1A4060;
  --gold:      #B8902A;
  --gold-lt:   #D4AA45;
  --gold-pale: #F0DFA0;
  --chalk:     #F8F5EE;
  --chalk-dk:  #EDE9E0;
  --steel:     #4A6278;
  --mist:      #8FA3B5;
  --white:     #FFFFFF;
  --text:      #1A2B3C;
  --text-mid:  #3D5468;
  --text-muted:#6B8299;
  --border:    #D4DCEA;
  --shadow-sm: 0 2px 10px rgba(6,28,53,0.07);
  --shadow-md: 0 8px 32px rgba(6,28,53,0.11);
  --shadow-lg: 0 20px 60px rgba(6,28,53,0.15);
  --r:         6px;
  --r-lg:      12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--chalk);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── MARQUEE ─────────────────────────────────────────────────────── */
#ticker {
  background: var(--gold);
  height: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 45s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.5px;
  padding: 0 32px;
}
.ticker-item::after {
  content: '·';
  margin-left: 32px;
  color: var(--ink-soft);
  opacity: 0.5;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── NAV ─────────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,245,238,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  height: 66px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-md); }

.nav-brand { text-decoration: none; display: flex; align-items: center; gap: 14px; }
.nav-wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.5px;
}
.nav-wordmark-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-top: 2px;
  margin-bottom: 2px;
  width: 100%;
}
.nav-wordmark-sub {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--steel);
}

.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.2px;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--ink) !important;
  color: var(--chalk) !important;
  padding: 9px 22px;
  border-radius: var(--r);
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--ink-mid) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--ink); border-radius: 1px; transition: 0.3s;
}

/* ── HERO ─────────────────────────────────────────────────────────── */
#hero {
  background: var(--ink);
  min-height: calc(100vh - 32px - 66px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Subtle hull-line watermark across hero */
#hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.hero-left {
  padding: 72px 7% 80px 10%;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-kicker {
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold-lt);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-kicker::before {
  content: ''; display: block;
  width: 24px; height: 1.5px; background: var(--gold);
}
.hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(38px, 4.2vw, 62px);
  color: var(--chalk);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-h1 .italic { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  font-size: 15px;
  color: var(--mist);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  padding: 13px 30px;
  border-radius: var(--r);
  font-weight: 700; font-size: 14px;
  text-decoration: none; letter-spacing: 0.3px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,144,42,0.3);
}
.btn-ghost {
  border: 1.5px solid rgba(248,245,238,0.2);
  color: var(--chalk);
  padding: 12px 28px;
  border-radius: var(--r);
  font-weight: 500; font-size: 14px;
  text-decoration: none; letter-spacing: 0.3px;
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
}

.hero-trust {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.trust-item {
  font-size: 12px; color: var(--mist);
  display: flex; align-items: center; gap: 7px;
}

/* Hero right — image with overlay */
.hero-right {
  position: relative; overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  filter: brightness(0.55) saturate(0.8);
}
.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 40%);
}
.hero-right-caption {
  position: absolute; bottom: 24px; left: 24px;
  font-size: 11px; color: rgba(248,245,238,0.55);
  font-style: italic; letter-spacing: 0.3px;
}

/* ── STATS STRIP ─────────────────────────────────────────────────── */
#stats {
  background: var(--ink-mid);
  padding: 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
}
.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px; font-weight: 400;
  color: var(--gold-lt); display: block;
  line-height: 1; margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.stat-lbl {
  font-size: 10.5px; font-weight: 500;
  color: var(--mist); letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── SECTION SHELL ───────────────────────────────────────────────── */
section { padding: 88px 10%; }
section.alt { background: var(--chalk-dk); }
section.dark { background: var(--ink); padding: 80px 10%; }

.eyebrow {
  font-size: 10.5px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.eyebrow::before { content: ''; width: 20px; height: 1.5px; background: var(--gold); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--ink); line-height: 1.2;
  letter-spacing: -0.5px; margin-bottom: 12px;
}
.section-title.light { color: var(--chalk); }
.section-lead {
  font-size: 15px; color: var(--text-muted);
  max-width: 660px; line-height: 1.85;
  font-weight: 300;
}
.gold-rule { width: 40px; height: 2px; background: var(--gold); border-radius: 1px; margin: 14px 0 0; }

/* ── ABOUT ───────────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start; margin-top: 52px;
}
.about-img-wrap {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%; height: 360px;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.about-img-wrap:hover img { transform: scale(1.03); }
.about-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(6,28,53,0.85));
  padding: 20px 18px 14px;
  font-size: 11px; color: rgba(248,245,238,0.75);
  font-style: italic;
}
.about-award {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 22px 22px;
  margin-top: 20px;
  display: flex; align-items: flex-start; gap: 16px;
}
.award-icon {
  font-size: 24px; flex-shrink: 0; margin-top: 2px;
}
.award-text strong {
  display: block; font-family: 'DM Serif Display', serif;
  font-size: 15px; color: var(--gold-lt); margin-bottom: 4px;
}
.award-text p {
  font-size: 12.5px; color: var(--mist); line-height: 1.55; margin: 0;
}

.pillars { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.pillar {
  border-left: 2px solid var(--gold);
  padding: 16px 18px;
  background: var(--white);
  border-radius: 0 var(--r) var(--r) 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pillar:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.pillar h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 15px; color: var(--ink);
  margin-bottom: 5px;
}
.pillar p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── EQUIPMENT ───────────────────────────────────────────────────── */
.equip-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 20px; margin-top: 48px; margin-bottom: 40px;
}
.equip-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s;
}
.equip-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.equip-card-img {
  height: 180px; overflow: hidden; position: relative;
}
.equip-card-img img {
  width: 100%; height: 180px;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.equip-card:hover .equip-card-img img { transform: scale(1.05); }
.equip-card-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(6,28,53,0.75));
  padding: 14px 14px 8px;
  font-size: 9.5px; color: rgba(255,255,255,0.8); font-style: italic;
}
.equip-body { padding: 22px 20px; }
.equip-tag {
  display: inline-block;
  background: var(--ink); color: var(--gold-lt);
  font-size: 9.5px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 3px 10px;
  border-radius: 20px; margin-bottom: 10px;
}
.equip-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px; color: var(--ink); margin-bottom: 8px;
}
.equip-card p {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 14px;
}
.spec-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.spec-chip {
  background: var(--chalk-dk);
  border: 1px solid var(--border);
  color: var(--steel);
  font-size: 11px; font-weight: 500;
  padding: 3px 11px; border-radius: 20px;
}

.projects-bar {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: grid; grid-template-columns: auto 1fr;
  gap: 28px; align-items: center;
}
.projects-label {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); white-space: nowrap;
}
.project-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.project-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,144,42,0.25);
  color: rgba(248,245,238,0.85);
  padding: 6px 16px; border-radius: 20px;
  font-size: 12.5px; font-weight: 400;
  transition: background 0.2s;
}
.project-chip:hover { background: rgba(255,255,255,0.1); }

/* ── VESSELS ─────────────────────────────────────────────────────── */
.vessels-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start; margin-top: 52px;
}

.vessel-gallery { display: flex; flex-direction: column; gap: 14px; }
.vessel-feature {
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; box-shadow: var(--shadow-lg);
}
.vessel-feature img {
  width: 100%; height: 240px;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.vessel-feature:hover img { transform: scale(1.03); }
.vessel-feature-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(6,28,53,0.88));
  padding: 28px 18px 14px;
}
.vessel-feature-caption span {
  font-size: 11px; color: rgba(248,245,238,0.8); font-style: italic;
}
.vessel-thumb {
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; box-shadow: var(--shadow-md);
}
.vessel-thumb img {
  width: 100%; height: 130px;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.vessel-thumb:hover img { transform: scale(1.05); }
.vessel-thumb-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(6,28,53,0.82));
  padding: 16px 14px 10px;
  font-size: 10px; color: rgba(248,245,238,0.8); font-style: italic;
}

/* Vessel panel */
.vessel-panel {
  background: var(--ink);
  border-radius: var(--r-lg); padding: 36px 28px;
  position: sticky; top: 80px;
}
.vpanel-ey {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.vpanel-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: var(--chalk);
  line-height: 1.3; margin-bottom: 24px;
}
.vpanel-title span { color: var(--gold-lt); font-style: italic; }
.vrow {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vrow:last-of-type { border-bottom: none; }
.vrow-label { font-size: 12.5px; color: var(--mist); }
.vrow-val {
  font-family: 'DM Serif Display', serif;
  font-size: 24px; color: var(--gold-lt);
}
.vpanel-note {
  margin-top: 20px; padding: 14px 16px;
  background: rgba(184,144,42,0.10);
  border: 1px solid rgba(184,144,42,0.22);
  border-radius: var(--r);
  font-size: 12px; color: var(--mist); line-height: 1.65;
}
.vpanel-mgmt {
  margin-top: 14px; padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
}
.vpanel-mgmt-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 5px;
}
.vpanel-mgmt p {
  font-size: 12px; color: var(--mist); line-height: 1.6; margin: 0;
}

/* Services */
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin: 36px 0;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px 20px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.svc-num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px; color: var(--chalk-dk);
  line-height: 1; flex-shrink: 0; min-width: 34px;
  transition: color 0.2s;
}
.svc-card:hover .svc-num { color: var(--gold); }
.svc-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 15px; color: var(--ink); margin-bottom: 7px;
}
.svc-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin: 0; }

.tanker-tags { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 24px; }
.eyebrow-sm {
  width: 100%; font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 3px;
}
.ttag {
  background: var(--chalk-dk); border: 1px solid var(--border);
  color: var(--steel); padding: 5px 13px; border-radius: 20px;
  font-size: 12px; font-weight: 500;
  transition: background 0.2s;
}
.ttag:hover { background: var(--chalk); }

/* Gulf / Africa block */
.gulf-block {
  margin-top: 44px; background: var(--ink);
  border-radius: var(--r-lg); padding: 40px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.gulf-block h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px; color: var(--chalk);
  line-height: 1.25; margin-bottom: 14px;
}
.gulf-block p {
  font-size: 14px; color: var(--mist); line-height: 1.8; margin-bottom: 14px;
}
.ops-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,144,42,0.18);
  border-radius: var(--r);
  padding: 16px 18px;
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 12px;
  transition: background 0.2s;
}
.ops-card:last-child { margin-bottom: 0; }
.ops-card:hover { background: rgba(255,255,255,0.08); }
.ops-icon {
  width: 34px; height: 34px;
  background: rgba(184,144,42,0.15);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.ops-card h5 {
  font-size: 13px; font-weight: 600; color: var(--chalk); margin-bottom: 3px;
}
.ops-card p {
  font-size: 11.5px; color: rgba(143,163,181,0.8); line-height: 1.5; margin: 0;
}

/* ── COMPLIANCE ──────────────────────────────────────────────────── */
.compliance-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  margin-top: 48px;
}
.c-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,144,42,0.16);
  border-radius: var(--r-lg); padding: 26px 20px;
  transition: background 0.2s, transform 0.2s;
}
.c-item:hover { background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.c-check {
  width: 36px; height: 36px;
  background: rgba(184,144,42,0.13);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.c-check svg { width: 18px; height: 18px; fill: var(--gold); }
.c-item h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 15px; color: var(--chalk); margin-bottom: 7px;
}
.c-item p { font-size: 12.5px; color: var(--mist); line-height: 1.65; margin: 0; }

/* ── WHY PMO ─────────────────────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 48px;
}
.why-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: transparent; transition: background 0.25s;
}
.why-card:hover::before { background: var(--gold); }
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why-icon {
  width: 42px; height: 42px; background: var(--ink);
  border-radius: var(--r); display: flex; align-items: center;
  justify-content: center; margin-bottom: 14px;
}
.why-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.why-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 16px; color: var(--ink); margin-bottom: 9px;
}
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ── QUOTE ───────────────────────────────────────────────────────── */
#quote {
  background: var(--ink);
  padding: 80px 10%;
  text-align: center;
}
.quote-inner { max-width: 740px; margin: 0 auto; }
.quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 72px; color: var(--gold); line-height: 0.5;
  display: block; margin-bottom: 24px; opacity: 0.4;
}
.quote-text {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic; color: var(--chalk);
  line-height: 1.6; margin-bottom: 28px;
}
.quote-line { width: 32px; height: 1.5px; background: var(--gold); margin: 16px auto; }
.quote-source {
  font-size: 11.5px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--mist);
}

/* ── CONTACT ─────────────────────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; margin-top: 52px; align-items: start;
}
.contact-authority {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 32px;
}
.auth-box {
  background: var(--ink); border-radius: var(--r-lg);
  padding: 20px 16px; text-align: center;
}
.auth-num {
  font-family: 'DM Serif Display', serif;
  font-size: 30px; color: var(--gold-lt); display: block;
  line-height: 1; margin-bottom: 4px;
}
.auth-lbl { font-size: 10px; color: var(--mist); letter-spacing: 0.5px; }
.auth-sub { font-size: 10.5px; color: rgba(143,163,181,0.55); font-style: italic; margin-top: 3px; display: block; }

.contact-info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; color: var(--ink); margin-bottom: 6px;
}
.contact-info .intro {
  font-size: 14px; color: var(--text-muted); line-height: 1.8;
  margin-bottom: 24px; font-weight: 300;
}
.cinfo-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.cinfo-row:last-child { border-bottom: none; }
.cinfo-icon {
  width: 36px; height: 36px; background: var(--ink);
  border-radius: var(--r); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.cinfo-icon svg { width: 16px; height: 16px; fill: var(--gold); }
.cinfo-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px;
}
.cinfo-val { font-size: 14px; color: var(--text); font-weight: 500; }

.contact-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; color: var(--ink); margin-bottom: 24px;
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 6px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r); font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--text);
  background: var(--chalk); outline: none; resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--ink-soft);
  box-shadow: 0 0 0 3px rgba(26,64,96,0.08);
  background: var(--white);
}
.form-row textarea { min-height: 110px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%; background: var(--ink); color: var(--chalk);
  border: none; cursor: pointer; padding: 14px;
  border-radius: var(--r); font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 0.3px;
  margin-top: 6px; transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--ink-mid); transform: translateY(-1px); }
.form-confidence {
  font-size: 11px; color: var(--text-muted); text-align: center;
  margin-top: 10px; line-height: 1.6;
}
.form-success { display: none; text-align: center; padding: 40px 20px; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 60px 10% 0;
  position: relative;
}
footer::before {
  content: '';
  display: block; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.footer-brand p {
  font-size: 13px; color: rgba(248,245,238,0.45);
  line-height: 1.75; max-width: 270px; margin-top: 16px; font-weight: 300;
}
.footer-wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 26px; color: var(--chalk); letter-spacing: -0.5px;
}
.footer-wordmark-bar {
  height: 2px; width: 48px;
  background: var(--gold); margin: 4px 0 3px;
}
.footer-wordmark-sub {
  font-size: 9px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
}
.footer-col h5 {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px; color: rgba(248,245,238,0.45);
  text-decoration: none; transition: color 0.2s; font-weight: 300;
}
.footer-col a:hover { color: rgba(248,245,238,0.85); }
.footer-bottom {
  padding: 22px 0 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p, .footer-bottom a {
  font-size: 11.5px; color: rgba(248,245,238,0.28);
  text-decoration: none; transition: color 0.2s;
}
.footer-bottom a:hover { color: rgba(248,245,238,0.6); }

/* ── BACK TO TOP ─────────────────────────────────────────────────── */
#btt {
  position: fixed; bottom: 28px; right: 28px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); border: 1.5px solid var(--gold);
  color: var(--gold); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  z-index: 50;
}
#btt.show { opacity: 1; transform: translateY(0); }
#btt:hover { background: var(--ink-mid); }

/* ── SCROLL REVEAL ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal-l { opacity: 0; transform: translateX(-22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal-r { opacity: 0; transform: translateX(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.on, .reveal-l.on, .reveal-r.on { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 960px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .about-grid, .vessels-top, .contact-layout, .gulf-block { grid-template-columns: 1fr; gap: 40px; }
  .equip-grid, .services-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .vessel-panel { position: static; }
  .stats-grid { grid-template-columns: repeat(3,1fr); }
  .projects-bar { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 600px) {
  section { padding: 60px 6%; }
  .why-grid, .compliance-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-2col { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-authority { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-l, .reveal-r { opacity: 1; transform: none; }
}
