/* ==========================================================================
   BLACK CREEK GLOBAL RESOURCES — HORIZON REDESIGN v3
   Font: Poppins | Rounded cards | Pill buttons | Diagonal sections
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Brand Greens */
  --g500: #1A9050;   /* Main brand */
  --g600: #0F6E3C;   /* Darker */
  --g700: #0A4D2B;   /* Deep */
  --g400: #22AD5E;   /* Lighter hover */
  --g100: #E8F7EE;   /* Pale tint */
  --g050: #F3FBF6;   /* Near-white tint */

  /* Neutrals */
  --white:  #FFFFFF;
  --gray50: #F8FAFB;
  --gray100:#F0F4F2;
  --gray200:#E4ECE8;
  --gray500:#7A9486;
  --gray700:#3D5449;
  --gray900:#111C16;

  /* Dark backgrounds */
  --dark:   #0B1D13;
  --dark2:  #091510;

  /* UI */
  --radius-card: 16px;
  --radius-btn:  100px;
  --radius-icon: 12px;
  --shadow-xs:   0 1px 4px rgba(0,0,0,.06);
  --shadow-sm:   0 2px 12px rgba(0,0,0,.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.13);
  --shadow-xl:   0 32px 80px rgba(0,0,0,.18);
  --shadow-green: 0 12px 40px rgba(26,144,80,.30);

  --nav-h: 80px;
  --font: 'Poppins', sans-serif;
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray900);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray100); }
::-webkit-scrollbar-thumb { background: var(--g500); border-radius: 10px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.reveal  { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.revL    { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.revR    { opacity: 0; transform: translateX(40px);  transition: opacity .7s ease, transform .7s ease; }
.reveal.on, .revL.on, .revR.on { opacity: 1; transform: translate(0); }

/* ==========================================================================
   TOP INFO BAR
   ========================================================================== */
.topbar {
  background: var(--dark);
  padding: .5rem 0;
}
.topbar-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 36px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .3rem .8rem;
}
.topbar-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 500; letter-spacing: .02em;
  color: rgba(255,255,255,.6);
}
.topbar-item svg { width: 13px; height: 13px; color: var(--g400); flex-shrink: 0; }
.topbar-item a { color: inherit; transition: color .2s; }
.topbar-item a:hover { color: var(--white); }
.topbar-right { display: flex; gap: .6rem; }
.topbar-badge {
  background: rgba(26,144,80,.2); color: var(--g400);
  font-size: .68rem; font-weight: 600; letter-spacing: .05em;
  padding: .18rem .7rem; border-radius: 100px;
  border: 1px solid rgba(26,144,80,.3);
}

/* ==========================================================================
   NAVIGATION — Dark style to match logo-light.png
   ========================================================================== */
#nav {
  position: sticky; top: 0; z-index: 999;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.07);
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: box-shadow .3s, border-color .3s;
}
#nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
  border-bottom-color: var(--g500);
}

.nav-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 36px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; object-fit: contain; transition: opacity .2s; }
.logo:hover .logo-img { opacity: .82; }

.nav-links { display: flex; align-items: center; gap: .2rem; list-style: none; }
.nav-links a {
  display: block; padding: .5rem 1rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .01em;
  color: rgba(255,255,255,.7); border-radius: 8px;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.nav-links a.active { color: var(--g400); background: rgba(26,144,80,.12); }

/* Dropdown */
.has-drop { position: relative; }
.has-drop > a { padding-right: 1.8rem; position: relative; }
.has-drop > a::after {
  content: '';
  position: absolute; right: .6rem; top: 50%;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  transform: translateY(-50%);
  transition: transform .25s;
  pointer-events: none;
}
.has-drop:hover > a::after { transform: translateY(-50%) rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 260px;
  background: var(--dark);
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,.1);
  list-style: none; padding: .5rem;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .2s ease; z-index: 1001;
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block;
  padding: .75rem 1rem !important;
  font-size: .8rem; font-weight: 500; letter-spacing: 0;
  color: rgba(255,255,255,.7) !important; border-radius: 8px;
  background: transparent !important;
}
.dropdown li a:hover { background: rgba(26,144,80,.15) !important; color: var(--g400) !important; }
.dropdown li a::after { display: none !important; }

/* Nav CTA pill */
.ncta {
  background: var(--g500) !important; color: var(--white) !important;
  border-radius: var(--radius-btn) !important;
  padding: .55rem 1.4rem !important; margin-left: .8rem;
  font-size: .8rem !important; font-weight: 700 !important; letter-spacing: .02em !important;
  transition: background .2s, box-shadow .2s, transform .2s !important;
  box-shadow: 0 4px 16px rgba(26,144,80,.25);
}
.ncta:hover { background: var(--g400) !important; transform: translateY(-2px); box-shadow: var(--shadow-green) !important; }
.ncta.active { background: var(--g400) !important; }

/* Hamburger */
.hbg {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.hbg span { width: 22px; height: 2px; background: rgba(255,255,255,.75); transition: all .3s; border-radius: 2px; }

/* ==========================================================================
   MOBILE NAV
   ========================================================================== */
.mnav {
  display: none; position: fixed; inset: 0;
  background: var(--dark);
  z-index: 1000; flex-direction: column; overflow-y: auto;
}
.mnav.open { display: flex; }
.mnav-top {
  position: sticky; top: 0; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(11,29,19,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mnav-kicker { font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--g400); }
.mnav-x {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  font-size: 1.4rem; color: var(--white); cursor: pointer;
  transition: background .2s;
}
.mnav-x:hover { background: var(--g500); border-color: var(--g500); }
.mnav-body { flex: 1; padding: 1.4rem 1.5rem; }
.mnav-links { display: flex; flex-direction: column; }
.mnav-links > a,
.mnav-group > .mnav-group-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1.15rem; font-weight: 700;
  color: rgba(255,255,255,.88);
  padding: .95rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, padding-left .2s;
}
.mnav-links > a:hover, .mnav-group > .mnav-group-head:hover { color: var(--g400); padding-left: .4rem; }
.mnav-group > .mnav-group-head::after {
  content: ''; width: 8px; height: 8px;
  border-right: 2px solid var(--g400); border-bottom: 2px solid var(--g400);
  transform: rotate(45deg); opacity: .8;
}
.mnav-sub {
  display: flex; flex-direction: column;
  margin: .2rem 0 .4rem .1rem;
  padding: .2rem 0 .3rem 1rem;
  border-left: 2px solid rgba(26,144,80,.35);
}
.mnav-sub a {
  font-size: .92rem; font-weight: 500; color: rgba(255,255,255,.55);
  padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .2s, padding-left .2s;
}
.mnav-sub a:last-child { border-bottom: none; }
.mnav-sub a:hover { color: var(--white); padding-left: .3rem; }
.mnav-foot {
  padding: 1.5rem 1.5rem 2rem;
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; flex-direction: column; gap: 1rem;
}
.mnav-foot-block { display: flex; flex-direction: column; }
.mnav-foot-lbl { font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--g400); margin-bottom: .35rem; }
.mnav-foot p { font-size: .84rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.mnav-foot-link {
  font-size: .9rem; font-weight: 500; color: var(--white);
  border-bottom: 1px solid rgba(26,144,80,.4); width: fit-content; padding-bottom: 1px;
  transition: color .2s;
}
.mnav-foot-link:hover { color: var(--g400); }
.mnav-foot-meta {
  display: flex; flex-wrap: wrap; gap: .4rem .9rem;
  font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3);
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.wrap        { max-width: 1300px; margin: 0 auto; padding: 0 36px; }
.wrap-narrow { max-width: 1000px; margin: 0 auto; padding: 0 36px; }

/* Eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: .85rem;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--g500); flex-shrink: 0;
}
.eyebrow span {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--g500);
}
.eyebrow.light .eyebrow-dot { background: rgba(255,255,255,.6); }
.eyebrow.light span { color: rgba(255,255,255,.7); }

/* Section title */
.stitle {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -.02em; color: var(--gray900);
}
.stitle span { color: var(--g500); }
.stitle.light { color: var(--white); }
.stitle.light span { color: var(--g400); }

.sdesc {
  margin-top: .9rem; font-size: 1rem; font-weight: 400;
  line-height: 1.75; color: var(--gray500); max-width: 520px;
}
.sdesc.wide { max-width: 680px; }

/* Buttons */
.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--g500); color: var(--white);
  padding: .85rem 2rem; border-radius: var(--radius-btn);
  font-size: .88rem; font-weight: 700; letter-spacing: .02em;
  border: 2px solid var(--g500);
  transition: background .22s, transform .22s, box-shadow .22s;
  cursor: pointer; white-space: nowrap;
}
.btn-green:hover { background: var(--g400); border-color: var(--g400); transform: translateY(-2px); box-shadow: var(--shadow-green); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--g500);
  padding: .83rem 2rem; border-radius: var(--radius-btn);
  font-size: .88rem; font-weight: 700; letter-spacing: .02em;
  border: 2px solid var(--white);
  transition: background .22s, color .22s, transform .22s;
  cursor: pointer; white-space: nowrap;
}
.btn-white:hover { background: transparent; color: var(--white); transform: translateY(-2px); }

