/* PT Muda Karya Export.
   One typeface (Arial), colours taken from the logo. Sections are colour blocks (white, tint, navy); data lives in tables and lists.
   Order: tokens, base, layout, buttons, header, hero, bars, sections, components, forms, footer, responsive, print. */

:root {
  --navy: #032E54;
  --navy-deep: #021F3A;
  --navy-mid: #0A4275;
  --ink: #0B1B2B;
  --muted: #4A5B6C;
  --line: #D5DFEA;
  --line-strong: #8B9DB1;
  --tint: #F3F7FB;
  --tint-2: #E6EEF6;
  --gold: #C9922A;
  --gold-text: #8F6510;
  --err: #A32020;
  --on-navy: rgba(255, 255, 255, 0.86);
  --on-navy-mute: rgba(255, 255, 255, 0.68);
  --navy-line: rgba(255, 255, 255, 0.18);
  --font: Arial, Arimo, "Liberation Sans", Helvetica, sans-serif;
  --wrap: 78rem;
  --gutter: clamp(16px, 3.4vw, 40px);
  --gap: clamp(16px, 2vw, 32px);
  --header-h: 4.5rem;
  --pad: clamp(56px, 7.5vw, 120px);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 100%; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 3.5rem); }
@media (min-width: 1700px) { html { font-size: 112.5%; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3 { margin: 0; color: var(--navy); font-weight: 700; text-wrap: balance; }
p, dl, dd, ul, ol, figure, address { margin: 0; }
ul, ol { padding: 0; list-style: none; }
address { font-style: normal; }
p { text-wrap: pretty; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { text-decoration-color: var(--gold); text-decoration-thickness: 2px; }
::selection { background: var(--gold); color: var(--navy); }
:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }
.sec--navy :focus-visible, .sec--deep :focus-visible, .hero :focus-visible, .phead :focus-visible, .bar :focus-visible, .site-footer :focus-visible, .contact-side :focus-visible { outline-color: var(--gold); }

h1 { font-size: clamp(2rem, 1rem + 3.6vw, 3.75rem); line-height: 1.05; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 1.1rem + 1.9vw, 2.75rem); line-height: 1.1; letter-spacing: -0.02em; }
h3 { font-size: 1.0625rem; line-height: 1.3; }
@media (min-width: 1024px) { body { font-size: 1.0625rem; } }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: calc(var(--wrap) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -64px; z-index: 100; padding: 10px 16px; background: var(--gold); color: var(--navy); font-weight: 700; text-decoration: none; }
.skip-link:focus { top: 12px; }
.icon { width: 1em; height: 1em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: square; stroke-linejoin: miter; }
.print-head { display: none; }

/* ---------- buttons and links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7em;
  min-height: 3rem; padding: 0.7em 1.4em;
  border: 1px solid var(--navy); border-radius: 2px;
  background: var(--navy); color: #fff;
  font: 700 0.9375rem/1.2 var(--font); text-decoration: none; cursor: pointer;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.btn:hover { background: var(--navy-deep); border-color: var(--navy-deep); color: #fff; text-decoration: none; }
.btn .icon { width: 1.05em; height: 1.05em; transition: transform 0.15s; }
.btn:hover .icon { transform: translateX(3px); }
.btn--line { background: transparent; color: var(--navy); }
.btn--line:hover { background: var(--tint); border-color: var(--navy); color: var(--navy); }
.btn--gold { border-color: var(--gold); background: var(--gold); color: var(--navy); }
.btn--gold:hover { border-color: #D9A23A; background: #D9A23A; color: var(--navy); }
.sec--navy .btn--gold, .sec--deep .btn--gold, .phead .btn--gold, .hero .btn--gold, .contact-side .btn--gold { color: var(--navy); }  /* wins over the white link colour of dark sections */
.btn--ghost { border-color: rgba(255, 255, 255, 0.6); background: transparent; color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); color: #fff; }
.btn--sm { min-height: 2.5rem; padding: 0.5em 1.05em; font-size: 0.875rem; }
.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; margin-top: 28px; }

