:root {
  --bg: #020702;
  --panel: #071107;
  --panel-2: #0b170b;
  --green: #77ff42;
  --green-soft: #b2ff8f;
  --gold: #e7b73c;
  --cream: #e8ead8;
  --muted: #94a88c;
  --line: rgba(119,255,66,.28);
  --gold-line: rgba(231,183,60,.5);
  --shadow: 0 0 22px rgba(119,255,66,.08);
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --display: "Barlow Condensed", Impact, sans-serif;
}

/* Opening visual */
.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(20,75,20,.24), transparent 44%),
    #010501;
  transition: opacity .8s ease, visibility .8s ease;
}
.intro-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.intro-grid {
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(rgba(119,255,66,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119,255,66,.08) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(700px) rotateX(62deg) translateY(28%);
  transform-origin: center bottom;
  animation: gridDrift 5s linear infinite;
}
.intro-globe-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.intro-globe {
  position: relative;
  width: min(46vw, 520px);
  aspect-ratio: 1;
  border: 2px solid rgba(119,255,66,.9);
  border-radius: 50%;
  box-shadow:
    0 0 26px rgba(119,255,66,.36),
    inset 0 0 42px rgba(119,255,66,.12);
  animation: globeFloat 3s ease-in-out infinite;
}
.globe-lat,
.globe-lon {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(119,255,66,.42);
  border-radius: 50%;
}
.lat-1 { transform: scaleY(.28); }
.lat-2 { transform: scaleY(.58); }
.lat-3 { transform: scaleY(.82); }
.lon-1 { transform: rotateY(66deg); }
.lon-2 { transform: rotateY(38deg); }
.lon-3 { transform: rotateY(78deg) rotateZ(90deg); }

.route {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--gold), var(--green), transparent);
  box-shadow: 0 0 10px var(--green);
  opacity: 0;
  animation: routePulse 2.4s ease-in-out infinite;
}
.route-1 { transform: rotate(-18deg); animation-delay: .2s; }
.route-2 { transform: rotate(28deg); animation-delay: .75s; }
.route-3 { transform: rotate(148deg); animation-delay: 1.2s; }
.origin-ping {
  position: absolute;
  left: 31%;
  top: 62%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}
.origin-ping::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: ping 1.8s ease-out infinite;
}
.intro-copy {
  position: relative;
  z-index: 2;
  width: min(800px, calc(100% - 32px));
  text-align: center;
  transform: translateY(30vh);
}
.intro-kicker,
.intro-log,
.intro-wordmark {
  text-transform: uppercase;
  letter-spacing: .12em;
}
.intro-kicker {
  color: var(--gold);
  font-size: .85rem;
  margin-bottom: .7rem;
}
.intro-log {
  display: grid;
  gap: .2rem;
  color: var(--green);
  font-size: .72rem;
}
.intro-log span {
  opacity: 0;
  animation: logReveal .5s ease forwards;
}
.intro-log span:nth-child(2) { animation-delay: .45s; }
.intro-log span:nth-child(3) { animation-delay: .9s; }
.intro-wordmark {
  margin-top: .8rem;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4.8rem);
  color: var(--green-soft);
  text-shadow: 0 0 18px rgba(119,255,66,.35);
  opacity: 0;
  animation: wordmarkReveal .7s ease 1.2s forwards;
}
.intro-skip {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  border: 1px solid var(--line);
  background: rgba(2,7,2,.7);
  color: var(--green);
  padding: .6rem .8rem;
  text-transform: uppercase;
  cursor: pointer;
}
body.intro-active {
  overflow: hidden;
}

@keyframes routePulse {
  0% { opacity: 0; transform-origin: left center; filter: blur(1px); }
  35% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes ping {
  from { transform: scale(1); opacity: .9; }
  to { transform: scale(5); opacity: 0; }
}
@keyframes gridDrift {
  to { background-position: 0 42px, 42px 0; }
}
@keyframes globeFloat {
  50% { transform: translateY(-8px) rotate(1deg); }
}
@keyframes logReveal {
  to { opacity: 1; }
}
@keyframes wordmarkReveal {
  to { opacity: 1; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 30% 10%, rgba(30,70,30,.18), transparent 30%),
    linear-gradient(180deg, #020602, #050a05 45%, #020602);
  font-family: var(--mono);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--green); color: #000; padding: .75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.crt-overlay {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 999;
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,.018) 0 1px, rgba(0,0,0,.03) 1px 3px);
  mix-blend-mode: screen;
  opacity: .55;
}

.shell { width: min(1440px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(2,7,2,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-line);
}
.header-grid {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  align-items: center;
  gap: 1rem;
  padding: .6rem 0;
}
.brand-plate {
  display: block;
  background: #f7f3ea;
  border: 1px solid var(--gold-line);
  padding: .35rem .6rem;
  box-shadow: inset 0 0 28px rgba(231,183,60,.08);
}
.brand img { height: 58px; width: auto; object-fit: contain; }

.site-nav {
  display: flex; align-items: center; justify-content: flex-end; gap: .4rem;
}
.site-nav a {
  text-decoration: none; text-transform: uppercase; letter-spacing: .05em;
  color: var(--green-soft); padding: .7rem .75rem; font-size: .92rem;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--gold); background: rgba(119,255,66,.05); }
.site-nav .nav-cta { border: 1px solid var(--gold); color: var(--gold); margin-left: .5rem; }

.menu-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line); padding: .65rem .8rem;
}