.btn-outline-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--g500);
  padding: .83rem 2rem; border-radius: var(--radius-btn);
  font-size: .88rem; font-weight: 700; letter-spacing: .02em;
  border: 2px solid var(--g500);
  transition: background .22s, color .22s, transform .22s;
  cursor: pointer; white-space: nowrap;
}
.btn-outline-green:hover { background: var(--g500); color: var(--white); transform: translateY(-2px); }

/* ==========================================================================
   HERO
   ========================================================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(26,144,80,.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-glow-left {
  position: absolute; top: -20%; left: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse, rgba(26,144,80,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-glow-right {
  position: absolute; bottom: 0; right: -5%;
  width: 50%; height: 70%;
  background: radial-gradient(ellipse, rgba(26,144,80,.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  flex: 1; display: flex; align-items: center;
  padding: 80px 0 40px;
}
.hero-content .wrap { width: 100%; }
.hero-inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.hero-text-col { max-width: 740px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,144,80,.15);
  border: 1px solid rgba(26,144,80,.35);
  border-radius: 100px; padding: .35rem 1rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--g400); margin-bottom: 1.5rem;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--g400); }

.hero-title {
  font-size: clamp(3rem, 6vw, 5.8rem); font-weight: 900;
  line-height: .95; letter-spacing: -.03em; color: var(--white);
}
.hero-title .line-accent {
  display: block;
  background: linear-gradient(90deg, var(--g400), #4DEBA0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  margin-top: 1.6rem; font-size: 1.05rem; font-weight: 400;
  line-height: 1.75; color: rgba(255,255,255,.6); max-width: 440px;
}
.hero-actions {
  margin-top: 2.2rem; display: flex; gap: .9rem; flex-wrap: wrap;
}

/* Hero Visual Column */
.hero-visual-col {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-visual-ring {
  position: relative; width: 340px; height: 340px;
}
.hero-ring-outer {
  position: absolute; inset: 0;
  border: 1px solid rgba(26,144,80,.15);
  border-radius: 50%;
  animation: ring-spin 30s linear infinite;
}
.hero-ring-mid {
  position: absolute; inset: 30px;
  border: 1px solid rgba(26,144,80,.25);
  border-radius: 50%;
  animation: ring-spin 20s linear infinite reverse;
}
.hero-ring-inner {
  position: absolute; inset: 60px;
  border: 2px solid rgba(26,144,80,.35);
  border-radius: 50%;
  animation: ring-spin 12s linear infinite;
}
.hero-ring-core {
  position: absolute; inset: 90px;
  background: rgba(26,144,80,.12);
  border: 1px solid rgba(26,144,80,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-ring-core svg { width: 60px; height: 60px; color: var(--g400); }
@keyframes ring-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Floating data points around ring */
.hero-float-badge {
  position: absolute;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: .75rem 1.1rem;
  white-space: nowrap;
}
.hero-float-badge strong {
  display: block; font-size: 1.3rem; font-weight: 800; color: var(--g400); line-height: 1;
}
.hero-float-badge span { font-size: .68rem; font-weight: 500; color: rgba(255,255,255,.5); margin-top: .15rem; display: block; }
.hero-float-badge.pos-tl { top: 0; left: -30px; }
.hero-float-badge.pos-tr { top: 20px; right: -40px; }
.hero-float-badge.pos-bl { bottom: 30px; left: -40px; }
.hero-float-badge.pos-br { bottom: 0; right: -30px; }

/* Hero Stats Strip (bottom of hero) */
.hero-stats-strip {
  position: relative; z-index: 3;
  padding: 0 0 50px;
}
.hero-stats-strip .wrap { width: 100%; }
.hero-stats-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hero-stat-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-card);
  padding: 1.4rem 1.6rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-stat-ico {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(26,144,80,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--g400); flex-shrink: 0;
}
.hero-stat-ico svg { width: 20px; height: 20px; }
.hero-stat-card strong {
  display: block; font-size: 1.55rem; font-weight: 800; color: var(--white); line-height: 1;
}
.hero-stat-card span {
  display: block; font-size: .7rem; font-weight: 500; color: rgba(255,255,255,.45); margin-top: .2rem;
}

/* ==========================================================================
   TICKER
   ========================================================================== */
.ticker-band { background: var(--g500); padding: .65rem 0; overflow: hidden; }
.tick { display: flex; animation: tick 36s linear infinite; white-space: nowrap; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tick-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 2rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.88);
}
.tick-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.4); flex-shrink: 0; }

/* ==========================================================================
   ABOUT SECTION (homepage)
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background: var(--white);
}
.about-img-block {
  position: relative;
}
.about-img-frame {
  border-radius: var(--radius-card);
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--g700), var(--dark));
  overflow: hidden; position: relative;
}
.about-img-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(26,144,80,.1) 1px, transparent 1px);
  background-size: 24px 24px;
}
.about-img-center {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: .35; color: var(--g400);
}
.about-img-center svg { width: 60%; }
.about-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(11,29,19,.95) 0%, transparent 100%);
  padding: 2rem 1.8rem 1.8rem;
}
.about-exp-badge {
  display: inline-flex; align-items: baseline; gap: 6px;
}
.about-exp-badge strong { font-size: 3rem; font-weight: 900; color: var(--g400); line-height: 1; }
.about-exp-badge span { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.6); letter-spacing: .06em; text-transform: uppercase; }

/* Cert pill badges — now rendered inline inside photo-frame, CSS kept for compatibility */
.about-cert-pill { display: none; }