.text-link {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 700; color: var(--navy);
  text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 0.25em;
}
.text-link:hover { text-decoration-color: var(--gold); text-decoration-thickness: 2px; }
.text-link .icon { width: 0.95em; height: 0.95em; transition: transform 0.15s; }
.text-link:hover .icon { transform: translateX(3px); }
.text-link--btn { padding: 0; border: 0; background: none; font: 700 0.9375rem/1.3 var(--font); cursor: pointer; display: none; }
.js .text-link--btn { display: inline-flex; }
.phead .text-link, .hero .text-link, .sec--navy .text-link { color: #fff; }
@media (pointer: coarse) { .text-link, .text-link--btn { min-height: 44px; } }
.body-link { margin-top: 24px; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; background: #fff; border-bottom: 1px solid var(--line); }
.header__bar { display: flex; align-items: center; gap: clamp(20px, 3vw, 40px); min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 12px; flex: none; color: var(--navy); text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand__mark { height: 2.25rem; width: auto; }
.brand__text { display: flex; flex-direction: column; gap: 5px; line-height: 1; }
.brand__name { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.07em; }
.brand__tag { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.22em; color: var(--gold-text); }
.nav { display: flex; gap: clamp(18px, 2.4vw, 34px); margin-left: auto; }
.nav a { padding: 8px 0; border-bottom: 2px solid transparent; font-size: 0.9375rem; font-weight: 700; text-decoration: none; }
.nav a:hover { border-bottom-color: var(--gold); }
.nav a[aria-current="page"] { border-bottom-color: var(--navy); }
.header__tools { display: flex; align-items: center; gap: 20px; }
.lang { display: flex; align-items: center; font-size: 0.875rem; font-weight: 700; }
.lang a { padding: 4px 0; color: var(--muted); text-decoration: none; }
.lang a + a { margin-left: 0.6em; padding-left: 0.6em; border-left: 1px solid var(--line-strong); }
.lang a[aria-current="true"] { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 0.35em; }
.lang a:hover { color: var(--navy); }
.menu-btn { display: none; position: relative; width: 44px; height: 44px; padding: 0; border: 1px solid var(--navy); border-radius: 2px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.menu-btn__bars, .menu-btn__bars::before, .menu-btn__bars::after { display: block; width: 18px; height: 2px; background: var(--navy); }
.menu-btn__bars { position: relative; }
.menu-btn__bars::before, .menu-btn__bars::after { content: ""; position: absolute; left: 0; }
.menu-btn__bars::before { top: -6px; }
.menu-btn__bars::after { top: 6px; }
.menu-open .menu-btn__bars { background: transparent; }
.menu-open .menu-btn__bars::before { top: 0; transform: rotate(45deg); }
.menu-open .menu-btn__bars::after { top: 0; transform: rotate(-45deg); }
.mobile-nav { display: none; max-height: calc(100vh - var(--header-h)); overflow-y: auto; border-top: 1px solid var(--line); background: #fff; }
.mobile-nav.is-open { display: block; }
.mobile-nav nav a { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1.125rem; font-weight: 700; text-decoration: none; }
.mobile-nav nav a[aria-current="page"] { color: var(--gold-text); }
.mobile-nav__tools { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0 24px; }

/* ---------- hero (home) and product hero: text on navy, photographs to the right edge ---------- */
.hero, .phead--product {
  --m: max(var(--gutter), calc((100% - var(--wrap)) / 2));
  display: grid;
  grid-template-columns: var(--m) calc(50% - var(--m)) 50%;
  background: var(--navy);
  color: #fff;
}
.hero { min-height: clamp(34rem, calc(100vh - var(--header-h)), 50rem); }
.hero__text, .phead--product .phead__main { grid-column: 2; display: flex; flex-direction: column; justify-content: center; padding-block: clamp(44px, 6vw, 96px); padding-right: clamp(24px, 4.5vw, 88px); }
.hero h1, .phead h1 { color: #fff; }
.hero h1 { font-size: clamp(2.125rem, 0.9rem + 2.7vw, 3.375rem); }
.hero__lead { max-width: 34em; margin-top: clamp(18px, 2vw, 28px); font-size: clamp(1.0625rem, 1rem + 0.25vw, 1.25rem); line-height: 1.55; color: var(--on-navy); }
.hero .btn-row { margin-top: clamp(26px, 3vw, 40px); }
.hero__panels { grid-column: 3; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: minmax(0, 1fr) auto; gap: 2px; background: var(--navy-deep); }
.hpanel { position: relative; display: block; height: 100%; min-height: 22rem; overflow: hidden; background: var(--navy-deep); color: #fff; text-decoration: none; }
.hpanel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1); }
.hpanel:hover img { transform: scale(1.045); }
.hpanel:hover { text-decoration: none; }
.hpanel__label { position: absolute; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2px 12px; align-content: center; align-items: center; min-height: 6.25rem; padding: 14px 18px; border-top: 3px solid var(--gold); background: var(--navy-deep); }
.hpanel__label strong { font-size: 1rem; line-height: 1.25; }
.hpanel__label small { grid-column: 1; font-size: 0.8125rem; color: var(--on-navy-mute); }
.hpanel__label .icon { grid-row: 1 / span 2; grid-column: 2; align-self: center; width: 1.1em; height: 1.1em; color: var(--gold); transition: transform 0.15s; }
.hpanel:hover .icon { transform: translateX(3px); }
/* the strip under the hero photos: the company is not limited to the product lines shown above it */
.hstrip-item { grid-column: 1 / -1; }
.hstrip { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px 20px; align-items: center; min-height: 5.5rem; padding: 16px 22px; background: var(--navy-mid); color: #fff; text-decoration: none; }
.hstrip:hover { text-decoration: none; background: #0D4B82; }
.hstrip strong { display: block; font-size: 1.125rem; line-height: 1.25; }
.hstrip small { display: block; margin-top: 3px; font-size: 0.8125rem; color: var(--on-navy); }
.hstrip .icon { width: 1.25em; height: 1.25em; color: var(--gold); transition: transform 0.15s; }
.hstrip:hover .icon { transform: translateX(3px); }

.bar { background: var(--navy-deep); color: #fff; }
.bar__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.bar__grid > div { padding: 22px 24px; border-left: 1px solid var(--navy-line); }
.bar__grid > div:first-child { padding-left: 0; border-left: 0; }
.bar dt { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.bar dd { margin-top: 6px; font-size: 0.9375rem; line-height: 1.45; }

/* ---------- page heads (interior) ---------- */
.phead { background: var(--navy); color: #fff; padding-block: clamp(40px, 5vw, 88px) clamp(44px, 5.5vw, 88px); }
.phead__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gap); }
.phead__main { grid-column: 1 / 10; }
.phead h1 { font-size: clamp(2rem, 1rem + 3.2vw, 3.5rem); }
.phead__lead { max-width: 38em; margin-top: 20px; font-size: 1.125rem; color: var(--on-navy); }
.crumbs { display: flex; flex-wrap: wrap; gap: 6px 10px; margin-bottom: clamp(20px, 3vw, 36px); font-size: 0.875rem; color: var(--on-navy-mute); }
.crumbs a { color: var(--on-navy-mute); }
.crumbs a:hover { color: #fff; }
.crumbs [aria-current] { color: #fff; }
.latin { margin-top: 10px; font-size: 1.0625rem; font-style: italic; color: var(--on-navy-mute); }
.phead .def { max-width: 32rem; margin-top: 28px; border-top-color: var(--navy-line); }
.phead .def > div { border-bottom-color: var(--navy-line); }
.phead .def dt { color: var(--on-navy-mute); }
.phead .def dd { color: #fff; }
.phead--product { padding: 0; min-height: clamp(30rem, 74vh, 46rem); }
.phead__media { grid-column: 3; position: relative; min-height: 24rem; background: var(--navy-deep); }
.phead__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phead .btn-row { margin-top: 28px; }

.onpage-bar { position: sticky; top: var(--header-h); z-index: 30; background: #fff; border-bottom: 1px solid var(--line); }
.onpage { display: flex; gap: 8px 28px; overflow-x: auto; padding: 14px 0; font-size: 0.875rem; white-space: nowrap; }
.onpage span { font-weight: 700; color: var(--muted); }
.onpage a { font-weight: 700; text-decoration: none; }
.onpage a:hover { text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 0.3em; }

/* ---------- sections ---------- */
.sec { padding-block: var(--pad); }
.sec--tint { background: var(--tint); }
.sec--navy { background: var(--navy); color: var(--on-navy); }
.sec--deep { background: var(--navy-deep); color: var(--on-navy); }
.sec--navy h2, .sec--navy h3, .sec--deep h2, .sec--deep h3 { color: #fff; }
.sec--navy a, .sec--deep a { color: #fff; }
.sec__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gap); }
.sec__head { grid-column: 1 / 5; align-self: start; }
.sec__body { grid-column: 5 / 13; min-width: 0; }
.sec__lead { max-width: 26em; margin-top: 16px; font-size: 1rem; color: var(--muted); }
.sec--navy .sec__lead, .sec--deep .sec__lead { color: var(--on-navy); }
.sec__lead + .sec__lead { margin-top: 10px; }
.sec--wide > .wrap > .sec__head { margin-bottom: clamp(28px, 3.5vw, 48px); }
.subhead { margin: 44px 0 14px; font-size: 1.25rem; letter-spacing: -0.01em; }
.prose { max-width: 38em; }
.prose p + p { margin-top: 1em; }
.note { max-width: 44em; margin-top: 14px; font-size: 0.875rem; color: var(--muted); }
.vision { max-width: 24em; margin-top: 10px; font-size: clamp(1.375rem, 1rem + 1.2vw, 2rem); line-height: 1.28; font-weight: 700; letter-spacing: -0.015em; color: var(--navy); }
.sec--navy .vision, .sec--deep .vision { color: #fff; }
.vision + .subhead { margin-top: 48px; }

@media (min-width: 961px) {
  .sec:not(.sec--wide) .sec__head { position: sticky; top: calc(var(--header-h) + 3.5rem); }
  .sec--wide > .wrap > .sec__head { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gap); align-items: end; }
  .sec--wide > .wrap > .sec__head h2 { grid-column: 1 / 5; }
  .sec--wide > .wrap > .sec__head .sec__lead { grid-column: 5 / 13; margin-top: 0; max-width: 40em; }
}

/* ---------- definition lists (facts, terms, contact) ---------- */
.def { border-top: 2px solid var(--navy); }
.def > div { display: grid; grid-template-columns: minmax(6.5rem, 10.5rem) minmax(0, 1fr); gap: 4px 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.def dt { font-size: 0.875rem; font-weight: 700; color: var(--muted); }
.def dd { font-size: 0.9375rem; overflow-wrap: anywhere; }
.def--tight > div { grid-template-columns: minmax(6rem, 8.5rem) minmax(0, 1fr); padding: 9px 0; }
.def--names dt { font-size: 0.9375rem; color: var(--navy); }
.def dd .text-link { margin-top: 6px; }
.sec--navy .def, .sec--deep .def { border-top-color: rgba(255, 255, 255, 0.5); }
.sec--navy .def > div, .sec--deep .def > div { border-bottom-color: var(--navy-line); }
.sec--navy .def dt, .sec--deep .def dt { color: var(--on-navy-mute); }
.sec--navy .def dd, .sec--deep .def dd { color: #fff; }

/* ---------- tables ---------- */
.tablepanel { border: 1px solid var(--line); background: #fff; }
.table-wrap { position: relative; overflow-x: auto; }
.table-wrap:focus-visible { outline-offset: -2px; }
.table { width: 100%; min-width: 34rem; border-collapse: collapse; font-size: 0.9375rem; font-variant-numeric: tabular-nums; }
.table th, .table td { padding: 14px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.table thead th { padding-block: 14px; border-bottom: 0; background: var(--navy); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; white-space: nowrap; }
.table tbody tr:last-child > * { border-bottom: 0; }
.table tbody th { min-width: 9rem; font-weight: 700; color: var(--navy); }
.table tbody tr:hover > * { background: var(--tint); }
.table--narrow { min-width: 0; max-width: 34rem; }
.table__action td { padding-top: 16px; }
.table--products { min-width: 52rem; }
.table--products tbody th, .table--products tbody td { padding-block: 22px; }
.table--products .pname { display: block; font-size: 1.25rem; line-height: 1.2; letter-spacing: -0.01em; color: var(--navy); text-decoration: none; }
.table--products .pname:hover { text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 0.2em; }
.table--products .pkick { display: block; margin-top: 4px; font-size: 0.875rem; font-weight: 400; color: var(--muted); }
.table--products .spec { display: block; }
.table--products .spec + .spec { margin-top: 4px; }
.table--products .spec span { color: var(--muted); }
.table--products .moq { font-size: 1.25rem; font-weight: 700; color: var(--navy); white-space: nowrap; }
/* closing row of the product table: the commodities that are not on the list yet */
.tablefoot { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px 32px; align-items: center; padding: 22px 20px; border-top: 1px solid var(--line); background: var(--tint); }
.tablefoot h3 { font-size: 1.25rem; line-height: 1.2; letter-spacing: -0.01em; }
.tablefoot__main p { max-width: 40em; margin-top: 4px; font-size: 0.9375rem; color: var(--muted); }
.tablefoot .btn-row { margin: 0; justify-content: flex-end; }

/* ---------- sourcing map ---------- */
.map-wrap { margin-bottom: clamp(20px, 3vw, 40px); }
.map { width: 100%; height: auto; }
.legend { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 var(--gap); border-top: 1px solid var(--navy-line); }
.legend__item { display: grid; grid-template-columns: 2.5rem minmax(0, 1fr); gap: 14px; padding: 22px 0; }
.badge { display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 50%; background: var(--gold); color: var(--navy); font-size: 0.875rem; font-weight: 700; }
.legend__item a { font-size: 1.125rem; font-weight: 700; text-decoration: none; }
.legend__item a:hover { text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 0.2em; }
.legend__item span:not(.badge) { display: block; margin-top: 4px; font-size: 0.9375rem; color: var(--on-navy); }
.legend__port { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--navy-line); font-size: 0.9375rem; color: #fff; }
.legend__port i { flex: none; width: 2rem; height: 2rem; border: 2px solid #fff; border-radius: 50%; position: relative; }
.legend__port i::after { content: ""; position: absolute; inset: 50% auto auto 50%; width: 8px; height: 8px; margin: -4px 0 0 -4px; border-radius: 50%; background: #fff; }
.map__isle { fill: rgba(255, 255, 255, 0.34); font: 700 13px var(--font); letter-spacing: 0.3em; text-anchor: middle; }
.map__pt circle { fill: var(--gold); stroke: var(--navy); stroke-width: 2.5; }
.map__pt text { fill: var(--navy); font: 700 12px var(--font); text-anchor: middle; dominant-baseline: central; pointer-events: none; }
.map__port circle:first-of-type { fill: none; stroke: #fff; stroke-width: 2.5; }
.map__port circle:nth-of-type(2) { fill: #fff; }
.map__port text { fill: #fff; font: 700 15px var(--font); paint-order: stroke; stroke: var(--navy); stroke-width: 5px; stroke-linejoin: round; }
.sec--map:has([data-p="1"]:hover) .map__pt:not([data-p="1"]),
.sec--map:has([data-p="2"]:hover) .map__pt:not([data-p="2"]),
.sec--map:has([data-p="3"]:hover) .map__pt:not([data-p="3"]),
.sec--map:has([data-p="4"]:hover) .map__pt:not([data-p="4"]),
.sec--map:has([data-p="5"]:hover) .map__pt:not([data-p="5"]),
.sec--map:has([data-p="6"]:hover) .map__pt:not([data-p="6"]) { opacity: 0.28; }

/* ---------- document thumbnails ---------- */
.docthumbs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--gap); }
.docthumbs img { width: 100%; height: auto; aspect-ratio: 210 / 297; object-fit: cover; object-position: top; background: #fff; box-shadow: 0 1px 2px rgba(2, 31, 58, 0.1), 0 10px 28px rgba(2, 31, 58, 0.16); }
.docthumbs figcaption { margin-top: 14px; font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.docthumbs__note { margin: 6px 0 36px; }

/* ---------- ledger, timeline, pairs, numbered, notes ---------- */
.ledger { counter-reset: step; border-top: 2px solid var(--navy); }
.ledger > li { counter-increment: step; display: grid; grid-template-columns: 2.75rem minmax(0, 1fr); gap: 4px 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.ledger > li::before { content: counter(step); font-size: 1.25rem; line-height: 1.25; font-weight: 700; color: var(--gold-text); }
.ledger__main p { margin-top: 4px; font-size: 0.9375rem; }
.glance { margin-top: 32px; }
.glance h3 { margin-bottom: 10px; font-size: 1rem; }
.glance .btn-row { margin-top: 20px; }

.timeline { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0 clamp(16px, 2.2vw, 36px); }
.timeline > li { position: relative; display: flex; flex-direction: column; padding-top: 30px; border-top: 2px solid var(--navy); }
.timeline > li::before { content: ""; position: absolute; top: -8px; left: 0; width: 14px; height: 14px; background: var(--gold); }
.timeline__n { display: block; font-size: 2.25rem; line-height: 1; font-weight: 700; letter-spacing: -0.03em; color: var(--navy); }
.timeline h3 { margin-top: 14px; font-size: 1.125rem; }
.timeline p { margin-top: 8px; font-size: 0.9375rem; color: var(--muted); }
.timeline p:not(.timeline__time) { margin-bottom: 18px; }
.timeline p.timeline__time { align-self: flex-start; margin-top: auto; padding: 4px 10px; border: 1px solid var(--line); background: #fff; font-size: 0.8125rem; font-weight: 700; color: var(--navy); }

.pairs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 var(--gap); border-top: 2px solid var(--navy); }
.pairs li { padding: 18px 0 22px; border-bottom: 1px solid var(--line); }
.pairs h3 { margin-bottom: 6px; }
.pairs p { font-size: 0.9375rem; color: var(--muted); }
.numbered { counter-reset: n; border-top: 2px solid var(--navy); }
.numbered li { counter-increment: n; display: grid; grid-template-columns: 2rem minmax(0, 1fr); gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 0.9375rem; }
.numbered li::before { content: counter(n); font-weight: 700; color: var(--gold-text); }
.sec--navy .numbered, .sec--deep .numbered { border-top-color: rgba(255, 255, 255, 0.5); }
.sec--navy .numbered li, .sec--deep .numbered li { border-bottom-color: var(--navy-line); color: #fff; }
.sec--navy .numbered li::before, .sec--deep .numbered li::before { color: var(--gold); }
.notes { margin-top: 28px; border-top: 1px solid var(--line); }
.notes li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.9375rem; }
.related { border-top: 2px solid var(--navy); }
.related li { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr) auto; gap: 6px 20px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--line); }
.related__name { font-size: 1.1875rem; font-weight: 700; }
.related span { font-size: 0.9375rem; color: var(--muted); }

/* ---------- faq ---------- */
.faq { border-top: 2px solid var(--navy); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 20px 48px 20px 0; list-style: none; cursor: pointer; font-weight: 700; line-height: 1.35; color: var(--navy); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before, .faq summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 14px; height: 2px; margin-top: -1px; background: var(--navy); }
.faq summary::before { transform: rotate(90deg); }
.faq details[open] summary::before { transform: none; }
.faq summary:hover { color: var(--navy-mid); }
.faq__a { max-width: 44em; padding: 0 48px 22px 0; }

/* ---------- gallery ---------- */
.figs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px var(--gap); }
.figs img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; background: var(--navy-deep); }
.figs figcaption { margin-top: 12px; font-size: 0.8125rem; line-height: 1.4; color: var(--on-navy); }
.figs figcaption span { margin-right: 0.4em; font-weight: 700; color: var(--gold); }

/* ---------- products page ---------- */
.pitem { padding-block: var(--pad); }
.pitem:nth-of-type(even) { background: var(--tint); }
.pitem__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gap); align-items: center; }
.pitem__media { grid-column: 1 / 6; display: block; aspect-ratio: 4 / 5; overflow: hidden; background: var(--navy-deep); }
.pitem__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1); }
.pitem__media:hover img { transform: scale(1.04); }
.pitem__body { grid-column: 7 / 13; }
.pitem:nth-of-type(even) .pitem__media { grid-column: 8 / 13; grid-row: 1; }
.pitem:nth-of-type(even) .pitem__body { grid-column: 1 / 7; grid-row: 1; }
.pitem h2 a { color: inherit; text-decoration: none; }
.pitem h2 a:hover { text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 0.2em; }
.pitem__kicker { margin-top: 8px; font-size: 0.9375rem; font-weight: 700; color: var(--gold-text); }
.pitem__sub { max-width: 34em; margin: 14px 0 24px; color: var(--muted); }

/* ---------- payment ---------- */
.pay-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--gap); }
.pay h3 { font-size: 1.25rem; }
.pay__crit { margin: 4px 0 16px; font-size: 0.9375rem; color: var(--muted); }
.pay__bar { display: flex; height: 2.5rem; border: 1px solid var(--navy); font-size: 0.875rem; font-weight: 700; }
.pay__bar span { display: flex; align-items: center; padding-left: 12px; white-space: nowrap; }
.pay__bar span:first-child { background: var(--navy); color: #fff; }
.pay__bar span:last-child { border-left: 1px solid var(--navy); background: #fff; color: var(--navy); }
.w-30 { width: 30%; } .w-50 { width: 50%; } .w-70 { width: 70%; }
.pay__legend { display: grid; gap: 8px; margin-top: 14px; }
.pay__legend > div { display: grid; grid-template-columns: 3rem minmax(0, 1fr); gap: 8px; }
.pay__legend dt { font-weight: 700; color: var(--navy); }
.pay__legend dd { font-size: 0.9375rem; color: var(--muted); }
.pay-grid + .def { margin-top: 36px; }

/* ---------- contact ---------- */
.contact-cols .btn-row { margin: 0 0 28px; }
.contact-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gap); align-items: start; }
.contact-main { grid-column: 1 / 8; min-width: 0; padding: clamp(24px, 3.4vw, 52px); border: 1px solid var(--line); background: #fff; }
.contact-side { grid-column: 8 / 13; min-width: 0; padding: clamp(24px, 3.4vw, 52px); background: var(--navy); color: var(--on-navy); }
.contact-side h2, .contact-side h3 { color: #fff; }
.contact-side h2 { margin-bottom: 18px; font-size: 1.5rem; }
.contact-side a { color: #fff; }
.contact-side .def { border-top-color: rgba(255, 255, 255, 0.5); }
.contact-side .def > div { border-bottom-color: var(--navy-line); }
.contact-side .def dt { color: var(--on-navy-mute); }
.contact-side .def dd { color: #fff; }
.contact-side .note, .contact-side .legal-line { color: var(--on-navy-mute); }
.contact-side .note { margin-top: 12px; }
.contact-side .numbered { border-top-color: rgba(255, 255, 255, 0.5); }
.contact-side .numbered li { border-bottom-color: var(--navy-line); color: #fff; }
.contact-side .numbered li::before { color: var(--gold); }
.legal-line { margin-top: 28px; font-size: 0.8125rem; color: var(--muted); }

/* ---------- forms ---------- */
.rfq h2 { font-size: 1.625rem; }
.form-legend { margin: 8px 0 22px; font-size: 0.875rem; color: var(--muted); }
.req { color: var(--err); font-weight: 700; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px var(--gap); }
.field--wide { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 6px; font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.field input, .field select, .field textarea {
  display: block; width: 100%; min-height: 3rem; padding: 10px 12px;
  border: 1px solid var(--line-strong); border-radius: 2px; background: #fff; color: var(--ink); font: inherit; font-size: 1rem; line-height: 1.4;
}
.field textarea { min-height: 7.5rem; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--navy); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--navy); outline-offset: 1px; border-color: var(--navy); }
.qty { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: 8px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border: 2px solid var(--err); }
.form-error { margin-top: 18px; padding: 12px 14px; border-left: 4px solid var(--err); background: #FBEFEF; color: #6B1414; font-size: 0.9375rem; font-weight: 700; }
.form-error[hidden] { display: none; }
.form-note { margin-top: 16px; max-width: 40em; font-size: 0.8125rem; color: var(--muted); }

/* ---------- footer ---------- */
.site-footer { padding-block: clamp(48px, 6vw, 80px) 28px; border-top: 3px solid var(--gold); background: var(--navy-deep); color: var(--on-navy); font-size: 0.9375rem; }
.site-footer a { color: #fff; text-decoration-color: rgba(255, 255, 255, 0.4); }
.site-footer a:hover { text-decoration-color: var(--gold); }
.site-footer .brand:hover { text-decoration: none; }
.brand--footer { color: #fff; }
.brand--footer .brand__tag { color: var(--gold); }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: var(--gap) clamp(24px, 4vw, 64px); }
.site-footer h2 { margin: 0 0 14px; font-size: 0.8125rem; line-height: 1.3; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.footer__list li { padding: 5px 0; }
.footer__list span { margin-left: 0.4em; font-size: 0.8125rem; color: var(--on-navy-mute); }
.footer__legal { margin-top: 20px; }
.footer__brand address { max-width: 22em; margin-top: 10px; }
.footer__bar { display: flex; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--navy-line); font-size: 0.8125rem; color: var(--on-navy-mute); }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .bar__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bar__grid > div:nth-child(4) { padding-left: 0; border-left: 0; }
  .timeline { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px clamp(16px, 2.2vw, 36px); }
  .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .hero, .phead--product { display: block; }
  .hero { min-height: 0; }
  .hero__text, .phead--product .phead__main { padding-inline: var(--gutter); padding-block: clamp(40px, 7vw, 72px); max-width: calc(var(--wrap) + 2 * var(--gutter)); margin-inline: auto; }
  .hero__panels { grid-template-columns: repeat(2, minmax(0, 1fr)); height: clamp(21rem, 56vw, 32rem); }
  .hpanel { min-height: 0; }
  .phead__media { height: clamp(16rem, 52vw, 28rem); min-height: 0; }
}

@media (max-width: 960px) {
  .nav, .header__cta, .header__tools .lang { display: none; }
  .js .menu-btn { display: inline-flex; }
  .header__tools { margin-left: auto; }
  .no-js .header__bar { flex-wrap: wrap; padding-block: 10px; }
  .no-js .nav { display: flex; order: 3; width: 100%; margin: 0; flex-wrap: wrap; gap: 4px 20px; }
  .no-js .header__tools .lang { display: flex; }
  .no-js .header__cta { display: inline-flex; }

  .phead__main { grid-column: 1 / -1; }
  .sec__grid { display: block; }
  .sec__head { margin-bottom: 28px; }
  .sec__lead { max-width: 40em; }
  .pitem__grid { display: block; }
  .pitem__media { max-width: 26rem; margin-bottom: 24px; }
  .contact-grid { display: block; }
  .contact-side { margin-top: 24px; }
  .figs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .tablefoot { grid-template-columns: minmax(0, 1fr); padding: 20px 18px; }
  .tablefoot .btn-row { justify-content: flex-start; }
  .table--stack { min-width: 0; }
  .table--stack thead { display: none; }
  .table--stack tr { display: block; padding: 8px 0; border-bottom: 1px solid var(--line); }
  .table--stack tbody tr:last-child { border-bottom: 0; }
  .table--stack th, .table--stack td { display: block; padding: 6px 18px; border: 0; }
  .table--stack td::before { content: attr(data-label); display: block; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
  .table--stack tbody tr:hover > * { background: none; }
}

@media (max-width: 640px) {
  .bar__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bar__grid > div, .bar__grid > div:nth-child(4) { padding: 16px 14px; border-left: 0; border-top: 1px solid var(--navy-line); }
  .bar__grid > div:nth-child(odd) { padding-left: 0; }
  .bar__grid > div:first-child, .bar__grid > div:nth-child(2) { border-top: 0; }
  .timeline { grid-template-columns: minmax(0, 1fr); gap: 0; border-left: 2px solid var(--navy); }
  .timeline > li { padding: 0 0 32px 26px; border-top: 0; }
  .timeline > li::before { top: 4px; left: -8px; }
  .pairs, .pay-grid, .form-grid { grid-template-columns: minmax(0, 1fr); }
  .related li { grid-template-columns: minmax(0, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__bar { flex-direction: column; }
  .brand__tag { display: none; }
  .hpanel__label { padding: 12px 12px 14px; }
  .hpanel__label strong { font-size: 0.8125rem; }
  .hpanel__label small, .hpanel__label .icon { display: none; }
  .hpanel__label { min-height: 5.75rem; align-content: start; }
  .map__isle, .map__port text { display: none; }
  .legend { grid-template-columns: minmax(0, 1fr); }
  .docthumbs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .def > div, .def--tight > div { grid-template-columns: minmax(0, 1fr); gap: 2px; }
  .figs { grid-template-columns: minmax(0, 1fr); }
  .btn-row .btn { flex: 1 1 100%; }
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 400px) {
  .header__bar { gap: 12px; }
  .brand { gap: 8px; min-width: 0; }
  .brand__mark { height: 1.75rem; }
  .brand__name { font-size: 0.6875rem; letter-spacing: 0.05em; }
}

@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto !important; } .hpanel:hover img, .pitem__media:hover img { transform: none; } }

/* ---------- print: a product page prints like a datasheet ---------- */
@media print {
  @page { margin: 16mm 14mm; }
  html { font-size: 10.5pt; }
  body { color: #000; }
  .skip-link, .site-header, .site-footer .footer__grid, .onpage-bar, .btn-row, .text-link--btn, .related, .contact-cols .btn-row, .hero__panels, .bar, .sec--map, .docthumbs, .docthumbs__note { display: none !important; }
  .print-head { display: block; margin-bottom: 14pt; padding-bottom: 8pt; border-bottom: 1.5pt solid #000; font-size: 8.5pt; }
  .hero, .phead, .phead--product, .sec--navy, .sec--deep, .sec--tint, .site-footer, .contact-side { background: none !important; color: #000 !important; }
  .hero h1, .phead h1, .sec--navy h2, .sec--navy h3, .contact-side h2, .phead__lead, .latin, .crumbs, .crumbs a, .crumbs [aria-current], .sec--navy .sec__lead { color: #000 !important; }
  .site-footer { padding: 10pt 0 0; border: 0; }
  .footer__bar { margin-top: 0; padding-top: 6pt; border-top: 0.75pt solid #000; color: #000; }
  .sec, .pitem { padding-block: 12pt; border-top: 0.75pt solid #000; }
  h1, h2, h3, .sec__head { break-after: avoid; }
  figure, .pairs li, .related li { break-inside: avoid; }
  .sec__grid, .hero, .phead--product, .phead__grid, .pitem__grid, .contact-grid { display: block; }
  .sec__head { margin-bottom: 8pt; }
  .hero__text, .phead--product .phead__main { padding: 0; }
  .phead__media { display: block; position: static; height: auto; max-width: 55mm; margin-top: 10pt; }
  .phead__media img { position: static; height: auto; }
  .table-wrap { overflow: visible; }
  .table { min-width: 0; font-size: 9pt; }
  .table thead th { background: none; color: #000; border-bottom: 1pt solid #000; }
  .table thead { display: table-header-group; }
  .table tr, .def > div, .faq details { break-inside: avoid; }
  .faq details:not([open]) > .faq__a { display: block; }
  .def, .def > div { border-color: #000; }
  .def dt, .def dd { color: #000 !important; }
  a { color: #000; text-decoration: none; }
  .figs { grid-template-columns: repeat(4, 1fr); }
}
