:root {
  --ink: #1d2731;
  --slate: #52606d;
  --slate-soft: #6b7682;
  --surface: #f4f1ea;
  --surface-alt: #e8e3d6;
  --accent: #7a3b2e;
  --accent-deep: #5d2c22;
  --hairline: #c8c0ad;
  --hairline-strong: #a89e85;

  --serif: Georgia, "Times New Roman", "Liberation Serif", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --col: 760px;
  --col-wide: 1040px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
a:hover { border-bottom-color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0;
  margin: 0 0 0.5em 0;
}
h1 { font-size: 30px; line-height: 1.2; }
h2 { font-size: 22px; line-height: 1.25; }
h3 { font-size: 17px; line-height: 1.3; font-weight: 700; }
h4 { font-size: 14px; font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.12em; color: var(--slate); font-weight: 700; }

p { margin: 0 0 1em 0; }
p.lede { font-size: 17px; line-height: 1.5; color: var(--ink); }

ul, ol { margin: 0 0 1em 0; padding-left: 18px; }
li { margin-bottom: 0.25em; }

hr {
  border: 0;
  border-top: 1px solid var(--hairline);
  margin: 28px 0;
}
hr.heavy { border-top: 2px solid var(--ink); }

/* Eyebrow label */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--slate);
  font-weight: 700;
  margin: 0 0 6px 0;
  display: block;
}

/* Top utility bar */
.topbar {
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
  font-size: 12px;
  color: var(--slate);
}
.topbar .topbar-inner {
  max-width: var(--col-wide);
  margin: 0 auto;
  padding: 6px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.topbar a { color: var(--slate); }
.topbar a:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* Header */
.site-header {
  border-bottom: 2px solid var(--ink);
  background: var(--surface);
}
.site-header-inner {
  max-width: var(--col-wide);
  margin: 0 auto;
  padding: 18px 24px 14px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand .brand-name {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-weight: 400;
}
.brand .brand-rule {
  height: 1px;
  background: var(--ink);
  margin: 6px 0 5px 0;
}
.brand .brand-sub {
  font-family: var(--sans);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--slate);
}
.brand a { border: 0; color: inherit; }

.site-meta {
  text-align: right;
  font-size: 12px;
  color: var(--slate);
  line-height: 1.5;
}
.site-meta strong { color: var(--ink); font-weight: 700; }

/* Primary nav */
.site-nav {
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
}
.site-nav-inner {
  max-width: var(--col-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.site-nav a {
  display: inline-block;
  padding: 10px 16px 10px 0;
  margin-right: 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  border-bottom: 0;
  font-weight: 700;
}
.site-nav a + a { border-left: 1px solid var(--hairline); padding-left: 18px; }
.site-nav a:hover { color: var(--accent); }
.site-nav a.current { color: var(--accent); }

/* Layout containers */
main { display: block; }
.wrap {
  max-width: var(--col-wide);
  margin: 0 auto;
  padding: 32px 24px 56px 24px;
}
.col {
  max-width: var(--col);
  margin: 0 auto;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  padding: 36px 0 24px 0;
  border-bottom: 1px solid var(--hairline);
}
.hero h1 { margin-top: 4px; }
.hero .lede { color: var(--ink); }

.factsheet {
  border: 1px solid var(--hairline);
  background: #fbf8f1;
  padding: 0;
  font-size: 12.5px;
}
.factsheet h4 {
  margin: 0;
  padding: 8px 12px;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--hairline);
  font-size: 11px;
}
.factsheet dl {
  margin: 0;
  padding: 4px 12px 8px 12px;
}
.factsheet dt {
  color: var(--slate);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 8px;
}
.factsheet dd {
  margin: 1px 0 0 0;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12.5px;
}

/* Section heading */
.section {
  padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
}
.section:last-child { border-bottom: 0; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 6px;
  margin-bottom: 22px;
}
.section-head h2 { margin: 0; font-size: 20px; }
.section-head .ref {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 0.04em;
}

/* Three-column prose */
.three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
.three-col h3 { margin-bottom: 8px; font-size: 15px; }
.three-col p { font-size: 14px; color: var(--ink); }

/* Services grid */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.service-grid .cell {
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 18px 20px 22px 20px;
  background: var(--surface);
}
.service-grid .cell .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 0.05em;
}
.service-grid .cell h3 {
  margin: 4px 0 6px 0;
  font-size: 15px;
}
.service-grid .cell p {
  margin: 0;
  font-size: 13.5px;
  color: var(--slate);
}

/* Plain table */
table.plain {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
table.plain th,
table.plain td {
  text-align: left;
  padding: 9px 12px;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
}
table.plain th {
  background: var(--surface-alt);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  border-bottom: 1px solid var(--hairline-strong);
}
table.plain tr:nth-child(even) td { background: rgba(232, 227, 214, 0.4); }
table.plain td.mono { font-family: var(--mono); font-size: 12.5px; }

/* Ports list */
.ports {
  columns: 3;
  column-gap: 28px;
  font-size: 13.5px;
}
.ports div {
  break-inside: avoid;
  padding: 4px 0;
  border-bottom: 1px dotted var(--hairline);
  display: flex;
  justify-content: space-between;
}
.ports div span:last-child {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--slate);
}

/* CTA box */
.cta-box {
  border: 1px solid var(--ink);
  padding: 18px 22px;
  background: var(--surface-alt);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.cta-box p { margin: 0; font-size: 14px; color: var(--ink); }
.btn {
  display: inline-block;
  padding: 9px 18px;
  background: var(--accent);
  color: #fbf8f1;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  border: 1px solid var(--accent-deep);
}
.btn:hover { background: var(--accent-deep); border-bottom: 1px solid var(--accent-deep); color: #fbf8f1; }
.btn.ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: var(--surface); }

/* Notes / sidebars */
.note {
  font-size: 13px;
  color: var(--slate);
  border-left: 2px solid var(--hairline-strong);
  padding: 4px 0 4px 14px;
  margin: 18px 0;
}

/* Timeline */
.timeline {
  border-left: 2px solid var(--ink);
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.timeline li {
  position: relative;
  padding: 6px 0 16px 22px;
  margin: 0;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 12px;
  width: 12px;
  height: 12px;
  background: var(--surface);
  border: 2px solid var(--ink);
}
.timeline .year {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--accent);
  display: block;
  margin-bottom: 2px;
}
.timeline p { margin: 0; font-size: 14px; color: var(--ink); }

/* Accreditation badges */
.accreds {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0;
}
.accreds .badge {
  border: 1px solid var(--ink);
  padding: 10px 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--surface);
  font-weight: 700;
  line-height: 1.2;
}
.accreds .badge small {
  display: block;
  font-weight: 400;
  font-size: 9.5px;
  color: var(--slate);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* Form */
form.enquiry {
  border: 1px solid var(--hairline);
  background: #fbf8f1;
  padding: 20px 22px;
}
form.enquiry .field { margin-bottom: 14px; }
form.enquiry label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate);
  font-weight: 700;
  margin-bottom: 4px;
}
form.enquiry input,
form.enquiry select,
form.enquiry textarea {
  width: 100%;
  border: 1px solid var(--hairline-strong);
  background: var(--surface);
  padding: 8px 10px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
}
form.enquiry input:focus,
form.enquiry select:focus,
form.enquiry textarea:focus {
  outline: 1px solid var(--ink);
  outline-offset: -1px;
}
form.enquiry .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
form.enquiry small.hint {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: var(--slate);
}