/* About text col */
.about-text-col { padding-left: 20px; }
.about-facts-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 2rem;
}
.about-fact {
  background: var(--gray50);
  border-radius: 12px; padding: 1rem 1.1rem;
  display: flex; gap: 12px; align-items: flex-start;
}
.about-fact-ico {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--g100); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: var(--g500);
}
.about-fact-ico svg { width: 18px; height: 18px; }
.about-fact strong { display: block; font-size: .88rem; font-weight: 700; color: var(--gray900); }
.about-fact span { font-size: .76rem; color: var(--gray500); line-height: 1.4; }

/* ==========================================================================
   STATS BAND (diagonal)
   ========================================================================== */
.stats-band-wrap {
  position: relative;
  background: var(--g500);
  padding: 80px 0 90px;
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
  margin: -20px 0;
  z-index: 1;
}
.stats-band-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 60L60 0M-10 10L10-10M50 70L70 50' stroke='rgba(0,0,0,0.05)' stroke-width='1'/%3E%3C/svg%3E");
}
.stats-band-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.stat-item { padding: 10px 20px; position: relative; }
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,.2);
}
.stat-icon { margin-bottom: .7rem; }
.stat-icon svg { width: 32px; height: 32px; color: rgba(255,255,255,.7); }
.stat-item strong {
  display: block; font-size: 3.4rem; font-weight: 900; color: var(--white);
  line-height: 1; letter-spacing: -.03em;
}
.stat-item span {
  display: block; font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.65); margin-top: .4rem;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 110px 0 100px;
  background: var(--gray50);
}
.section-intro { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-intro .sdesc { margin: .9rem auto 0; }

/* Homepage service cards (3-up) */
.services-cards,
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.svc-card {
  background: var(--white);
  border-radius: 20px;
  padding: 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.svc-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.svc-card-top {
  height: 8px; background: var(--g500);
}
.svc-card-body { padding: 2rem 1.8rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.svc-num {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--g500); margin-bottom: 1rem;
}
.svc-icon-circle {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--g100);
  display: flex; align-items: center; justify-content: center;
  color: var(--g500); margin-bottom: 1.4rem;
}
.svc-icon-circle svg { width: 28px; height: 28px; }
.svc-card h3 {
  font-size: 1.2rem; font-weight: 800; letter-spacing: -.01em;
  color: var(--gray900); margin-bottom: .65rem; line-height: 1.25;
}
.svc-card p { font-size: .88rem; line-height: 1.7; color: var(--gray500); flex: 1; }
.svc-card-footer {
  margin-top: 1.6rem; padding-top: 1.2rem;
  border-top: 1px solid var(--gray200);
  display: flex; align-items: center; justify-content: space-between;
}
.svc-card-footer span { font-size: .78rem; font-weight: 700; color: var(--g500); letter-spacing: .04em; text-transform: uppercase; }
.svc-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--g100);
  display: flex; align-items: center; justify-content: center;
  color: var(--g500); transition: background .2s, color .2s, transform .2s;
}
.svc-card:hover .svc-arrow { background: var(--g500); color: var(--white); transform: translateX(4px); }
.svc-arrow svg { width: 16px; height: 16px; }

/* ==========================================================================
   WHY CHOOSE US / FEATURES
   ========================================================================== */
.features-section { padding: 100px 0; background: var(--white); }
.features-layout {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start;
}
.features-left { position: sticky; top: 100px; }
.features-list {
  display: flex; flex-direction: column; gap: 16px; margin-top: 0;
}
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 1.4rem; border-radius: var(--radius-card);
  background: var(--gray50);
  transition: background .25s, box-shadow .25s;
}
.feature-item:hover { background: var(--white); box-shadow: var(--shadow-md); }
.feat-ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--g100);
  display: flex; align-items: center; justify-content: center;
  color: var(--g500); flex-shrink: 0;
}
.feat-ico svg { width: 22px; height: 22px; }
.feat-body h4 { font-size: .95rem; font-weight: 700; color: var(--gray900); margin-bottom: .3rem; }
.feat-body p { font-size: .83rem; line-height: 1.6; color: var(--gray500); }

/* ==========================================================================
   VESSEL SECTION (dark)
   ========================================================================== */
.vessel-section { padding: 100px 0; background: var(--dark); }
.vessel-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.vessel-img-wrap { position: relative; }
.vessel-img-frame {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--g700), var(--dark2));
  position: relative;
}
.vessel-img-frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.vessel-img-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--g400); opacity: .5;
}
.vessel-img-fallback svg { width: 65%; }
.vessel-tag {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(11,29,19,.85); backdrop-filter: blur(8px);
  border-radius: 8px; padding: .5rem .9rem;
  border-left: 3px solid var(--g500);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--white);
}
.vessel-specs-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 1.8rem;
}
.spec-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 1rem;
  text-align: center;
}
.spec-box dt {
  font-size: .65rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .3rem;
}
.spec-box dd {
  font-size: 1.05rem; font-weight: 800; color: var(--white); letter-spacing: -.01em;
}
.vessel-text-col { padding-left: 10px; }
.checklist {
  list-style: none; display: flex; flex-direction: column;
  gap: .65rem; margin-top: 1.4rem;
}
/* Default: dark text (works on white/light backgrounds) */
.checklist li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--gray700); font-weight: 500;
}
/* Light variant: for use on dark section backgrounds */
.checklist.on-dark li { color: rgba(255,255,255,.72); }
.checklist li svg { width: 18px; height: 18px; color: var(--g500); flex-shrink: 0; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-section { padding: 100px 0; background: var(--g500); position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.cta-left h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--white); line-height: 1.15; letter-spacing: -.02em; margin-bottom: 1rem; }
.cta-left p { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,.78); margin-bottom: 1.8rem; }
.cta-btns { display: flex; gap: .9rem; flex-wrap: wrap; }
.cta-contacts { display: flex; flex-direction: column; gap: 10px; }
.cta-ci {
  display: flex; align-items: center; gap: 14px;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,.1); border-radius: 14px;
  transition: background .2s;
}
.cta-ci:hover { background: rgba(255,255,255,.18); }
.cta-ico {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); flex-shrink: 0;
}
.cta-ico svg { width: 19px; height: 19px; }
.cta-ct strong { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: .1rem; }
.cta-ct span { font-size: .88rem; font-weight: 500; color: var(--white); }

/* ==========================================================================
   PAGE HEADER (inner pages)
   ========================================================================== */