.status-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  font-size: .75rem; text-transform: uppercase; color: var(--green);
}
.status-bar span { padding: .45rem .65rem; border-right: 1px solid var(--line); }
.status-dot {
  display: inline-block; width: .55rem; height: .55rem; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 12px var(--green); margin-right: .35rem;
  animation: pulse 1.6s ease-in-out infinite;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-line);
}
.hero-image {
  position: absolute; inset: 0;
  background: url("assets/hero.jpg") center center / cover no-repeat;
  filter: saturate(.75) contrast(1.05) brightness(.72);
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(1,5,1,.96) 0%, rgba(2,7,2,.84) 43%, rgba(2,7,2,.18) 72%, rgba(2,7,2,.28) 100%),
    linear-gradient(180deg, rgba(2,7,2,.15), rgba(2,7,2,.7));
}
.hero-content { position: relative; z-index: 2; padding: 7rem 0 8rem; }
.eyebrow {
  color: var(--gold); text-transform: uppercase; letter-spacing: .08em;
  font-size: .86rem; margin: 0 0 1rem;
}
h1,h2,h3 { font-family: var(--display); text-transform: uppercase; line-height: .95; margin-top: 0; }
h1 {
  max-width: 820px; font-size: clamp(3.3rem, 7vw, 7rem); letter-spacing: .01em; margin-bottom: 1rem;
  text-shadow: 0 0 24px rgba(119,255,66,.08);
}
.hero-sub {
  color: var(--green); font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  text-transform: uppercase; letter-spacing: .08em; margin: 0 0 1.25rem;
}
.hero-copy { max-width: 700px; color: #c5d0bf; font-size: 1.03rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .8rem;
  text-decoration: none; text-transform: uppercase; letter-spacing: .04em;
  padding: .95rem 1.15rem; border: 1px solid transparent; cursor: pointer;
}
.button-primary { background: rgba(119,255,66,.08); border-color: var(--green); color: var(--green); box-shadow: var(--shadow); }
.button-primary:hover { background: var(--green); color: #001000; }
.button-ghost { border-color: var(--gold-line); color: var(--gold); background: rgba(231,183,60,.04); }
.button-ghost:hover { background: var(--gold); color: #151000; }
.hero-readout {
  position: absolute; z-index: 3; left: 50%; bottom: 0; transform: translateX(-50%);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); background: rgba(2,7,2,.88);
}
.hero-readout span { padding: .7rem 1rem; text-align: center; color: var(--green); text-transform: uppercase; border-right: 1px solid var(--line); font-size: .82rem; }

.section { padding: 5rem 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 1.8rem; border-bottom: 1px solid var(--line); padding-bottom: 1rem; }
.section-heading h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); margin-bottom: 0; }

.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem; }
.capability-card, .ops-panel, .request-form, .contact-copy, .principles-grid article {
  position: relative; background: linear-gradient(180deg, rgba(10,24,10,.94), rgba(4,11,4,.98));
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.capability-card { padding: 1.2rem; min-height: 250px; display: flex; flex-direction: column; }
.capability-card::before, .ops-panel::before, .request-form::before, .contact-copy::before {
  content:""; position:absolute; inset:6px; border:1px solid rgba(119,255,66,.08); pointer-events:none;
}
.record-no { color: var(--gold); font-size: .8rem; }
.capability-card h3 { font-size: 2rem; color: var(--green); margin: .8rem 0 1rem; }
.capability-card p { color: #b8c4b3; }
.card-status { margin-top: auto; color: var(--green); text-transform: uppercase; font-size: .74rem; border-top: 1px solid var(--line); padding-top: .7rem; }

.records-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.cargo-record { border: 1px solid var(--line); background: var(--panel); overflow: hidden; }
.record-image { display: block; width: 100%; padding: 0; border: 0; background: #000; cursor: zoom-in; aspect-ratio: 4/3; overflow: hidden; }
.record-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.06); transition: transform .35s, filter .35s; }
.record-image:hover img { transform: scale(1.025); filter: saturate(1) contrast(1.04); }
.record-meta { display: grid; gap: .3rem; padding: .85rem; font-size: .76rem; text-transform: uppercase; color: var(--green); }
.record-meta strong { color: var(--gold); font-weight: 500; margin-bottom: .2rem; }

.standard { position: relative; min-height: 650px; display: grid; align-items: center; overflow: hidden; border-block: 1px solid var(--gold-line); }
.standard-image { position: absolute; inset: 0; background: url("assets/mountain.jpg") center 72% / cover no-repeat; filter: brightness(.58) saturate(.72); }
.standard-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,7,2,.96), rgba(2,7,2,.7) 50%, rgba(2,7,2,.25)); }
.standard-content { position: relative; z-index: 2; }
.standard h2 { font-size: clamp(2.8rem, 6vw, 6rem); max-width: 1050px; color: var(--green-soft); }
.standard-content > p:last-child { color: var(--gold); text-transform: uppercase; font-size: clamp(1.4rem, 2.6vw, 2.4rem); }

.ops-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1rem; }
.ops-panel { padding: 1.25rem; min-height: 420px; }
.radar {
  width: min(360px, 82vw); aspect-ratio: 1; border-radius: 50%; margin: 1rem auto;
  border: 1px solid rgba(119,255,66,.8);
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at center, transparent 0 12%, rgba(119,255,66,.18) 12.5% 13%, transparent 13.5% 28%, rgba(119,255,66,.15) 28.5% 29%, transparent 29.5% 45%, rgba(119,255,66,.14) 45.5% 46%, transparent 46.5%),
    repeating-conic-gradient(from 0deg, rgba(119,255,66,.3) 0 1deg, transparent 1deg 30deg),
    linear-gradient(rgba(119,255,66,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119,255,66,.08) 1px, transparent 1px),
    #020902;
  background-size: auto, auto, 24px 24px, 24px 24px, auto;
  box-shadow: inset 0 0 40px rgba(119,255,66,.08), 0 0 24px rgba(119,255,66,.08);
}
.radar::before, .radar::after { content:""; position:absolute; background:rgba(119,255,66,.28); }
.radar::before { width:1px; height:100%; left:50%; }
.radar::after { height:1px; width:100%; top:50%; }
.radar-sweep {
  position:absolute; inset:0; border-radius:50%;
  background: conic-gradient(from 0deg, rgba(119,255,66,.34), rgba(119,255,66,0) 38deg);
  animation: sweep 4.5s linear infinite;
}
.radar-center { position:absolute; left:50%; top:50%; width:10px; height:10px; margin:-5px; border-radius:50%; background:var(--green); box-shadow:0 0 15px var(--green); }
.ops-data dl { margin: 0; display: grid; gap: 0; }
.ops-data dl div { display: grid; grid-template-columns: 150px 1fr; gap: 1rem; border-bottom: 1px solid var(--line); padding: 1rem .5rem; }
.ops-data dt { color: var(--gold); text-transform: uppercase; }
.ops-data dd { margin: 0; color: var(--cream); }
.live-text { color: var(--green) !important; }