/* Footer */
footer.site-footer {
  border-top: 2px solid var(--ink);
  background: var(--surface-alt);
  font-size: 12px;
  color: var(--slate);
  margin-top: 24px;
}
footer.site-footer .footer-inner {
  max-width: var(--col-wide);
  margin: 0 auto;
  padding: 24px 24px 12px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
}
footer.site-footer h4 {
  font-size: 10.5px;
  margin-bottom: 8px;
  color: var(--slate);
}
footer.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer.site-footer li { margin-bottom: 4px; }
footer.site-footer a { color: var(--slate); }
footer.site-footer a:hover { color: var(--ink); }
footer.site-footer .colophon {
  border-top: 1px solid var(--hairline);
  margin: 0;
  padding: 12px 24px;
  font-size: 11px;
  color: var(--slate);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
footer.site-footer .colophon .meta {
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

/* Brand pack page */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 18px 0;
}
.swatch {
  border: 1px solid var(--hairline);
  background: var(--surface);
}
.swatch .chip { height: 110px; }
.swatch .info { padding: 10px 12px; font-size: 12px; }
.swatch .info .role {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate);
  font-weight: 700;
}
.swatch .info .hex {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  margin-top: 2px;
}
.swatch .info .desc {
  margin-top: 4px;
  color: var(--slate);
  font-size: 11.5px;
  line-height: 1.4;
}

.type-spec {
  border: 1px solid var(--hairline);
  background: var(--surface);
  padding: 22px 24px;
  margin-bottom: 14px;
}
.type-spec .label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate);
  font-weight: 700;
  margin-bottom: 6px;
}
.type-spec .sample-serif { font-family: var(--serif); font-size: 32px; color: var(--ink); }
.type-spec .sample-sans { font-family: var(--sans); font-size: 18px; color: var(--ink); }
.type-spec .stack {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--slate);
  margin-top: 10px;
}