.pgh {
  background: var(--dark); position: relative;
  padding: 80px 0 90px; overflow: hidden;
}
.pgh-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(26,144,80,.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.pgh-glow {
  position: absolute; top: -30%; right: -10%;
  width: 60%; height: 120%;
  background: radial-gradient(ellipse, rgba(26,144,80,.1) 0%, transparent 60%);
  pointer-events: none;
}
.pgh-inner { position: relative; z-index: 2; max-width: 1300px; margin: 0 auto; padding: 0 36px; }
.pgh-crumb {
  display: flex; gap: .5rem; align-items: center;
  font-size: .73rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 1.2rem;
}
.pgh-crumb a { color: var(--g400); transition: color .2s; }
.pgh-crumb a:hover { color: var(--white); }
.pgh-crumb span { color: rgba(255,255,255,.25); }
.pgh h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 900;
  letter-spacing: -.03em; line-height: 1.05; color: var(--white);
}
.pgh h1 em { color: var(--g400); font-style: normal; }
.pgh-lead {
  margin-top: 1.2rem; font-size: 1rem; font-weight: 400;
  line-height: 1.75; color: rgba(255,255,255,.6); max-width: 640px;
}
.pgh-stats { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 12px; }
.pgh-stat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: .9rem 1.4rem;
}
.pgh-stat strong {
  display: block; font-size: 1.6rem; font-weight: 800;
  color: var(--g400); line-height: 1; letter-spacing: -.02em;
}
.pgh-stat span {
  display: block; font-size: .65rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: .2rem;
}

/* ==========================================================================
   GENERIC SECTIONS
   ========================================================================== */
.section-white  { padding: 90px 0; background: var(--white); }
.section-gray   { padding: 90px 0; background: var(--gray50); }
.section-dark   { padding: 90px 0; background: var(--dark); }
.section-green  { padding: 90px 0; background: var(--g500); }

/* Section heading block */
.shead { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 50px; }
.shead-left { max-width: 600px; }

/* Generic card (white bg, rounded) */
.card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.8rem;
  transition: box-shadow .3s, transform .3s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-dark {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-card);
  padding: 2rem 1.8rem;
  transition: border-color .3s;
}
.card-dark:hover { border-color: rgba(26,144,80,.4); }

/* Icon box */
.ico-box {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--g100);
  display: flex; align-items: center; justify-content: center;
  color: var(--g500); margin-bottom: 1.1rem;
}
.ico-box svg { width: 22px; height: 22px; }
.ico-box.dark { background: rgba(26,144,80,.15); color: var(--g400); }
.ico-box.circle { border-radius: 50%; }

/* Feature grid */
.feat-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feat-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.feat-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.8rem;
  transition: box-shadow .3s, transform .3s;
}
.feat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feat-card h3 { font-size: 1rem; font-weight: 700; color: var(--gray900); margin-bottom: .5rem; line-height: 1.3; }
.feat-card p { font-size: .85rem; line-height: 1.65; color: var(--gray500); }
.feat-card.dark-variant { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); }
.feat-card.dark-variant h3 { color: var(--white); }
.feat-card.dark-variant p { color: rgba(255,255,255,.55); }

/* Split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-3-2 { grid-template-columns: 3fr 2fr; }
.split-2-3 { grid-template-columns: 2fr 3fr; }

/* Prose text */
.prose p { font-size: .95rem; line-height: 1.85; color: var(--gray500); margin-top: 1rem; }
.prose p:first-child { margin-top: 0; }
.prose.light p { color: rgba(255,255,255,.65); }

/* Blockquote */
.bq {
  margin-top: 1.6rem; padding: 1.3rem 1.5rem;
  background: var(--g050); border-left: 4px solid var(--g500);
  border-radius: 0 12px 12px 0;
}
.bq p { font-size: .95rem; font-style: italic; line-height: 1.7; color: var(--g600); font-weight: 500; }
.bq cite { display: block; margin-top: .5rem; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--g500); font-style: normal; }

/* Cert / value cards */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cert-card {
  background: var(--white); border-radius: var(--radius-card);
  box-shadow: var(--shadow-xs);
  padding: 1.4rem; display: flex; gap: 12px; align-items: flex-start;
  transition: box-shadow .3s, transform .3s;
}
.cert-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cert-ico { width: 40px; height: 40px; border-radius: 10px; background: var(--g100); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--g500); }
.cert-ico svg { width: 18px; height: 18px; }
.cert-card strong { display: block; font-size: .9rem; font-weight: 700; color: var(--gray900); margin-bottom: .2rem; }
.cert-card span { font-size: .79rem; color: var(--gray500); line-height: 1.45; }

/* Mission/Vision */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mv-card { border-radius: var(--radius-card); padding: 2.2rem; }
.mv-card.green-bg { background: var(--g500); }
.mv-card.white-bg { background: var(--white); box-shadow: var(--shadow-md); }
.mv-card.gray-bg { background: var(--gray50); }
.mv-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: .9rem; color: var(--gray900); }
.mv-card.green-bg h3 { color: var(--white); }
.mv-card p { font-size: .95rem; line-height: 1.75; color: var(--gray500); }
.mv-card.green-bg p { color: rgba(255,255,255,.82); }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.value-card {
  background: var(--white); border-radius: var(--radius-card);
  box-shadow: var(--shadow-xs); padding: 1.8rem;
  position: relative; overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.value-num {
  position: absolute; top: -8px; right: 14px;
  font-size: 5rem; font-weight: 900; color: var(--g050); line-height: 1;
  pointer-events: none; letter-spacing: -.04em;
}
.value-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--g100); display: flex; align-items: center; justify-content: center; color: var(--g500); margin-bottom: 1rem; position: relative; z-index: 1; }
.value-ico svg { width: 20px; height: 20px; }
.value-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray900); margin-bottom: .5rem; position: relative; z-index: 1; }
.value-card p { font-size: .85rem; line-height: 1.65; color: var(--gray500); position: relative; z-index: 1; }

/* Timeline */
.timeline { position: relative; padding: 1rem 0; margin-top: 40px; }
.timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--gray200); transform: translateX(-50%); }
.tl-item { display: grid; grid-template-columns: 1fr 80px 1fr; gap: 0; margin-bottom: 36px; align-items: center; }
.tl-dot {
  width: 20px; height: 20px; background: var(--g500); border-radius: 50%;
  border: 4px solid var(--white); box-shadow: 0 0 0 3px var(--g500), 0 0 0 7px rgba(26,144,80,.12);
  margin: 0 auto; position: relative; z-index: 2;
}
.tl-content {
  background: var(--white); border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm); padding: 1.4rem 1.6rem;
}
.tl-content.left { text-align: right; }
.tl-year { font-size: 1.6rem; font-weight: 900; color: var(--g500); line-height: 1; margin-bottom: .3rem; letter-spacing: -.02em; }
.tl-title { font-size: .95rem; font-weight: 700; color: var(--gray900); margin-bottom: .4rem; }
.tl-desc { font-size: .83rem; line-height: 1.6; color: var(--gray500); }
.tl-spacer { display: block; }