.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.principles-grid article { padding: 1.2rem; border-right: 0; min-height: 220px; }
.principles-grid article:last-child { border-right: 1px solid var(--line); }
.principles-grid span { color: var(--gold); }
.principles-grid h3 { color: var(--green); font-size: 1.8rem; margin: .6rem 0; }
.principles-grid p { color: #b8c4b3; font-size: .88rem; }

.contact-layout { display: grid; grid-template-columns: .9fr 1.35fr; gap: 1rem; }
.contact-copy, .request-form { padding: 1.5rem; }
.contact-copy h2 { font-size: clamp(2.7rem, 5vw, 5rem); color: var(--green-soft); }
.contact-links { display: grid; gap: .6rem; margin: 1.5rem 0; }
.contact-links a { color: var(--gold); overflow-wrap: anywhere; }
.terminal-log { display: grid; gap: .35rem; color: var(--green); font-size: .78rem; border: 1px solid var(--line); padding: .85rem; background: #020702; }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-grid label { display: grid; gap: .4rem; text-transform: uppercase; color: var(--green); font-size: .78rem; }
.form-grid .full { grid-column: 1 / -1; }
input, textarea {
  width: 100%; border: 1px solid rgba(119,255,66,.46); background: #020702;
  color: var(--cream); padding: .8rem; outline: 0;
}
input:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(119,255,66,.08); }
.request-form .button { margin-top: 1rem; }
.form-note { color: var(--muted); font-size: .72rem; margin-bottom: 0; }

.site-footer { border-top: 1px solid var(--gold-line); background:#020602; padding: 2rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 1.5rem; font-size: .78rem; text-transform: uppercase; }
.footer-grid > div { display: grid; align-content: start; gap: .4rem; }
.footer-grid strong { color: var(--gold); }
.footer-grid a, .footer-grid span { color: var(--green-soft); }
.footer-brand { background:#f7f3ea; padding:.5rem; align-self:start; }
.footer-brand img { max-height: 64px; object-fit:contain; }

.image-modal { border: 1px solid var(--green); background:#020702; padding: 1rem; width:min(1000px, 92vw); }
.image-modal::backdrop { background: rgba(0,0,0,.88); }
.image-modal img { max-height: 82vh; margin:auto; }
.modal-close { position:absolute; right:.5rem; top:.5rem; z-index:2; border:1px solid var(--green); background:#020702; color:var(--green); font-size:1.6rem; width:2.5rem; height:2.5rem; cursor:pointer; }

@keyframes pulse { 50% { opacity:.45; box-shadow:0 0 4px var(--green); } }
@keyframes sweep { to { transform: rotate(360deg); } }

@media (max-width: 1000px) {
  .header-grid { grid-template-columns: 1fr auto; }
  .menu-toggle { display: inline-flex; align-items:center; gap:.7rem; }
  .site-nav {
    display:none; grid-column:1 / -1; align-items:stretch; justify-content:stretch;
    flex-direction:column; border-top:1px solid var(--line); padding-top:.5rem;
  }
  .site-nav.open { display:flex; }
  .site-nav .nav-cta { margin-left:0; }
  .status-bar { grid-template-columns: repeat(2, 1fr); }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .records-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout, .ops-grid { grid-template-columns:1fr; }
}

@media (max-width: 680px) {
  .shell { width:min(100% - 20px, 1440px); }
  .brand img { height:44px; }
  .status-bar { display:none; }
  .hero { min-height: 760px; }
  .hero-content { padding: 5rem 0 9rem; }
  h1 { font-size: clamp(3.2rem, 15vw, 5.2rem); }
  .hero-shade { background: linear-gradient(180deg, rgba(2,7,2,.8), rgba(2,7,2,.95) 72%); }
  .hero-readout { grid-template-columns: repeat(2, 1fr); font-size:.7rem; }
  .hero-readout span { padding:.55rem .4rem; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .button { width:100%; }
  .section { padding: 3.5rem 0; }
  .section-heading { display:block; }
  .capability-grid, .records-grid, .principles-grid { grid-template-columns:1fr; }
  .standard { min-height: 720px; }
  .standard-shade { background: linear-gradient(180deg, rgba(2,7,2,.55), rgba(2,7,2,.96) 60%); }
  .ops-data dl div { grid-template-columns: 1fr; gap:.25rem; }
  .form-grid { grid-template-columns:1fr; }
  .form-grid .full { grid-column:auto; }
  .footer-grid { grid-template-columns:1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count:1 !important; scroll-behavior:auto !important; }
  .crt-overlay { display:none; }
}

@media (max-width: 680px) {
  .intro-globe {
    width: min(78vw, 360px);
  }
  .intro-copy {
    transform: translateY(27vh);
  }
  .intro-log {
    font-size: .62rem;
  }
  .hero {
    min-height: 610px;
  }
  .hero-content {
    padding: 4.2rem 0 6.5rem;
  }
  h1 {
    font-size: clamp(2.75rem, 12.5vw, 4.4rem);
    line-height: .93;
  }
  .hero-sub {
    font-size: 1.15rem;
    margin-bottom: .9rem;
  }
  .hero-copy {
    font-size: .92rem;
    line-height: 1.45;
  }
  .hero-actions {
    margin-top: 1.25rem;
    gap: .55rem;
  }
  .hero-actions .button-ghost {
    width: auto;
    justify-content: flex-start;
    border: 0;
    padding: .35rem 0;
    background: transparent;
  }
  .hero-readout {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-screen {
    display: none;
  }
}

/* V3: premium industrial logistics refinement */
:root{
  --green:#7fa36a;
  --green-soft:#c8d7bc;
  --gold:#c9a24a;
  --line:rgba(127,163,106,.20);
  --gold-line:rgba(201,162,74,.38);
  --shadow:0 12px 35px rgba(0,0,0,.22);
}
.crt-overlay{opacity:.10;background:repeating-linear-gradient(180deg,rgba(255,255,255,.008) 0 1px,transparent 1px 5px)}
.status-dot{animation:none;box-shadow:none}
.capability-card,.ops-panel,.request-form,.contact-copy,.principles-grid article{
  background:linear-gradient(180deg,rgba(13,25,13,.96),rgba(7,14,7,.99));
}
.capability-card::before,.ops-panel::before,.request-form::before,.contact-copy::before{display:none}
.card-status{color:var(--muted)}
.record-meta{color:#b7c1b0;text-transform:none;font-size:.82rem}
.record-meta strong{font-family:var(--display);font-size:1.45rem;text-transform:uppercase;color:var(--gold)}
.intro-globe{border-color:rgba(201,162,74,.65);box-shadow:0 0 35px rgba(201,162,74,.12),inset 0 0 45px rgba(127,163,106,.08)}
.globe-lat,.globe-lon{border-color:rgba(201,162,74,.25)}
.route{background:linear-gradient(90deg,var(--gold),rgba(127,163,106,.7),transparent);box-shadow:none}
.intro-grid{opacity:.35}
.intro-wordmark{color:var(--cream);text-shadow:none;font-size:clamp(1.7rem,4vw,3.8rem)}
.intro-log{color:var(--green-soft)}
.hero-sub{color:var(--gold)}
.button-primary{background:var(--gold);border-color:var(--gold);color:#151006;box-shadow:none}
.button-primary:hover{background:#e0bd68;color:#151006}
.capability-card h3,.principles-grid h3{color:var(--cream)}
.standard h2{color:var(--cream)}
.terminal-log{color:var(--green-soft);background:rgba(3,8,3,.55)}
.ops-grid{grid-template-columns:1fr}
.service-overview{min-height:auto;padding:2rem}
.service-overview dl{grid-template-columns:repeat(5,1fr);display:grid}
.service-overview dl div{display:block;border-right:1px solid var(--line);border-bottom:0;padding:1rem}
.service-overview dt{margin-bottom:.5rem}
@media(max-width:900px){.service-overview dl{grid-template-columns:1fr 1fr}}
@media(max-width:680px){.service-overview dl{grid-template-columns:1fr}.service-overview dl div{border-right:0;border-bottom:1px solid var(--line)}}

/* V4: consumer-friendly retro logistics */
:root{
  --green:#55ff39;
  --green-soft:#d9f5d2;
  --gold:#e9b94d;
  --cream:#f3f1e8;
  --muted:#a8b6a3;
  --line:rgba(85,255,57,.20);
  --gold-line:rgba(233,185,77,.30);
}

body{
  background:
    radial-gradient(circle at 20% 0%, rgba(26,63,26,.18), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(233,185,77,.06), transparent 24%),
    linear-gradient(180deg,#020702,#081008 55%,#030703);
}

.crt-overlay{
  opacity:.06;
}

.site-header{
  background:rgba(3,8,3,.90);
  border-bottom-color:rgba(233,185,77,.24);
}

.brand-plate{
  background:#f6f1e8;
  border-color:rgba(233,185,77,.35);
  box-shadow:none;
}

.site-nav a{
  color:var(--cream);
}
.site-nav a:hover,
.site-nav a:focus-visible{
  color:var(--green);
  background:rgba(85,255,57,.04);
}
.site-nav .nav-cta{
  color:#041004;
  background:var(--green);
  border-color:var(--green);
  font-weight:600;
}

.status-bar{
  color:var(--green);
  background:rgba(85,255,57,.025);
}

.hero-shade{
  background:
    linear-gradient(90deg,rgba(2,7,2,.95) 0%,rgba(2,7,2,.79) 43%,rgba(2,7,2,.18) 72%,rgba(2,7,2,.25) 100%),
    linear-gradient(180deg,rgba(2,7,2,.08),rgba(2,7,2,.58));
}

.hero-note{
  color:var(--gold);
  font-size:.92rem;
  letter-spacing:.03em;
  margin-top:.7rem;
}

.button-primary{
  background:var(--green);
  color:#031003;
  border-color:var(--green);
  box-shadow:0 0 0 1px rgba(85,255,57,.15),0 12px 28px rgba(85,255,57,.12);
}
.button-primary:hover{
  background:#8cff77;
  color:#031003;
}
.button-ghost{
  color:var(--cream);
  border-color:rgba(243,241,232,.26);
  background:rgba(243,241,232,.03);
}
.button-ghost:hover{
  background:rgba(243,241,232,.10);
  color:var(--cream);
}

.trust-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  margin-top:1rem;
  border:1px solid rgba(85,255,57,.18);
  background:linear-gradient(180deg,rgba(13,24,13,.86),rgba(6,12,6,.96));
}
.trust-strip span{
  padding:.9rem 1rem;
  text-align:center;
  color:var(--cream);
  border-right:1px solid rgba(85,255,57,.14);
  text-transform:uppercase;
  letter-spacing:.04em;
  font-size:.76rem;
}
.trust-strip span:last-child{border-right:0}

.capability-card{
  border-color:rgba(85,255,57,.16);
  background:
    linear-gradient(180deg,rgba(9,20,9,.95),rgba(5,11,5,.98));
  border-radius:2px;
}
.capability-card h3{
  color:var(--cream);
}
.capability-card p{
  color:#f0f1eb;
}
.card-status{
  color:var(--green);
  border-top-color:rgba(85,255,57,.16);
}
.record-no{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.08em;
}

.records-grid{
  gap:1.1rem;
}
.cargo-record{
  border-color:rgba(85,255,57,.16);
  background:#071007;
}
.record-meta{
  color:var(--cream);
}
.record-meta strong{
  color:var(--gold);
}
.record-meta span{
  color:#dbe5d7;
}

.standard-shade{
  background:
    linear-gradient(90deg,rgba(2,7,2,.92),rgba(2,7,2,.60) 52%,rgba(2,7,2,.20)),
    linear-gradient(180deg,transparent,rgba(2,7,2,.42));
}
.standard h2{
  color:var(--cream);
}
.standard-content > p:last-child{
  color:var(--green);
}

.service-overview{
  background:
    linear-gradient(135deg,rgba(7,18,7,.98),rgba(11,21,11,.96));
  border-color:rgba(85,255,57,.16);
}
.service-overview dt{
  color:var(--gold);
}
.service-overview dd{
  color:var(--cream);
}

.principles-grid article{
  background:
    linear-gradient(180deg,rgba(10,21,10,.96),rgba(6,13,6,.99));
  border-color:rgba(85,255,57,.14);
}
.principles-grid article span{
  color:var(--green);
}
.principles-grid h3{
  color:var(--cream);
}
.principles-grid p{
  color:#e0e8dd;
}

.contact-copy,
.request-form{
  border-color:rgba(85,255,57,.16);
  background:
    linear-gradient(180deg,rgba(11,22,11,.96),rgba(5,11,5,.99));
}
.contact-copy h2{
  color:var(--cream);
}
.contact-links a{
  color:var(--green);
}
.terminal-log{
  color:var(--green-soft);
  border-color:rgba(85,255,57,.16);
  background:rgba(1,5,1,.44);
}
input,textarea{
  border-color:rgba(243,241,232,.22);
  background:rgba(2,7,2,.68);
}
input:focus,textarea:focus{
  border-color:var(--green);
  box-shadow:0 0 0 3px rgba(85,255,57,.08);
}

.intro-globe{
  border-color:rgba(85,255,57,.72);
  box-shadow:0 0 28px rgba(85,255,57,.16), inset 0 0 40px rgba(85,255,57,.08);
}
.globe-lat,.globe-lon{
  border-color:rgba(85,255,57,.22);
}
.intro-wordmark{
  color:var(--cream);
  font-family:var(--display);
  letter-spacing:.06em;
}
.intro-kicker{
  color:var(--gold);
}
.intro-log{
  color:var(--green);
}
.route{
  background:linear-gradient(90deg,var(--gold),var(--green),transparent);
  box-shadow:0 0 6px rgba(85,255,57,.25);
}

@media(max-width:900px){
  .trust-strip{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:680px){
  .trust-strip{grid-template-columns:1fr 1fr}
  .trust-strip span{font-size:.68rem;padding:.75rem .55rem}
  .hero-note{font-size:.82rem}
}

/* V5: mainstream logistics direction */
:root{
  --green:#173a2a;
  --green-2:#2f6448;
  --green-accent:#76a66f;
  --gold:#e4b43c;
  --gold-deep:#b98c24;
  --cream:#fbfaf6;
  --ink:#142019;
  --muted:#657168;
  --line:rgba(20,32,25,.14);
  --soft:#f2f4ef;
  --white:#ffffff;
  --shadow:0 18px 55px rgba(20,32,25,.10);
}

html,body{background:var(--cream);color:var(--ink)}
body{font-family:"IBM Plex Mono",ui-monospace,SFMono-Regular,Menlo,monospace}
.crt-overlay{display:none}

.site-header{
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--line);
  box-shadow:0 8px 30px rgba(20,32,25,.06);
}
.header-grid{padding:.7rem 0}
.brand-plate{
  background:transparent;
  border:0;
  box-shadow:none;
  padding:0;
}
.brand img{
  height:58px;
  width:auto;
  max-width:100%;
  object-fit:contain;
  display:block;
}
.site-nav a{
  color:var(--ink);
  font-family:"IBM Plex Mono",monospace;
  font-size:.84rem;
}
.site-nav a:hover,.site-nav a:focus-visible{
  color:var(--green-2);
  background:var(--soft);
}
.site-nav .nav-cta{
  background:var(--gold);
  color:#1b1608;
  border-color:var(--gold);
  font-weight:600;
}
.status-bar{
  background:var(--green);
  color:#e7f0e7;
  border-top:0;
}
.status-bar span{border-right:1px solid rgba(255,255,255,.12)}
.status-dot{background:#8fca7f;box-shadow:0 0 12px rgba(143,202,127,.55);animation:pulse 1.8s ease-in-out infinite}

.hero{min-height:660px;border-bottom:0}
.hero-image{filter:saturate(.9) contrast(1.03) brightness(.80)}
.hero-shade{
  background:linear-gradient(90deg,rgba(17,38,28,.94) 0%,rgba(17,38,28,.80) 43%,rgba(17,38,28,.18) 72%,rgba(17,38,28,.12) 100%);
}
.eyebrow{color:var(--gold);font-size:.78rem;letter-spacing:.07em}
h1{
  color:white;
  font-size:clamp(3.2rem,6vw,6.4rem);
  max-width:900px;
  line-height:.98;
  text-shadow:none;
}
.hero-sub{
  color:#eef4ed;
  font-size:clamp(1.2rem,2vw,1.7rem);
  letter-spacing:.02em;
  text-transform:none;
  font-family:"IBM Plex Mono",monospace;
}
.hero-copy{color:#e4ebe3;max-width:760px}
.hero-note{color:#f2d67d}
.button-primary{
  background:var(--gold);
  border-color:var(--gold);
  color:#1d1707;
  box-shadow:none;
}
.button-primary:hover{background:#f0c85e;color:#1d1707}
.button-ghost{
  color:white;
  border-color:rgba(255,255,255,.42);
  background:rgba(255,255,255,.06);
}
.hero-readout{
  background:rgba(255,255,255,.95);
  border:0;
  box-shadow:var(--shadow);
}
.hero-readout span{
  color:var(--green);
  border-right:1px solid var(--line);
  font-weight:600;
}

.trust-strip{
  margin-top:1.2rem;
  background:white;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.trust-strip span{
  color:var(--ink);
  border-right:1px solid var(--line);
  font-size:.73rem;
}

.metrics{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
  padding:2rem 0 0;
}
.metrics article{
  background:white;
  border:1px solid var(--line);
  padding:1.3rem;
  box-shadow:0 10px 28px rgba(20,32,25,.06);
}
.metrics strong{
  display:block;
  color:var(--green);
  font-family:"Barlow Condensed",sans-serif;
  font-size:1.65rem;
  text-transform:uppercase;
  margin-bottom:.25rem;
}
.metrics span{color:var(--muted);font-size:.8rem}

.section{padding:5rem 0}
.section-heading{border-bottom:1px solid var(--line)}
.section-heading h2{color:var(--green)}

.capability-card,.ops-panel,.request-form,.contact-copy,.principles-grid article{
  background:white;
  border:1px solid var(--line);
  box-shadow:0 12px 32px rgba(20,32,25,.06);
}
.capability-card h3,.principles-grid h3{color:var(--green)}
.capability-card p,.principles-grid p{color:#465149}
.record-no{color:var(--gold-deep)}
.card-status{color:var(--green-2);border-top-color:var(--line)}

.cargo-record{
  background:white;
  border:1px solid var(--line);
  box-shadow:0 12px 32px rgba(20,32,25,.06);
}
.record-meta{color:var(--muted)}
.record-meta strong{color:var(--green)}
.record-meta span{color:#58645b}

.standard{border-block:0}
.standard-shade{
  background:linear-gradient(90deg,rgba(17,38,28,.93),rgba(17,38,28,.63) 54%,rgba(17,38,28,.20));
}
.standard h2{color:white}
.standard-content>p:last-child{color:#f0ce70}

.service-overview{
  background:var(--green);
  border:0;
  color:white;
}
.service-overview dt{color:#f0ce70}
.service-overview dd{color:white}
.service-overview dl div{border-right:1px solid rgba(255,255,255,.16)}

.contact-copy,.request-form{background:white}
.contact-copy h2{color:var(--green)}
.contact-copy p{color:#4c5850}
.contact-links a{color:var(--green-2)}
.terminal-log{
  background:var(--soft);
  color:var(--green);
  border-color:var(--line);
}
input,textarea{
  background:white;
  color:var(--ink);
  border-color:rgba(20,32,25,.22);
}
input:focus,textarea:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(228,180,60,.15)}

.site-footer{background:var(--green);border-top:0}
.footer-grid strong{color:#f0ce70}
.footer-grid a,.footer-grid span{color:#f0f3ee}
.footer-brand{background:white;border-radius:2px}

/* Refined professional intro */
.intro-screen{
  background:
    radial-gradient(circle at center,rgba(45,94,66,.30),transparent 44%),
    linear-gradient(180deg,#0b1b13,#132e21);
}
.intro-grid{opacity:.10}
.intro-globe{
  border-color:rgba(228,180,60,.78);
  box-shadow:0 0 34px rgba(228,180,60,.15),inset 0 0 42px rgba(118,166,111,.10);
}
.globe-lat,.globe-lon{border-color:rgba(228,180,60,.28)}
.route{
  background:linear-gradient(90deg,var(--gold),#8fc988,transparent);
  box-shadow:none;
}
.origin-ping{background:var(--gold);box-shadow:0 0 14px rgba(228,180,60,.5)}
.intro-kicker{color:#f0ce70}
.intro-log{color:#d5e4d3}
.intro-wordmark{color:white;text-shadow:none}
.intro-skip{color:white;border-color:rgba(255,255,255,.35);background:rgba(255,255,255,.06)}

@media(max-width:1000px){
  .metrics{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:680px){
  .brand img{height:42px}
  .hero{min-height:590px}
  .hero-content{padding:4rem 0 5.5rem}
  h1{font-size:clamp(2.65rem,12vw,4.1rem)}
  .hero-sub{font-size:1rem}
  .hero-readout{display:none}
  .metrics{grid-template-columns:1fr}
  .trust-strip{grid-template-columns:1fr 1fr}
}

/* V6 polish: stronger hierarchy, softer color blocking, modern editorial logistics */
.section-heading{
  align-items:flex-start;
}
.section-heading > div{
  max-width:820px;
}
.section-subcopy{
  max-width:700px;
  margin:.9rem 0 0;
  color:var(--muted);
  font-size:.95rem;
  line-height:1.7;
}

.metrics{
  grid-template-columns:repeat(4,1fr);
  position:relative;
  padding-top:3.2rem;
}
.metrics-intro{
  grid-column:1 / -1;
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:1rem;
  padding-bottom:.6rem;
  border-bottom:1px solid var(--line);
}
.metrics-intro span{
  color:var(--gold-deep);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.72rem;
}
.metrics-intro strong{
  color:var(--green);
  font-family:"Barlow Condensed",sans-serif;
  font-size:clamp(1.8rem,3vw,3rem);
  text-transform:uppercase;
  line-height:1;
}
.metric-card{
  position:relative;
  overflow:hidden;
  min-height:170px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  border-radius:2px;
}
.metric-card::before{
  content:"";
  position:absolute;
  left:0; top:0; right:0;
  height:8px;
  background:var(--gold);
}
.metric-card small{
  position:absolute;
  top:1.3rem;
  left:1.3rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.68rem;
  color:var(--muted);
}
.metric-card strong{
  font-size:1.95rem;
  line-height:1.05;
}
.metric-green::before{background:#6ea36c}
.metric-blue::before{background:#6f95a8}
.metric-sand::before{background:#c5a97c}

.capability-grid{
  gap:1.1rem;
}
.capability-card{
  min-height:280px;
  padding:1.45rem;
  transition:transform .22s ease, box-shadow .22s ease;
}
.capability-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(20,32,25,.10);
}
.capability-card h3{
  font-size:2.25rem;
  margin-top:1rem;
}
.capability-card p{
  font-size:.96rem;
  line-height:1.75;
}

.records-grid{
  gap:1.25rem;
}
.cargo-record{
  border-radius:2px;
  overflow:hidden;
}
.record-image{
  aspect-ratio:16/11;
}
.record-meta{
  padding:1.05rem 1.1rem 1.2rem;
  gap:.45rem;
}
.record-meta strong{
  font-size:1.65rem;
}
.record-meta span{
  font-size:.8rem;
}

.principles-grid{
  gap:1rem;
}
.principles-grid article{
  border-right:1px solid var(--line);
  padding:1.5rem;
  min-height:240px;
}
.principles-grid article span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--soft);
  color:var(--green);
  font-weight:600;
}
.principles-grid h3{
  margin-top:1rem;
  font-size:2rem;
}
.principles-grid p{
  line-height:1.7;
}

.request-form{
  border-top:6px solid var(--gold);
}
.contact-copy{
  border-top:6px solid var(--green-2);
}
.request-form .eyebrow,
.contact-copy .eyebrow{
  margin-bottom:1.4rem;
}

@media(max-width:1000px){
  .metrics-intro{
    display:block;
  }
  .metrics-intro strong{
    display:block;
    margin-top:.45rem;
  }
}
@media(max-width:680px){
  .metrics{
    padding-top:2rem;
  }
  .metric-card{
    min-height:145px;
  }
  .metric-card strong{
    font-size:1.7rem;
  }
  .section-heading{
    margin-bottom:1.4rem;
  }
  .section-subcopy{
    font-size:.88rem;
  }
}

/* V7 accessibility refinement: darker gold text on light backgrounds */
:root{
  --gold-text:#9a6508;
  --gold-text-strong:#7f5200;
}

/* Use dark gold for small labels and text on light sections */
body .section .eyebrow,
body .metrics-intro span,
body .record-no,
body .metric-card small,
body .record-meta strong,
body .request-form .eyebrow,
body .contact-copy .eyebrow{
  color:var(--gold-text);
  font-weight:600;
}

/* Preserve bright Goldmark gold on dark backgrounds */
.hero .eyebrow,
.standard .eyebrow,
.site-footer strong,
.intro-kicker{
  color:#f0c95e;
}

/* Improve readability of small labels */
.eyebrow,
.record-no,
.metric-card small{
  letter-spacing:.075em;
  font-weight:600;
}

@media (max-width:680px){
  .eyebrow,
  .record-no,
  .metric-card small{
    font-weight:700;
  }
}

/* V8: larger, clearer section labels */
.eyebrow,
.metrics-intro span,
.record-no,
.metric-card small{
  font-size:.9rem;
  font-weight:700;
  letter-spacing:.055em;
  line-height:1.35;
}
.metric-card span,
.section-subcopy{
  font-size:1rem;
}
@media(max-width:680px){
  .eyebrow,
  .metrics-intro span,
  .record-no,
  .metric-card small{
    font-size:.82rem;
  }
}

/* V9: aligned metric cards, stronger descriptions, no horizontal overflow */

/* Prevent any section from pushing beyond the viewport */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
.shell,
.metrics,
.capability-grid,
.records-grid,
.principles-grid,
.contact-layout,
.ops-grid {
  min-width: 0;
}
.metrics > *,
.capability-grid > *,
.records-grid > *,
.principles-grid > *,
.contact-layout > *,
.ops-grid > * {
  min-width: 0;
}

/* Keep all metric cards aligned consistently */
.metrics {
  align-items: stretch;
}
.metric-card {
  display: grid;
  grid-template-rows: 28px minmax(64px, auto) auto;
  align-content: start;
  min-height: 180px;
  padding: 1.35rem;
}
.metric-card small {
  position: static;
  align-self: start;
  margin: 0;
  min-height: 28px;
  line-height: 1.2;
}
.metric-card strong {
  display: flex;
  align-items: center;
  min-height: 64px;
  margin: .55rem 0 .35rem;
  line-height: 1.05;
  overflow-wrap: anywhere;
}
.metric-card > span:last-child {
  margin-top: 0;
  line-height: 1.55;
}

/* Slightly stronger body and description copy */
.metric-card > span:last-child,
.capability-card p,
.record-meta span,
.principles-grid p,
.section-subcopy,
.contact-copy p,
.ops-data dd {
  font-weight: 500;
  color: #3f4b43;
}

/* Keep headers clearly stronger than descriptions */
.metric-card strong,
.capability-card h3,
.record-meta strong,
.principles-grid h3 {
  font-weight: 700;
}

/* Ensure the four cards fit cleanly on common desktop widths */
@media (max-width: 1200px) {
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .metrics {
    grid-template-columns: 1fr;
  }
  .metric-card {
    grid-template-rows: 26px auto auto;
    min-height: 150px;
  }
  .metric-card strong {
    min-height: 0;
  }
}

/* V10: improve contrast on dark green/image sections */

/* Make section label clearly visible over the mountain image */
.standard .eyebrow {
  color: #ffd76a;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .065em;
  text-shadow: 0 2px 8px rgba(0,0,0,.55);
  margin-bottom: 1.2rem;
}

/* Keep the main statement crisp and readable */
.standard h2 {
  color: #ffffff;
  text-shadow: 0 3px 16px rgba(0,0,0,.42);
}

/* Strengthen the Goldmark Way line */
.standard-content > p:last-child {
  color: #ffd76a;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

/* Darken the overlay slightly for consistent readability */
.standard-shade {
  background:
    linear-gradient(90deg,
      rgba(10,38,27,.97) 0%,
      rgba(10,38,27,.84) 45%,
      rgba(10,38,27,.46) 72%,
      rgba(10,38,27,.30) 100%);
}

/* Fix faded values in the green service overview panel */
.service-overview dt {
  color: #ffd76a;
  font-weight: 700;
  font-size: .9rem;
}

.service-overview dd,
.service-overview .live-text {
  color: #ffffff !important;
  font-weight: 600;
  opacity: 1;
}

.service-overview dl div {
  border-right-color: rgba(255,255,255,.20);
}

/* Preserve stronger contrast on mobile */
@media (max-width: 680px) {
  .standard .eyebrow {
    font-size: .9rem;
  }
  .standard-shade {
    background:
      linear-gradient(180deg,
        rgba(10,38,27,.74) 0%,
        rgba(10,38,27,.93) 58%,
        rgba(10,38,27,.98) 100%);
  }
}

/* =========================================================
   V12 MOBILE REFINEMENT — JULY 2026
   Final responsive pass for phone-sized screens.
   ========================================================= */
@media (max-width: 680px) {
  html { scroll-padding-top: 72px; }
  body { font-size: 15px; }
  .shell { width: calc(100% - 28px); }

  /* Header */
  .site-header { position: sticky; }
  .header-grid { min-height: 64px; padding: .45rem 0; }
  .brand img { height: 38px; }
  .menu-toggle { padding: .55rem .65rem; font-size: .78rem; }
  .site-nav a { padding: .8rem .65rem; font-size: .8rem; }

  /* Hero */
  .hero {
    min-height: auto;
    display: block;
  }
  .hero-image { background-position: 61% center; }
  .hero-content {
    min-height: 0;
    padding: 3.5rem 0 3.25rem;
  }
  .hero .eyebrow {
    max-width: 19rem;
    margin-bottom: .7rem;
    font-size: .74rem;
    line-height: 1.35;
  }
  .hero h1 {
    max-width: 19.5rem;
    margin-bottom: 1rem;
    font-size: clamp(2.55rem, 11.7vw, 3.6rem);
    line-height: .96;
    letter-spacing: -.035em;
    overflow-wrap: normal;
    word-break: normal;
  }
  .hero-sub {
    max-width: 19rem;
    margin: 0 0 .7rem;
    font-size: 1rem;
    line-height: 1.35;
  }
  .hero-copy {
    max-width: 20rem;
    margin: 0 0 .75rem;
    font-size: .86rem;
    line-height: 1.52;
  }
  .hero-note {
    max-width: 20rem;
    margin: 0;
    font-size: .73rem;
    line-height: 1.45;
  }
  .hero-actions {
    max-width: 20rem;
    margin-top: 1.15rem;
    gap: .55rem;
  }
  .hero-actions .button { min-height: 48px; padding: .78rem .85rem; }
  .hero-actions .button-ghost {
    width: 100%;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.72);
    padding: .78rem .85rem;
  }

  /* Trust and general sections */
  .trust-strip { margin-top: 0; }
  .trust-strip span { min-height: 54px; padding: .65rem .45rem; font-size: .64rem; }
  .section { padding: 2.8rem 0; }
  .section-heading { margin-bottom: 1.2rem; }
  .section-heading h2 {
    font-size: clamp(2rem, 9.5vw, 2.7rem);
    line-height: 1.03;
    letter-spacing: -.025em;
  }
  .section-subcopy { margin-top: .65rem; font-size: .86rem; line-height: 1.58; }

  /* Metric cards */
  .metrics { gap: .75rem; padding: 2rem 0 2.8rem; }
  .metrics-intro { margin-bottom: .2rem; }
  .metrics-intro strong {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.02;
  }
  .metric-card {
    min-height: 0;
    padding: 1.15rem;
    grid-template-rows: auto auto auto;
  }
  .metric-card small { min-height: 0; margin-bottom: .45rem; }
  .metric-card strong {
    min-height: 0;
    margin: .15rem 0 .45rem;
    font-size: 1.55rem;
    line-height: 1.05;
  }
  .metric-card > span:last-child { font-size: .88rem; line-height: 1.45; }

  /* Service cards */
  .capability-grid { gap: .75rem; }
  .capability-card { min-height: 0; padding: 1.15rem; }
  .capability-card h3 { margin: .7rem 0 .5rem; font-size: 1.75rem; line-height: 1.02; }
  .capability-card p { font-size: .88rem; line-height: 1.5; }
  .card-status { margin-top: 1rem; }

  /* Delivery records */
  .records-grid { gap: .85rem; }
  .cargo-record { grid-template-columns: 1fr; }
  .record-image img { aspect-ratio: 4 / 3; object-fit: cover; }
  .record-meta { padding: 1rem; }
  .record-meta strong { font-size: 1.35rem; line-height: 1.05; }
  .record-meta span { font-size: .78rem; line-height: 1.4; }

  /* Why Goldmark image section */
  .standard {
    min-height: auto;
    padding: 0;
  }
  .standard-image { background-position: 58% center; }
  .standard-content { padding: 3.4rem 0 3.5rem; }
  .standard .eyebrow { margin-bottom: .8rem; font-size: .78rem; }
  .standard h2 {
    max-width: 20rem;
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: .98;
    letter-spacing: -.025em;
  }
  .standard-content > p:last-child { margin-top: 1.25rem; font-size: .92rem; }

  /* Overview and principles */
  .service-overview { padding: .65rem 1rem; }
  .service-overview dl div { padding: .85rem 0; }
  .service-overview dt { font-size: .74rem; margin-bottom: .15rem; }
  .service-overview dd { font-size: .95rem; }
  .principles-grid { gap: .75rem; }
  .principles-grid article { min-height: 0; padding: 1.1rem; }
  .principles-grid h3 { margin: .65rem 0 .35rem; font-size: 1.65rem; }
  .principles-grid p { font-size: .86rem; line-height: 1.5; }

  /* Contact and form */
  .contact-layout { gap: .8rem; }
  .contact-copy, .request-form { padding: 1.15rem; }
  .contact-copy h2 {
    margin: .45rem 0 .8rem;
    font-size: clamp(2.05rem, 9.5vw, 2.7rem);
    line-height: 1.02;
  }
  .contact-copy p { font-size: .87rem; line-height: 1.55; }
  .contact-links { margin: 1rem 0; gap: .45rem; }
  .contact-links a { font-size: .83rem; line-height: 1.35; }
  .terminal-log { padding: .7rem; font-size: .69rem; }
  .form-grid { gap: .8rem; }
  .form-grid label { font-size: .72rem; }
  input, textarea { padding: .72rem; font-size: 16px; }
  textarea { min-height: 128px; }
  .request-form .button { min-height: 50px; padding: .8rem; }
  .form-note { font-size: .68rem; line-height: 1.4; }

  /* Footer */
  .site-footer { padding: 1.4rem 0; }
  .footer-grid { gap: 1rem; font-size: .72rem; }
  .footer-brand { max-width: 230px; }

  /* Modal */
  .image-modal { width: calc(100vw - 24px); padding: .65rem; }
  .image-modal img { max-height: 78vh; }
}

@media (max-width: 380px) {
  .shell { width: calc(100% - 22px); }
  .hero h1 { font-size: 2.42rem; }
  .trust-strip span { font-size: .59rem; }
  .section-heading h2,
  .metrics-intro strong,
  .contact-copy h2 { font-size: 2rem; }
  .standard h2 { font-size: 2.05rem; }
}

/* =========================================================
   V13 — WHY GOLDMARK EMPHASIS + FORM CONFIRMATION POLISH
   ========================================================= */
.standard .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0 0 1.65rem;
  padding: .55rem 1rem .5rem;
  border-left: 6px solid var(--gold);
  background: rgba(4, 25, 18, .72);
  color: #ffd45a;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}

.standard h2 {
  max-width: 1120px;
  color: #fff;
  font-size: clamp(3rem, 5.5vw, 5.65rem);
  line-height: .98;
  letter-spacing: -.025em;
  text-wrap: balance;
  text-shadow: 0 3px 24px rgba(0,0,0,.38);
}

.standard-content > p:last-child {
  margin-top: 2rem;
  color: #ffd45a;
  font-size: clamp(1.15rem, 1.8vw, 1.7rem);
  font-weight: 700;
  letter-spacing: .08em;
}

@media (max-width: 680px) {
  .standard .eyebrow {
    min-height: 38px;
    margin-bottom: 1.15rem;
    padding: .48rem .78rem .44rem;
    border-left-width: 5px;
    font-size: .92rem;
    letter-spacing: .085em;
  }

  .standard h2 {
    max-width: 22rem;
    font-size: clamp(2.3rem, 10.4vw, 3.15rem);
    line-height: 1;
    letter-spacing: -.02em;
  }

  .standard-content > p:last-child {
    margin-top: 1.35rem;
    font-size: .95rem;
    line-height: 1.35;
  }
}


/* V14 inline Netlify form confirmation */
.form-status {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 5px solid #e4b43c;
  background: #f4f1e8;
  color: #173a2a;
  font-family: "IBM Plex Mono", monospace;
  line-height: 1.55;
}
.form-status strong { display: block; margin-bottom: 4px; text-transform: uppercase; }
.form-status.is-success { border-left-color: #4f8a5b; background: #edf6ee; }
.form-status.is-error { border-left-color: #a94b3d; background: #fff0ed; }
.form-status.is-pending { border-left-color: #6f95a8; background: #eef5f8; }
.form-status a { color: #173a2a; font-weight: 700; overflow-wrap: anywhere; }
.request-form button[disabled] { opacity: .7; cursor: wait; }