/* Hero with image */
.hero-banner {
  position: relative;
  background: var(--ink);
  color: #f4f1ea;
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}
.hero-banner .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-banner .hero-image svg { width: 100%; height: 100%; display: block; }
.hero-banner .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29,39,49,0.92) 0%, rgba(29,39,49,0.72) 55%, rgba(29,39,49,0.35) 100%);
  z-index: 1;
}
.hero-banner .hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--col-wide);
  margin: 0 auto;
  padding: 60px 24px 56px 24px;
}
.hero-banner .hero-content .eyebrow { color: #c8c0ad; }
.hero-banner h1 {
  color: #fbf8f1;
  font-size: 38px;
  line-height: 1.15;
  max-width: 660px;
  margin: 8px 0 16px 0;
}
.hero-banner .lede {
  color: #e8e3d6;
  max-width: 560px;
  font-size: 16px;
}
.hero-banner .hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-banner .btn.ghost {
  background: transparent;
  color: #fbf8f1;
  border-color: #fbf8f1;
}
.hero-banner .btn.ghost:hover { background: #fbf8f1; color: var(--ink); }

/* Trust strip */
.trust-strip {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--hairline);
}
.trust-strip-inner {
  max-width: var(--col-wide);
  margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  font-size: 12px;
  color: var(--slate);
  text-align: center;
}
.trust-strip strong { color: var(--ink); display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.trust-strip .item { border-right: 1px solid var(--hairline); padding-right: 18px; }
.trust-strip .item:last-child { border-right: 0; padding-right: 0; }

/* Service cards (with icon) */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.svc-cards .card {
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
  padding: 22px 22px 24px 22px;
  display: flex;
  flex-direction: column;
}
.svc-cards .card:hover { background: #fbf8f1; }
.svc-cards .card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  color: var(--accent);
}
.svc-cards .card .icon svg { width: 100%; height: 100%; display: block; }
.svc-cards .card h3 { margin: 0 0 6px 0; font-size: 17px; }
.svc-cards .card p { margin: 0 0 10px 0; font-size: 13.5px; color: var(--slate); }
.svc-cards .card .more {
  margin-top: auto;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--accent);
  border: 0;
}
.svc-cards .card .more::after { content: " \203A"; }

/* Routes / regional table */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 18px 0;
}
.routes-grid .group {
  border: 1px solid var(--hairline);
  background: var(--surface);
}
.routes-grid .group h3 {
  margin: 0;
  padding: 10px 14px;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate);
  font-weight: 700;
}
.routes-grid .group ul {
  list-style: none;
  margin: 0;
  padding: 8px 14px 12px 14px;
  columns: 2;
  column-gap: 16px;
}
.routes-grid .group li {
  font-size: 13px;
  padding: 3px 0;
  border-bottom: 1px dotted var(--hairline);
  break-inside: avoid;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.routes-grid .group li span:last-child {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--slate);
}

/* Why us / numbered points */
.points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 18px 0;
}
.points .pt {
  border-top: 2px solid var(--ink);
  padding-top: 14px;
}
.points .pt .n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.points .pt h3 { font-size: 16px; margin: 0 0 6px 0; }
.points .pt p { font-size: 13.5px; color: var(--slate); margin: 0; }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 18px 0;
}
.testimonial {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 18px;
  background: transparent;
}
.testimonial blockquote {
  margin: 0 0 12px 0;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink);
}
.testimonial cite {
  font-style: normal;
  font-size: 12px;
  color: var(--slate);
  letter-spacing: 0.04em;
}
.testimonial cite strong { color: var(--ink); font-weight: 700; }

/* CTA strip */
.cta-strip {
  background: var(--ink);
  color: #fbf8f1;
  border-top: 2px solid var(--ink);
}
.cta-strip-inner {
  max-width: var(--col-wide);
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip h2 { color: #fbf8f1; font-size: 22px; margin: 0; }
.cta-strip p { color: #c8c0ad; margin: 4px 0 0 0; font-size: 14px; }
.cta-strip .btn.ghost { background: transparent; color: #fbf8f1; border-color: #fbf8f1; }
.cta-strip .btn.ghost:hover { background: #fbf8f1; color: var(--ink); }

/* Divider block (linear gradient band) */
.photo-block {
  height: 120px;
  background:
    linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0,0,0,0.18) 100%),
    linear-gradient(90deg, #13191f 0%, #1d2731 35%, #28323d 65%, #1d2731 100%);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.photo-block::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: rgba(200,192,173,0.18);
}
.photo-block .caption {
  position: absolute;
  left: 24px;
  bottom: 14px;
  color: #e8e3d6;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(29,39,49,0.7);
  padding: 4px 9px;
  border: 1px solid #c8c0ad;
}

/* Responsive */
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; gap: 16px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .svc-cards { grid-template-columns: 1fr 1fr; }
  .ports { columns: 2; }
  .routes-grid { grid-template-columns: 1fr; }
  .points { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trust-strip .item { border-right: 0; padding-right: 0; }
  footer.site-footer .footer-inner { grid-template-columns: 1fr 1fr; }
  .swatch-grid { grid-template-columns: repeat(2, 1fr); }
  form.enquiry .row { grid-template-columns: 1fr; }
  .hero-banner h1 { font-size: 30px; }
}
@media (max-width: 540px) {
  body { font-size: 14.5px; }
  .service-grid { grid-template-columns: 1fr; }
  .svc-cards { grid-template-columns: 1fr; }
  .ports { columns: 1; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  footer.site-footer .footer-inner { grid-template-columns: 1fr; }
  .swatch-grid { grid-template-columns: 1fr; }
  .site-meta { text-align: left; }
  .site-header-inner { flex-direction: column; align-items: flex-start; }
  .topbar .topbar-inner { flex-direction: column; gap: 2px; }
  h1 { font-size: 26px; }
  .hero-banner h1 { font-size: 26px; }
  .hero-banner .hero-content { padding: 40px 20px; }
  .routes-grid .group ul { columns: 1; }
}