/* Team cards */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.team-card {
  background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-sm);
  overflow: hidden; display: grid; grid-template-columns: 160px 1fr;
  transition: box-shadow .3s, transform .3s;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.team-photo { background: linear-gradient(145deg, var(--dark), var(--g700)); position: relative; overflow: hidden; min-height: 200px; display: flex; align-items: flex-end; justify-content: center; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-photo svg { width: 55%; height: auto; opacity: .3; color: var(--g400); margin-bottom: 0; position: absolute; bottom: 0; }
.team-body { padding: 1.5rem; }
.team-role { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--g500); margin-bottom: .25rem; }
.team-name { font-size: 1.1rem; font-weight: 800; color: var(--gray900); margin-bottom: .55rem; line-height: 1.2; }
.team-bio { font-size: .82rem; line-height: 1.65; color: var(--gray500); }
.team-meta { margin-top: .8rem; padding-top: .65rem; border-top: 1px solid var(--gray200); display: flex; flex-wrap: wrap; gap: .4rem; }
.team-tag { font-size: .65rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gray500); background: var(--gray100); border-radius: 100px; padding: .2rem .6rem; }

/* Service row list */
.svc-row-list { display: flex; flex-direction: column; gap: 12px; }
.svc-row-item {
  display: grid; grid-template-columns: 60px 1fr;
  background: var(--white); border-radius: var(--radius-card);
  box-shadow: var(--shadow-xs); padding: 1.5rem 1.6rem; gap: 0;
  transition: box-shadow .3s, transform .3s;
}
.svc-row-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.svc-row-ico { color: var(--g500); display: flex; align-items: flex-start; padding-top: 4px; }
.svc-row-ico svg { width: 26px; height: 26px; }
.svc-row-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray900); margin-bottom: .4rem; }
.svc-row-item p { font-size: .86rem; line-height: 1.65; color: var(--gray500); }

/* Step/delivery cards */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card {
  background: var(--white); border-radius: var(--radius-card);
  box-shadow: var(--shadow-xs); padding: 1.8rem 1.5rem;
  position: relative; overflow: hidden;
}
.step-num { font-size: 4rem; font-weight: 900; color: var(--g050); line-height: 1; margin-bottom: .3rem; letter-spacing: -.04em; }
.step-card h3 { font-size: .95rem; font-weight: 700; color: var(--gray900); margin-bottom: .4rem; }
.step-card p { font-size: .82rem; line-height: 1.6; color: var(--gray500); }

/* Vessel spec table */
.vessel-spec-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-top: 20px;
}
.spec-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 1rem 1.1rem; }
.spec-card dt { font-size: .63rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: .25rem; }
.spec-card dd { font-size: 1rem; font-weight: 700; color: var(--white); }

/* Contact form */
.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.cform-card { background: var(--white); border-radius: 20px; box-shadow: var(--shadow-lg); padding: 2.4rem 2.6rem; }
.cform-card h2 { font-size: 1.6rem; font-weight: 800; color: var(--gray900); margin-bottom: .3rem; letter-spacing: -.02em; }
.cform-sub { font-size: .88rem; color: var(--gray500); line-height: 1.6; margin-bottom: 1.8rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.cf-row.full { grid-template-columns: 1fr; }
.cf-field { display: flex; flex-direction: column; }
.cf-field label { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gray700); margin-bottom: .4rem; }
.cf-field input, .cf-field select, .cf-field textarea {
  background: var(--gray50); border: 1.5px solid var(--gray200);
  border-radius: 10px; padding: .8rem 1rem;
  color: var(--gray900); font-family: var(--font); font-size: .9rem;
  outline: none; transition: border-color .2s, background .2s; width: 100%;
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  border-color: var(--g500); background: var(--white);
}
.cf-field textarea { min-height: 120px; resize: vertical; }
.cf-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A9486' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; background-size: 16px; padding-right: 32px; }
.cf-field .req::after { content: ' *'; color: var(--g500); }
.cf-submit {
  margin-top: 4px; padding: .9rem 2rem;
  background: var(--g500); color: var(--white);
  border-radius: var(--radius-btn); font-family: var(--font);
  font-size: .88rem; font-weight: 700; border: none;
  cursor: pointer; transition: background .2s, transform .2s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.cf-submit:hover { background: var(--g400); transform: translateY(-2px); box-shadow: var(--shadow-green); }
.cf-submit svg { width: 16px; height: 16px; }
.cf-ack {
  display: none; margin-top: 1.2rem; padding: 1rem 1.2rem;
  background: var(--g050); border: 1.5px solid var(--g500); border-radius: 12px;
  color: var(--g600); font-size: .88rem; line-height: 1.6;
}
.cf-ack.show { display: block; }

.contact-side { display: flex; flex-direction: column; gap: 12px; }
.cside-card { background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-xs); padding: 1.3rem 1.5rem; transition: box-shadow .3s, transform .3s; }
.cside-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cside-card.green-card { background: var(--g500); }
.cs-ico { width: 40px; height: 40px; border-radius: 10px; background: var(--g100); display: flex; align-items: center; justify-content: center; color: var(--g500); margin-bottom: .8rem; }
.cside-card.green-card .cs-ico { background: rgba(255,255,255,.15); color: var(--white); }
.cs-ico svg { width: 18px; height: 18px; }
.cside-card h3 { font-size: .95rem; font-weight: 700; color: var(--gray900); margin-bottom: .25rem; }
.cside-card.green-card h3 { color: var(--white); }
.cside-card p { font-size: .85rem; line-height: 1.55; color: var(--gray500); }
.cside-card.green-card p { color: rgba(255,255,255,.82); }
.cside-card a { color: var(--g500); }
.cside-card.green-card a { color: rgba(255,255,255,.9); }

/* Map */
.map-block { margin-top: 48px; border-radius: 20px; background: #081510; aspect-ratio: 21/8; overflow: hidden; position: relative; box-shadow: var(--shadow-md); }
.map-block svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin { position: absolute; top: 42%; left: 48%; z-index: 5; display: flex; flex-direction: column; align-items: center; }
.map-pin-marker { width: 30px; height: 30px; background: var(--g500); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 0 0 6px rgba(26,144,80,.2), 0 0 0 12px rgba(26,144,80,.08); }
.map-pin-marker::after { content: ''; position: absolute; top: 50%; left: 50%; width: 10px; height: 10px; background: var(--white); border-radius: 50%; transform: translate(-50%,-50%); }
.map-pin-label { margin-top: 14px; background: rgba(0,0,0,.8); padding: .4rem .85rem; border-left: 3px solid var(--g500); border-radius: 0 6px 6px 0; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); white-space: nowrap; }
.map-tag { position: absolute; top: 18px; left: 18px; z-index: 5; background: rgba(0,0,0,.8); padding: .4rem .85rem; border-left: 3px solid var(--g500); border-radius: 0 6px 6px 0; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--white); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--dark2);
  border-top: 4px solid var(--g500);
  padding: 70px 0 36px;
}
.footer-grid { display: grid; grid-template-columns: 260px 1fr 1fr 1.2fr; gap: 50px; margin-bottom: 50px; }
.flogo { display: block; margin-bottom: 1rem; }
.flogo-img { height: 46px; width: auto; object-fit: contain; }
.footer-brand p { font-size: .83rem; line-height: 1.75; color: var(--gray500); }
.footer-socials { display: flex; gap: .5rem; margin-top: 1.3rem; }
.footer-socials a {
  width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; border: 1px solid rgba(255,255,255,.1); color: var(--gray500);
  transition: all .2s;
}
.footer-socials a:hover { border-color: var(--g500); color: var(--g400); background: rgba(26,144,80,.1); }
.footer-socials svg { width: 15px; height: 15px; }
.fcol h4 { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--g400); margin-bottom: 1rem; }
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.fcol ul a { font-size: .85rem; font-weight: 500; color: var(--gray500); transition: color .2s; display: flex; align-items: center; gap: 6px; }
.fcol ul a::before { content: '→'; color: var(--g500); font-size: .8em; }
.fcol ul a:hover { color: var(--white); }
.fcontact-item { display: flex; gap: 10px; margin-bottom: .85rem; align-items: flex-start; }
.fcontact-ico { color: var(--g500); flex-shrink: 0; margin-top: 3px; }
.fcontact-ico svg { width: 15px; height: 15px; }
.fcontact-item p { font-size: .83rem; color: var(--gray500); line-height: 1.6; }
.footer-bottom { padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .8rem; }
.footer-bottom p { font-size: .76rem; color: var(--gray500); }
.fver { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--g400); }
.fver a { color: var(--g400); border-bottom: 1px solid rgba(26,144,80,.3); transition: color .2s; }
.fver a:hover { color: var(--white); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media(max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media(max-width: 1100px) {
  .hero-inner-grid { grid-template-columns: 1fr; }
  .hero-visual-col { display: none; }
  .hero-stats-cards { grid-template-columns: repeat(2, 1fr); }
  .split, .split-3-2, .split-2-3 { grid-template-columns: 1fr; gap: 50px; }
  .vessel-grid { grid-template-columns: 1fr; gap: 50px; }
  .cta-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .feat-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .features-layout { grid-template-columns: 1fr; gap: 40px; }
  .features-left { position: static; }
}
@media(max-width: 900px) {
  .nav-links { display: none; }
  .hbg { display: flex; }
  #nav { height: 72px; }
  :root { --nav-h: 72px; }
  .services-cards { grid-template-columns: 1fr; }
  .feat-grid-3 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; }
  .team-photo { aspect-ratio: 4/3; min-height: auto; }
  .vessel-specs-row { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .tl-item { display: grid; grid-template-columns: 32px 1fr; gap: .7rem; margin-bottom: 20px; align-items: flex-start; }
  .tl-spacer { display: none; }
  .timeline::before { left: 12px; }
  .tl-dot { order: 1; grid-column: 1; grid-row: 1; margin: 10px 0 0; width: 18px; height: 18px; border-width: 3px; }
  .tl-content, .tl-content.left { order: 2; grid-column: 2; text-align: left; padding: 1.1rem; }
  .map-block { aspect-ratio: 4/3; }
  .pgh-stats { gap: 10px; }
}
@media(max-width: 720px) {
  .wrap, .wrap-narrow { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .topbar-inner { padding: 0 20px; }
  .pgh-inner { padding: 0 20px; }
  .hero-stats-cards { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .feat-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cf-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: flex-start; }
  .steps-grid { grid-template-columns: 1fr; }
  .vessel-spec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 600px) {
  .wrap, .wrap-narrow { padding: 0 16px; }
  .section-white, .section-gray, .section-dark, .section-green { padding: 65px 0; }
  .hero-content { padding: 60px 0 30px; }
  .hero-title { font-size: clamp(2.6rem, 12vw, 4rem); }
  .stats-band-wrap { clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%); padding: 60px 0; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .5rem; }
  .svc-row-item { grid-template-columns: 1fr; }
  .svc-row-ico { display: none; }
  .pgh { padding: 60px 0 70px; }
  .pgh h1 { font-size: clamp(2rem, 8vw, 3rem); }
}
@media(max-width: 400px) {
  .wrap, .wrap-narrow { padding: 0 12px; }
  .pgh-inner, .nav-inner, .topbar-inner { padding: 0 14px; }
  .hero-inner-grid { gap: 30px; }
}

/* Mission/Vision responsive fix */
@media(max-width: 700px) {
  .mv-responsive { grid-template-columns: 1fr !important; }
  .mv-divider-v { display: none !important; }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE & TABLET OPTIMIZATIONS
   ========================================================================== */

/* ── TABLET LANDSCAPE (1024px) ────────────────────────── */
@media(max-width: 1024px) {
  /* Services: 3-col → 2-col on tablet before hitting 1-col at 900px */
  .services-cards,
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Hero stats: 4 cards → 2x2 */
  .hero-stats-cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Feature items: reduce gap */
  .features-list { gap: 12px; }

  /* Pillar rows on services page */
  .pillar-content { padding: 2.4rem 2.2rem; }
}

/* ── TABLET PORTRAIT (768px) ─────────────────────────── */
@media(max-width: 768px) {
  /* Hero — remove full-viewport height on tablet */
  #hero { min-height: auto; }
  .hero-content { padding: 56px 0 24px; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.6rem); line-height: 1.0; letter-spacing: -.03em; }
  .hero-sub { font-size: .96rem; max-width: 100%; }
  .hero-actions { gap: .8rem; }
  .hero-actions .btn-green,
  .hero-actions .btn-white { flex: 1 1 auto; justify-content: center; text-align: center; }
  .hero-stats-strip { padding: 0 0 40px; }
  .hero-stats-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-stat-card { padding: 1rem 1.1rem; }
  .hero-stat-card strong { font-size: 1.4rem; }
  .hero-stat-ico { width: 38px; height: 38px; }

  /* Stats band: flatten diagonal on tablet */
  .stats-band-wrap {
    clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
    padding: 70px 0;
    margin: -10px 0;
  }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item strong { font-size: 2.8rem; }

  /* About section (homepage): hide tall image on small tablet, show just text */
  .about-section { padding: 60px 0; }
  .about-img-block { max-height: 340px; overflow: hidden; border-radius: 16px; }
  .about-facts-grid { grid-template-columns: 1fr; gap: 10px; }
  .about-text-col { padding-left: 0; }

  /* Services cards: 2-col → 1-col */
  .services-cards,
  .services-grid { grid-template-columns: 1fr; }
  .services-section { padding: 70px 0; }

  /* Why us / features */
  .feature-item { padding: 1.2rem; }
  .feat-body h4 { font-size: .92rem; }

  /* Vessel section */
  .vessel-section { padding: 60px 0; }
  .vessel-img-wrap { margin-bottom: -10px; }
  .vessel-specs-row { grid-template-columns: repeat(3, 1fr); }

  /* CTA */
  .cta-section { padding: 70px 0; }
  .cta-left h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
  .cta-btns { flex-direction: column; gap: .75rem; }
  .cta-btns a { width: 100%; justify-content: center; text-align: center; }

  /* Page headers */
  .pgh { padding: 52px 0 64px; }
  .pgh h1 { font-size: clamp(1.9rem, 6vw, 3.2rem); letter-spacing: -.025em; }
  .pgh-lead { font-size: .95rem; }
  .pgh-stats {
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 1.8rem;
    padding-top: 1.4rem;
  }
  .pgh-stat {
    flex: 0 0 auto;
    border-right: none !important;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    padding: .65rem 1rem;
  }
  .pgh-stat strong { font-size: 1.4rem; }
  .pgh-stat span { font-size: .58rem; }

  /* Cert grid */
  .cert-grid { grid-template-columns: 1fr; }

  /* Team cards */
  .team-card { grid-template-columns: 140px 1fr; }
  .team-photo { min-height: 160px; }

  /* Photo frame: hide overflowing badge on tablet */
  .photo-frame-badge { width: auto; padding: .6rem .9rem; }
  .photo-frame-badge strong { font-size: 1.3rem; }

  /* Section titles */
  .stitle { font-size: clamp(1.7rem, 5vw, 2.6rem); }
  .sdesc { font-size: .94rem; }

  /* Ticker */
  .tick-item { padding: 0 1.4rem; font-size: .74rem; }

  /* Nav height on tablet */
  #nav { height: 66px; }
  :root { --nav-h: 66px; }
  .logo-img { height: 40px; }
}

/* ── MOBILE (520px) ──────────────────────────────────── */
@media(max-width: 520px) {
  /* Hero */
  .hero-content { padding: 44px 0 20px; }
  .hero-badge { font-size: .64rem; padding: .28rem .9rem; }
  .hero-title { font-size: clamp(2rem, 10.5vw, 2.8rem); }
  .hero-sub { font-size: .88rem; }
  .hero-stats-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-stat-card { padding: .85rem .9rem; border-radius: 12px; }
  .hero-stat-card strong { font-size: 1.25rem; }
  .hero-stat-card span { font-size: .62rem; }
  .hero-stat-ico { width: 34px; height: 34px; border-radius: 8px; }
  .hero-stat-ico svg { width: 16px; height: 16px; }
  .hero-stats-strip { padding: 0 0 32px; }

  /* Stats band — flat on mobile */
  .stats-band-wrap { clip-path: none; padding: 52px 0; margin: 0; }
  .stat-item strong { font-size: 2.5rem; }
  .stat-item span { font-size: .7rem; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,.12); padding: 1.2rem; }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }

  /* About section */
  .about-img-block { display: none; } /* full-hide image on small mobile, text-only */
  .about-text-col { padding-left: 0; }
  .about-facts-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Vessel section */
  .vessel-specs-row { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .spec-box { padding: .75rem .6rem; }
  .spec-box dd { font-size: .9rem; }
  .spec-box dt { font-size: .58rem; }

  /* Services section */
  .svc-card-body { padding: 1.5rem 1.3rem; }
  .svc-icon-circle { width: 52px; height: 52px; margin-bottom: 1rem; }
  .svc-icon-circle svg { width: 22px; height: 22px; }

  /* Feature items */
  .feature-item { padding: 1rem 1.1rem; gap: 12px; }
  .feat-ico { width: 42px; height: 42px; border-radius: 10px; }
  .feat-ico svg { width: 18px; height: 18px; }

  /* Divider accent */
  .divider-accent { width: 36px; }

  /* Photo frame badge */
  .photo-frame-badge { display: none; }

  /* CTA contacts */
  .cta-ci { padding: .85rem 1rem; gap: 11px; }
  .cta-ico { width: 36px; height: 36px; border-radius: 8px; }
  .cta-ct strong { font-size: .62rem; }
  .cta-ct span { font-size: .84rem; }

  /* Footer */
  .flogo-img { height: 42px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Nav */
  #nav { height: 62px; }
  :root { --nav-h: 62px; }
  .logo-img { height: 36px; }

  /* Page headers */
  .pgh { padding: 46px 0 56px; }
  .pgh h1 { font-size: clamp(1.75rem, 8vw, 2.6rem); line-height: 1.05; }
  .pgh-lead { font-size: .9rem; line-height: 1.65; margin-top: 1rem; }
  .pgh-stats { gap: 6px; margin-top: 1.4rem; }
  .pgh-stat { padding: .55rem .85rem; }
  .pgh-stat strong { font-size: 1.2rem; }

  /* Topbar — hide on mobile */
  .topbar { display: none; }

  /* Timeline */
  .tl-year { font-size: 1.5rem; }
  .tl-title { font-size: .88rem; }
  .tl-desc { font-size: .8rem; }

  /* Team */
  .team-card { grid-template-columns: 1fr; }
  .team-photo { aspect-ratio: 16/9; min-height: 180px; }
  .team-body { padding: 1.2rem; }

  /* Cert grid */
  .cert-grid { grid-template-columns: 1fr; }
  .cert-card { padding: 1.2rem; }

  /* Value cards */
  .value-card { padding: 1.5rem; }
  .value-num { font-size: 4rem; right: 10px; }

  /* Buttons */
  .btn-green, .btn-white, .btn-outline-green {
    padding: .82rem 1.6rem; font-size: .84rem;
  }
  .hero-actions .btn-green,
  .hero-actions .btn-white { padding: .88rem 1.4rem; }

  /* Section padding */
  .section-white, .section-gray, .section-dark, .section-green { padding: 56px 0; }
}

/* ── SMALL MOBILE (380px) ────────────────────────────── */
@media(max-width: 380px) {
  .hero-title { font-size: clamp(1.85rem, 11.5vw, 2.4rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-green,
  .hero-actions .btn-white { width: 100%; justify-content: center; }
  .hero-stats-cards { grid-template-columns: 1fr; gap: 8px; }
  .hero-stat-card { flex-direction: row; align-items: center; gap: .8rem; }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .about-facts-grid { grid-template-columns: 1fr; }
  .pgh h1 { font-size: 1.7rem; }
  .pgh-stats { flex-wrap: wrap; }
  .stitle { font-size: clamp(1.5rem, 8vw, 2rem); }
  .wrap, .wrap-narrow { padding: 0 14px; }
  .section-white, .section-gray, .section-dark, .section-green { padding: 48px 0; }
  .cta-btns a { width: 100%; }
  .ticker-band { display: none; } /* hide scrolling ticker on very small mobile */
  .svc-category-card { padding: 1.5rem 1.3rem; }
  .feat-grid-3 { gap: 12px; }
}

/* ==========================================================================
   COMPATIBILITY PATCHES — classes used by inner pages
   ========================================================================== */

/* Divider accent bar */
.divider-accent {
  width: 48px; height: 4px;
  background: var(--g500);
  border-radius: 100px;
  margin: 1rem 0;
}

/* vframe — vessel image frame used on inner pages */
.vframe {
  position: relative; overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--dark), var(--g700));
}
.vframe img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vframe-tag {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(9,21,16,.85);
  backdrop-filter: blur(8px);
  border-radius: 6px; padding: .45rem .85rem;
  border-left: 3px solid var(--g500);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--white); z-index: 2;
}

/* spec-cell — vessel spec table cells on inner pages */
.vessel-specs {
  display: grid; gap: 1px;
  background: var(--gray200);
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--gray200);
  margin-top: 20px;
}
.spec-cell {
  background: var(--white);
  padding: 1rem 1.2rem;
}
.spec-cell dt {
  font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray500); margin-bottom: .2rem;
}
.spec-cell dd { font-size: 1rem; font-weight: 700; color: var(--gray900); }

/* section-white/section-gray/section-dark base padding */
.section-white, .section-gray, .section-dark, .section-green {
  padding: 90px 0;
}

/* .section generic fallback — for "section section-X" patterns */
.section { padding: 90px 0; }

/* svc-category-card used on services.html */
.svc-category-card {
  display: flex; flex-direction: column;
  background: var(--white); border-radius: 20px;
  box-shadow: var(--shadow-sm); padding: 2rem 1.8rem;
  text-decoration: none; color: inherit;
  transition: box-shadow .3s, transform .3s;
  position: relative; overflow: hidden;
}
.svc-category-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 5px;
  background: var(--g500); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.svc-category-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-5px); }
.svc-category-card:hover::before { transform: scaleX(1); }
.svc-cat-tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--g500); margin-bottom: 1rem;
}
.svc-cat-ico {
  width: 64px; height: 64px; border-radius: 14px;
  background: var(--g100);
  display: flex; align-items: center; justify-content: center;
  color: var(--g500); margin-bottom: 1.3rem;
}
.svc-cat-ico svg { width: 28px; height: 28px; }
.svc-category-card h3 {
  font-size: 1.2rem; font-weight: 800; color: var(--gray900);
  margin-bottom: .6rem; line-height: 1.2; letter-spacing: -.01em;
}
.svc-category-card p { font-size: .88rem; line-height: 1.7; color: var(--gray500); flex: 1; }
.svc-cat-list {
  list-style: none; margin: 1rem 0;
  display: flex; flex-direction: column; gap: .3rem;
}
.svc-cat-list li {
  display: flex; align-items: center; gap: 7px;
  font-size: .83rem; color: var(--gray500);
}
.svc-cat-list li svg { width: 13px; height: 13px; color: var(--g500); flex-shrink: 0; }
.svc-cat-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto; padding-top: 1rem;
  border-top: 1px solid var(--gray200);
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--g500); transition: gap .2s;
}
.svc-category-card:hover .svc-cat-link { gap: 14px; }

/* contact-grid used on contact.html */
.contact-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: start;
}
@media(max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* cform-wrap alias for contact page */
.cform-wrap {
  background: var(--white); border-radius: 20px;
  box-shadow: var(--shadow-lg); padding: 2.4rem 2.6rem;
}
.cform-wrap h2 {
  font-size: 1.6rem; font-weight: 800; color: var(--gray900);
  margin-bottom: .3rem; letter-spacing: -.02em;
}
.cform-sub {
  font-size: .88rem; color: var(--gray500); margin-bottom: 1.8rem; line-height: 1.6;
}

/* about-img-inner / badge-strip — used on about.html */
.about-img-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: .35; color: var(--g400);
}
.about-img-inner svg { width: 60%; }
.about-badge-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--g500); padding: 1.1rem 1.5rem;
  display: flex; gap: 1.5rem; align-items: center;
}
.badge-stat strong {
  display: block; font-size: 1.8rem; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -.02em;
}
.badge-stat span {
  display: block; font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.72); margin-top: .15rem;
}
.badge-div { width: 1px; height: 38px; background: rgba(255,255,255,.2); }

/* shead-left used on services/inner pages */
.shead { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 48px; }
.shead-left { max-width: 600px; }

/* steps grid on services.html */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 48px;
}
.step-card {
  background: var(--white); border-radius: var(--radius-card);
  box-shadow: var(--shadow-xs); padding: 1.8rem 1.5rem;
}
.step-num {
  font-size: 3.5rem; font-weight: 900; color: var(--g050);
  line-height: 1; margin-bottom: .4rem; letter-spacing: -.04em;
}
.step-card h3 { font-size: .95rem; font-weight: 700; color: var(--gray900); margin-bottom: .4rem; }
.step-card p { font-size: .82rem; line-height: 1.6; color: var(--gray500); }

/* feat-grid responsive for inner pages */
@media(max-width: 900px) {
  .feat-grid-3 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .vessel-specs { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .vessel-specs { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cform-wrap { padding: 1.8rem 1.4rem; }
  .cf-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PHOTO HERO & IMAGE UTILITIES
   ========================================================================== */

/* Full-bleed photo background for hero section */
.hero-photo-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-photo-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(9,21,16,.95) 0%,
    rgba(9,21,16,.82) 40%,
    rgba(9,21,16,.45) 75%,
    rgba(9,21,16,.25) 100%
  );
}
/* Ensure hero content sits above photo */
#hero .hero-bg-pattern,
#hero .hero-glow-left,
#hero .hero-glow-right { z-index: 2; }
#hero .hero-content,
#hero .hero-stats-strip { position: relative; z-index: 3; }

/* Photo frame — for about / split sections */
.photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.photo-frame-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,21,16,.7) 0%, transparent 50%);
}
.photo-frame-tag {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(9,21,16,.85);
  backdrop-filter: blur(8px);
  border-radius: 8px; padding: .5rem 1rem;
  border-left: 3px solid var(--g500);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--white); z-index: 2;
}
.photo-frame-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--g500); color: var(--white);
  border-radius: 10px; padding: .8rem 1.1rem;
  text-align: center; z-index: 2;
  box-shadow: 0 4px 16px rgba(26,144,80,.4);
}
.photo-frame-badge strong {
  display: block; font-size: 1.6rem; font-weight: 900;
  line-height: 1; letter-spacing: -.02em;
}
.photo-frame-badge span {
  display: block; font-size: .62rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  opacity: .85; margin-top: .15rem;
}

/* Section with photo background */
.photo-bg-section {
  position: relative; overflow: hidden;
}
.photo-bg-section .photo-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.photo-bg-section .photo-bg-overlay {
  position: absolute; inset: 0;
  background: rgba(9,21,16,.82); z-index: 1;
}
.photo-bg-section > .wrap { position: relative; z-index: 2; }

/* Page header with photo background */
.pgh-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 45%;
  z-index: 0; opacity: .35;
  filter: saturate(.8);
}
.pgh-pattern, .pgh-glow { z-index: 1; }
.pgh-inner { z-index: 2 !important; }

/* Image placeholder — for future photos */
.img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: var(--gray100);
  border: 2px dashed var(--gray200);
  border-radius: var(--radius-card);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: var(--gray500); min-height: 200px;
}
.img-placeholder svg { width: 36px; height: 36px; opacity: .4; }
.img-placeholder span {
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; opacity: .55;
}
/* Team photo placeholder */
.team-photo-placeholder {
  width: 100%; height: 100%; min-height: 220px;
  background: linear-gradient(145deg, var(--dark), var(--g700));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  color: rgba(255,255,255,.3); position: relative;
}
.team-photo-placeholder svg { width: 44px; height: 44px; opacity: .25; }
.team-photo-placeholder span {
  font-size: .65rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; opacity: .35;
}

