:root {
  --navy: #071f35;
  --navy-2: #0d304d;
  --gold: #c5963c;
  --gold-pale: #dfc58f;
  --ivory: #f7f3ea;
  --paper: #fcfaf5;
  --stone: #ded8cd;
  --stone-light: #eee9e0;
  --ink: #172735;
  --muted: #64717a;
  --white: #fffdf8;
  --max: 1200px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; }
a { color: inherit; }

h1, h2, h3, blockquote {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
}

h1 {
  max-width: 900px;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  line-height: .98;
}

h2 {
  max-width: 800px;
  font-size: clamp(2.35rem, 4.7vw, 4.6rem);
  line-height: 1.04;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.16;
}

p { margin: 0 0 1.25rem; }
ul { margin: 0; padding-left: 1.2rem; }
li::marker { color: var(--gold); }

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.narrow { max-width: 760px; }

.eyebrow {
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section {
  padding: clamp(76px, 10vw, 132px) 0;
}

.section-sm { padding: clamp(58px, 7vw, 92px) 0; }
.section-stone { background: var(--ivory); }
.section-navy { color: #d6dee4; background: var(--navy); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy .eyebrow { color: var(--gold-pale); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 74px);
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-navy .section-heading > p { color: #aebbc5; }

.prose {
  color: #4f5d67;
  font-size: 1.05rem;
}

.lead {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  min-height: 52px;
  padding: .85rem 1.25rem;
  border: 1px solid var(--gold);
  color: var(--navy);
  background: var(--gold);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.2;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover, .button:focus-visible {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.button-outline {
  color: var(--navy);
  background: transparent;
}

.section-navy .button:hover, .section-navy .button:focus-visible {
  border-color: var(--white);
  color: var(--navy);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--navy);
  font-size: .86rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

.text-link::after { content: "→"; color: var(--gold); }

.cta-note {
  display: block;
  margin-top: .65rem;
  color: var(--muted);
  font-size: .78rem;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(7,31,53,.1);
  background: rgba(252,250,245,.96);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  min-height: 94px;
}

.logo-link {
  display: flex;
  align-items: center;
  width: 124px;
  height: 90px;
  overflow: hidden;
}

.logo-link img {
  display: block;
  width: auto;
  height: 82px;
  mix-blend-mode: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 38px);
  margin-left: auto;
}

.site-nav > a:not(.button) {
  position: relative;
  padding: .5rem 0;
  color: #33444f;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .button { min-height: 44px; padding: .72rem 1rem; }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid var(--stone);
  color: var(--navy);
  background: transparent;
  font: inherit;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 11vw, 148px) 0 clamp(82px, 10vw, 132px);
  background:
    linear-gradient(90deg, transparent 0 68%, rgba(198,150,60,.055) 68% 100%),
    var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  top: -155px;
  right: -95px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(198,150,60,.2);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, .62fr);
  gap: clamp(55px, 9vw, 130px);
  align-items: center;
}

.hero-copy {
  max-width: 830px;
  margin-top: 2rem;
  color: #52606a;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: flex-start;
  margin-top: 2.4rem;
}

.hero-side {
  padding: clamp(28px, 4vw, 48px);
  border-top: 4px solid var(--gold);
  background: var(--navy);
}

.hero-side p {
  color: #c1ccd4;
  font-size: .93rem;
}

.hero-side strong {
  display: block;
  margin-bottom: 1.3rem;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.22;
}

.hero-side ul {
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(255,255,255,.14);
  list-style: none;
}

.hero-side li {
  padding: .55rem 0;
  color: #e1e6e9;
  font-size: .83rem;
  letter-spacing: .04em;
}

.page-hero {
  padding: clamp(78px, 10vw, 130px) 0;
  background:
    linear-gradient(110deg, var(--navy) 0 70%, var(--navy-2) 70% 100%);
}

.page-hero .eyebrow { color: var(--gold-pale); }
.page-hero h1 { max-width: 940px; color: var(--white); font-size: clamp(3.1rem, 6vw, 5.8rem); }
.page-hero .hero-copy { max-width: 800px; color: #c0cbd3; }
.page-hero .cta-note { color: #93a3af; }

/* Content structures */
.question-grid {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.question-list {
  margin: 0;
  padding: 0;
  border-top: 3px solid var(--gold);
  list-style: none;
}

.question-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid var(--stone);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.3;
}

.question-list span {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .65rem;
  letter-spacing: .12em;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 105px);
  align-items: center;
}

.feature-panel {
  padding: clamp(32px, 5vw, 60px);
  border-top: 4px solid var(--gold);
  background: var(--ivory);
}

.feature-panel ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  margin-top: 1.6rem;
  list-style: none;
  padding: 0;
}

.feature-panel li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--stone);
  color: #475761;
  font-size: .88rem;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.path-card {
  position: relative;
  min-height: 100%;
  padding: clamp(28px, 3.7vw, 45px);
  border: 1px solid var(--stone);
  background: rgba(255,255,255,.28);
}

.path-card:nth-child(2) {
  border-top: 4px solid var(--gold);
  background: #f0ebe1;
}

.path-number {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.2rem;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.path-card h3 { min-height: 76px; margin-bottom: 1.3rem; }
.path-card p { color: #53616a; font-size: .91rem; }

.insight-grid,
.audience-grid,
.values-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--stone);
  border-left: 1px solid var(--stone);
}

.insight-grid > *,
.audience-grid > *,
.values-grid > *,
.category-grid > * {
  min-height: 118px;
  padding: 28px;
  border-right: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.insight-grid span,
.audience-grid span,
.category-grid span {
  display: block;
  margin-bottom: .65rem;
  color: var(--gold);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.insight-grid p,
.audience-grid p,
.category-grid p {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.3;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--stone);
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--stone);
  color: #41515c;
  font-size: .93rem;
}

.check-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.statement {
  padding: clamp(38px, 6vw, 72px);
  background: var(--navy);
}

.statement blockquote {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.1;
}

.statement p {
  margin: 1.6rem 0 0;
  color: var(--gold-pale);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.process-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 2.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--stone);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 22px 20px 22px 0;
  border-bottom: 1px solid var(--stone);
}

.process-list li:nth-child(odd) { border-right: 1px solid var(--stone); }
.process-list li:nth-child(even) { padding-left: 24px; }
.process-list span { color: var(--gold); font-size: .68rem; letter-spacing: .1em; }
.process-list p { margin: 0; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; line-height: 1.3; }

.aside-note {
  margin-top: 2rem;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--ivory);
  color: #52606a;
}

/* CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 126px) 0;
  color: #c5d0d7;
  background: var(--navy);
}

.final-cta::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(198,150,60,.2);
  border-radius: 50%;
}

.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { max-width: 880px; color: var(--white); }
.final-cta p { max-width: 720px; margin: 1.5rem 0 2rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(50px, 8vw, 105px);
  align-items: start;
}

.call-card {
  position: sticky;
  top: 125px;
  padding: clamp(30px, 4vw, 50px);
  border-top: 4px solid var(--gold);
  color: #cbd4da;
  background: var(--navy);
}

.call-card h2 { color: var(--white); font-size: clamp(2.2rem, 4vw, 3.8rem); }
.call-card h3 { margin: 1.5rem 0 .8rem; color: var(--gold-pale); }
.call-card ul { margin: 1.6rem 0 2rem; }
.call-card li { margin-bottom: .6rem; font-size: .9rem; }

.form-wrap h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
.form-wrap > p { color: var(--muted); }

.enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
  margin-top: 2.5rem;
}

.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }

label {
  color: var(--navy);
  font-size: .78rem;
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #c9c3b8;
  border-radius: 0;
  color: var(--ink);
  background: #fffefa;
  font: inherit;
  font-size: .95rem;
}

textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--gold); outline-offset: 2px; border-color: var(--gold); }
.helper { color: var(--muted); font-size: .76rem; line-height: 1.4; }
.form-note { margin: .8rem 0 0; color: var(--muted); font-size: .78rem; }

/* Footer */
.site-footer {
  padding: 58px 0 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #aab7c0;
  background: #061929;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 50px;
  padding-bottom: 44px;
}

.footer-brand img {
  display: block;
  width: auto;
  height: 120px;
  padding: 0;
  background: transparent;
  mix-blend-mode: normal;
}

.footer-brand p { max-width: 340px; margin: 1.2rem 0 0; font-size: .86rem; }
.footer-title { color: var(--gold-pale); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; margin-top: 1rem; }
.footer-links a { color: #d0d8dd; font-size: .86rem; text-decoration: none; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--gold-pale); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .72rem;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-wrap { min-height: 84px; }
  .logo-link { width: 109px; height: 80px; }
  .logo-link img { width: auto; height: 72px; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    position: fixed;
    inset: 85px 0 auto;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 24px;
    border-bottom: 1px solid var(--stone);
    background: var(--paper);
  }
  .site-nav.open { display: grid; }
  .site-nav > a:not(.button) { padding: 15px 0; border-bottom: 1px solid var(--stone); font-size: 1rem; }
  .site-nav .button { margin-top: 20px; }
  .hero-grid,
  .question-grid,
  .feature-split,
  .contact-grid,
  .section-heading { grid-template-columns: 1fr; }
  .hero-side { max-width: 620px; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card h3 { min-height: 0; }
  .insight-grid, .audience-grid, .values-grid, .category-grid { grid-template-columns: 1fr 1fr; }
  .call-card { position: static; }
  .footer-brand img { height: 100px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 32px), var(--max)); }
  .nav-wrap { min-height: 74px; }
  .logo-link { width: 96px; height: 70px; }
  .logo-link img { width: auto; height: 62px; }
  .site-nav { inset: 75px 0 auto; }
  .hero { padding-top: 74px; }
  .hero-actions { display: grid; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .feature-panel ul,
  .check-list,
  .process-list,
  .enquiry-form { grid-template-columns: 1fr; }
  .process-list li:nth-child(odd) { border-right: 0; }
  .process-list li:nth-child(even) { padding-left: 0; }
  .field { grid-column: 1; }
  .insight-grid, .audience-grid, .values-grid, .category-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand img { height: 90px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Premium sourcing interface upgrade */
:root {
  --navy-3: #102b43;
  --navy-soft: #183b56;
  --gold-wash: #f1e8d6;
  --line-dark: rgba(7,31,53,.14);
}

.hero {
  padding-top: clamp(74px, 8vw, 112px);
  background:
    radial-gradient(circle at 89% 5%, rgba(198,150,60,.08), transparent 25%),
    linear-gradient(90deg, transparent 0 72%, rgba(198,150,60,.04) 72% 100%),
    var(--paper);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(410px, .97fr);
  gap: clamp(50px, 6vw, 86px);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 6.1vw, 6rem);
}

.route-intelligence {
  position: relative;
  padding: 8px;
  border: 1px solid rgba(7,31,53,.15);
  background: #e9e3d8;
  box-shadow: 0 28px 75px rgba(7,31,53,.14);
}

.route-intelligence::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(198,150,60,.34);
}

.intel-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  padding: 21px 22px;
  color: var(--white);
  background: var(--navy);
}

.intel-head strong {
  display: block;
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.intel-kicker, .intel-stage {
  color: var(--gold-pale);
  font-size: .61rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.intel-stage {
  padding: 6px 8px;
  border: 1px solid rgba(223,197,143,.4);
  white-space: nowrap;
}

.intel-project {
  display: grid;
  gap: 3px;
  padding: 17px 20px;
  border-right: 1px solid var(--stone);
  border-left: 1px solid var(--stone);
  background: var(--paper);
}

.intel-project span,
.next-action span {
  color: var(--muted);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.intel-project b {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
}

.intel-project small { color: var(--muted); font-size: .7rem; }

.route-option {
  padding: 16px 20px;
  border: 1px solid var(--stone);
  border-bottom: 0;
  background: #fffefa;
}

.route-option.recommended {
  border-left: 3px solid var(--gold);
  background: #f6f0e5;
}

.route-option-head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}

.route-option-head > span {
  display: flex;
  align-items: center;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .96rem;
}

.route-option-head i,
.supplier-table-row strong > i {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  margin-right: 9px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .61rem;
  font-style: normal;
  font-weight: 700;
}

.route-option-head em {
  color: var(--gold);
  font-size: .6rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.route-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 13px;
  border-top: 1px solid var(--stone);
  border-left: 1px solid var(--stone);
}

.route-metrics span {
  display: grid;
  gap: 2px;
  padding: 8px 10px;
  border-right: 1px solid var(--stone);
  background: rgba(255,255,255,.52);
}

.route-metrics small { color: var(--muted); font-size: .56rem; letter-spacing: .07em; text-transform: uppercase; }
.route-metrics b { color: var(--navy); font-size: .71rem; }

.confidence {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  margin-top: 10px;
  color: var(--muted);
  font-size: .58rem;
}

.confidence > div { height: 3px; background: var(--stone); }
.confidence > div i { display: block; height: 100%; background: var(--gold); }
.confidence b { color: var(--navy); font-size: .59rem; }

.next-action {
  display: grid;
  gap: 3px;
  padding: 16px 20px;
  color: var(--white);
  background: var(--navy-3);
}

.next-action span { color: var(--gold-pale); }
.next-action strong { font-family: Georgia, "Times New Roman", serif; font-size: .94rem; font-weight: 400; line-height: 1.3; }

.path-grid {
  position: relative;
  gap: 0;
  border: 1px solid var(--line-dark);
  background: var(--navy);
}

.path-card,
.path-card:nth-child(2) {
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.14);
  color: #bdc9d1;
  background: var(--navy);
  transition: transform .28s ease, background .28s ease, color .28s ease;
}

.path-card:last-child { border-right: 0; }
.path-card:nth-child(2) { background: var(--ivory); }
.path-card:nth-child(2) p { color: #53616a; }
.path-card:nth-child(2) h3 { color: var(--navy); }
.path-card:nth-child(2) .path-number { color: var(--gold); }

.path-card h3 { color: var(--white); }
.path-card p { color: #aebbc4; }
.path-card:hover { z-index: 2; transform: translateY(-7px); background: var(--navy-2); }
.path-card:nth-child(2):hover { background: #f8f4eb; }

.path-signal {
  display: flex;
  gap: 5px;
  align-items: end;
  height: 35px;
  margin: -8px 0 26px;
}

.path-signal i {
  display: block;
  width: 7px;
  height: 11px;
  background: rgba(223,197,143,.35);
}

.path-signal i:nth-child(2) { height: 18px; }
.path-signal i:nth-child(3) { height: 26px; background: var(--gold); }
.path-signal i:nth-child(4) { height: 21px; }
.path-signal i:nth-child(5) { height: 31px; }
.path-signal.compare i:nth-child(1) { height: 24px; }
.path-signal.compare i:nth-child(2) { height: 13px; }
.path-signal.compare i:nth-child(4) { height: 29px; }
.path-signal.coordinate i { width: 28px; height: 2px !important; background: var(--gold); }

.comparison-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 22px;
  align-items: stretch;
}

.supplier-table {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--paper);
}

.supplier-table-head,
.supplier-table-row {
  display: grid;
  grid-template-columns: 1.35fr .52fr .65fr .7fr .82fr 1.1fr;
  align-items: center;
}

.supplier-table-head {
  min-height: 52px;
  color: #aebbc5;
  background: var(--navy);
}

.supplier-table-head span {
  padding: 10px 12px;
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.supplier-table-row {
  min-height: 84px;
  border-bottom: 1px solid var(--stone);
  color: #50606a;
}

.supplier-table-row:last-child { border-bottom: 0; }
.supplier-table-row.highlighted { border-left: 4px solid var(--gold); background: var(--gold-wash); }
.supplier-table-row > * { padding: 13px 12px; font-size: .72rem; line-height: 1.3; }
.supplier-table-row strong { display: flex; align-items: center; color: var(--navy); }
.supplier-table-row strong span { font-family: Georgia, "Times New Roman", serif; font-size: .86rem; font-weight: 400; }
.supplier-table-row strong small { display: block; margin-top: 2px; color: var(--muted); font-family: Arial, Helvetica, sans-serif; font-size: .55rem; letter-spacing: .08em; text-transform: uppercase; }

.status {
  display: inline-block;
  padding: 5px 6px;
  color: var(--muted);
  background: var(--stone-light);
  font-size: .56rem;
  white-space: nowrap;
}

.status.active { color: var(--navy); background: #e5d0a5; }
.status.neutral { color: var(--navy); background: #e5e8e9; }
.confidence-text { color: var(--navy); font-size: .67rem; }

.report-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 25px;
  color: #bdc8d0;
  background: var(--navy);
  transition: transform .28s ease;
}

.report-preview:hover { transform: translateY(-6px); }
.report-preview::after { content: ""; position: absolute; right: 18px; bottom: 18px; width: 67px; height: 67px; border: 1px solid rgba(198,150,60,.22); border-radius: 50%; }
.report-preview-top { display: flex; justify-content: space-between; color: var(--gold-pale); font-size: .56rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.report-title { margin: 30px 0 18px; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 1.85rem; line-height: 1; }
.report-rule { width: 46px; height: 2px; margin-bottom: 22px; background: var(--gold); }
.report-finding span { color: var(--gold-pale); font-size: .55rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.report-finding p { margin: 8px 0 18px; color: #d8e0e5; font-family: Georgia, "Times New Roman", serif; font-size: .87rem; line-height: 1.35; }
.report-bars { display: grid; gap: 6px; margin-bottom: 18px; }
.report-bars i { display: block; height: 3px; background: var(--gold); }
.report-bars i:nth-child(2), .report-bars i:nth-child(3) { background: #71818d; }
.report-preview > small { margin-top: auto; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.12); font-size: .62rem; line-height: 1.4; }

.support-output {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 22px;
  align-items: stretch;
  margin-top: 26px;
}

.support-output .aside-note { margin: 0; display: flex; align-items: center; }
.mini-report { padding: 21px; color: #ccd5db; background: var(--navy); }
.mini-report > div { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.13); }
.mini-report > div span { color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: .95rem; }
.mini-report > div b { color: var(--gold-pale); font-size: .52rem; letter-spacing: .09em; text-transform: uppercase; }
.mini-report > p { margin: 0; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .7rem; }

.contact-section { background: linear-gradient(90deg, var(--paper) 0 50%, var(--ivory) 50% 100%); }
.contact-route-heading { max-width: 820px; margin-bottom: 55px; }
.contact-route-heading > p:last-child { max-width: 650px; margin-top: 18px; color: var(--muted); }
.contact-grid { grid-template-columns: .9fr 1.1fr; gap: 0; border: 1px solid var(--line-dark); background: var(--paper); }
.call-card { top: 112px; min-height: 100%; padding: clamp(35px, 5vw, 58px); border-top: 0; }
.call-card::after { content: ""; position: absolute; right: 28px; bottom: 28px; width: 110px; height: 110px; border: 1px solid rgba(198,150,60,.18); border-radius: 50%; pointer-events: none; }
.call-card h2 { margin-top: 12px; font-size: clamp(2.35rem, 4vw, 4rem); }
.call-card h3 { display: none; }
.form-wrap { padding: clamp(35px, 5vw, 58px); background: var(--paper); }
.form-wrap h2 { margin-top: 12px; }
.route-badge { display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-bottom: 33px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.16); }
.route-badge span { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-pale); font-size: .65rem; }
.route-badge b { color: var(--gold-pale); font-size: .6rem; letter-spacing: .11em; text-transform: uppercase; }
.route-badge.light { border-color: var(--stone); }
.route-badge.light span { color: var(--gold); }
.route-badge.light b { color: var(--muted); }
.call-detail { display: grid; gap: 2px; margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); }
.call-detail span { color: #899ba8; font-size: .57rem; letter-spacing: .1em; text-transform: uppercase; }
.call-detail b { color: #dbe2e7; font-size: .72rem; font-weight: 400; }

.path-card,
.report-preview,
.route-intelligence,
.call-card,
.form-wrap,
.feature-panel,
.statement {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.feature-panel:hover,
.statement:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(7,31,53,.1);
}

.button { transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.path-card:nth-child(2).reveal { transition-delay: .08s; }
.path-card:nth-child(3).reveal { transition-delay: .16s; }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 900px; }
  .route-intelligence { max-width: 690px; }
  .comparison-layout { grid-template-columns: 1fr; }
  .report-preview { min-height: 430px; }
  .supplier-table-head, .supplier-table-row { grid-template-columns: 1.3fr .5fr .65fr .72fr .84fr 1fr; }
}

@media (max-width: 900px) {
  .comparison-layout { overflow: hidden; }
  .supplier-table { overflow-x: auto; }
  .supplier-table-head, .supplier-table-row { min-width: 850px; }
  .support-output { grid-template-columns: 1fr; }
  .contact-section { background: var(--paper); }
  .contact-grid { grid-template-columns: 1fr; }
  .call-card { position: relative; top: auto; }
}

@media (max-width: 620px) {
  .hero h1 { font-size: clamp(3.05rem, 15vw, 4.35rem); }
  .route-intelligence { margin-right: 12px; }
  .route-intelligence::before { inset: 10px -10px -10px 10px; }
  .intel-head { display: grid; }
  .intel-stage { justify-self: start; }
  .route-option-head { align-items: flex-start; }
  .route-metrics { grid-template-columns: 1fr; }
  .route-metrics span { grid-template-columns: 1fr 1fr; align-items: center; }
  .confidence { grid-template-columns: 1fr; }
  .path-card, .path-card:nth-child(2) { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .report-preview { min-height: 410px; }
  .contact-route-heading { margin-bottom: 34px; }
  .form-wrap, .call-card { padding: 30px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* A/A+ art-direction refinement */
body {
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 18% 22%, rgba(7,31,53,.018) 0 .7px, transparent .8px),
    radial-gradient(circle at 76% 68%, rgba(198,150,60,.022) 0 .7px, transparent .8px);
  background-size: 11px 11px, 13px 13px;
}

.site-header {
  border-bottom-color: rgba(7,31,53,.075);
  box-shadow: 0 1px 0 rgba(255,255,255,.75);
}

.hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(7,31,53,.09);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(7,31,53,.025) 50%, transparent calc(50% + 1px)),
    linear-gradient(0deg, transparent calc(50% - 1px), rgba(7,31,53,.018) 50%, transparent calc(50% + 1px));
}

.route-intelligence {
  transform: rotate(.25deg);
  box-shadow: 0 36px 90px rgba(7,31,53,.16), 0 2px 8px rgba(7,31,53,.08);
}

.route-intelligence::after {
  content: "ASTERLINE / SOURCING WORKING VIEW";
  position: absolute;
  right: -2px;
  bottom: -26px;
  color: rgba(7,31,53,.42);
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.route-option { position: relative; }
.route-option::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 11px;
  height: 1px;
  background: var(--gold);
}

.route-journey {
  position: relative;
  z-index: 3;
  color: #aebbc4;
  background: var(--navy);
}

.route-journey-inner {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: clamp(45px, 8vw, 110px);
  align-items: center;
  min-height: 148px;
}

.journey-intro {
  display: grid;
  gap: 5px;
  padding-right: 35px;
  border-right: 1px solid rgba(255,255,255,.13);
}

.journey-intro span {
  color: var(--gold-pale);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.journey-intro b {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
}

.route-journey ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-journey ol::before {
  content: "";
  position: absolute;
  top: 9px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: rgba(255,255,255,.2);
}

.route-journey li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #8999a5;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.route-journey li i {
  width: 19px;
  height: 19px;
  border: 5px solid var(--navy);
  border-radius: 50%;
  background: #657682;
  box-shadow: 0 0 0 1px rgba(255,255,255,.2);
}

.route-journey li.complete { color: #c7d0d6; }
.route-journey li.complete i { background: var(--gold); }
.route-journey li.active { color: var(--gold-pale); }
.route-journey li.active i {
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 0 0 5px rgba(198,150,60,.12);
}

.sourcing-challenge {
  padding-top: clamp(105px, 12vw, 158px);
  background: linear-gradient(90deg, transparent 0 49.95%, rgba(7,31,53,.035) 50%, transparent 50.05%);
}

.sourcing-challenge .question-grid {
  grid-template-columns: .9fr 1.1fr;
}

.sourcing-challenge .question-list {
  padding: 14px 34px 10px;
  border: 1px solid var(--stone);
  border-top: 3px solid var(--gold);
  background: rgba(252,250,245,.78);
  box-shadow: 0 24px 65px rgba(7,31,53,.055);
}

.support-contrast {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.support-contrast::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -150px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(198,150,60,.13);
  border-radius: 50%;
}

.support-contrast .prose { color: #b5c1c9; }
.support-contrast .lead { color: var(--navy); }
.support-contrast .feature-panel {
  position: relative;
  background: var(--ivory);
  box-shadow: 22px 22px 0 rgba(255,255,255,.035), 0 35px 80px rgba(0,0,0,.15);
}

.support-contrast .feature-panel::after {
  content: "SOURCE / COMPARE / COORDINATE";
  position: absolute;
  right: 0;
  bottom: -27px;
  color: rgba(255,255,255,.38);
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.process-section {
  position: relative;
  padding-top: clamp(112px, 13vw, 175px);
  padding-bottom: clamp(78px, 8vw, 110px);
}

.process-section::before {
  content: "01          02          03";
  position: absolute;
  top: 38px;
  left: max(24px, calc((100% - var(--max)) / 2));
  color: rgba(7,31,53,.055);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 11vw, 9rem);
  letter-spacing: .09em;
  line-height: 1;
  white-space: nowrap;
}

.process-section .section-heading {
  position: relative;
  z-index: 1;
}

.path-number {
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.path-number span:first-child {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.8rem;
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .8;
}

.path-number span:last-child {
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
}

.path-card { padding: clamp(34px, 4.2vw, 54px); }
.path-card h3 { font-size: clamp(1.65rem, 2.4vw, 2.25rem); }

.comparison-section {
  position: relative;
  padding-top: clamp(88px, 9vw, 124px);
  border-top: 1px solid var(--stone);
  background:
    linear-gradient(180deg, rgba(198,150,60,.055), transparent 150px),
    var(--ivory);
}

.comparison-section::before {
  content: "";
  position: absolute;
  top: -35px;
  left: 50%;
  width: 1px;
  height: 70px;
  background: var(--gold);
}

.supplier-table,
.report-preview {
  box-shadow: 0 26px 65px rgba(7,31,53,.075);
}

.supplier-table-row {
  transition: background .22s ease, transform .22s ease;
}

.supplier-table-row:hover {
  position: relative;
  z-index: 2;
  background: #f4efe5;
}

.supplier-table-row.highlighted:hover { background: #eee2ca; }

.audience-section {
  position: relative;
  border-top: 1px solid var(--stone);
  background: var(--paper);
}

.audience-section .check-list {
  padding: 16px 28px;
  border: 1px solid var(--stone);
  background: var(--ivory);
}

.proof-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(100px, 12vw, 155px);
  padding-bottom: clamp(100px, 12vw, 155px);
}

.proof-section::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -90px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(198,150,60,.16);
  border-radius: 50%;
  transform: translateY(-50%);
}

.proof-section .feature-split > div:last-child {
  padding: 38px 42px;
  border-top: 2px solid var(--gold);
  background: rgba(255,255,255,.04);
}

.final-cta {
  border-top: 1px solid rgba(198,150,60,.35);
}

.final-cta .container {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 65px;
  align-items: end;
}

.final-cta .eyebrow,
.final-cta h2,
.final-cta p { grid-column: 1; }
.final-cta .button { grid-column: 2; grid-row: 2 / 4; min-width: 310px; }

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(198,150,60,.25);
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(255,255,255,.025) 58% 58.1%, transparent 58.1%),
    var(--navy);
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -170px;
  right: -90px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(198,150,60,.18);
  border-radius: 50%;
}

.page-hero::before {
  content: "";
  position: absolute;
  right: clamp(28px, 8vw, 130px);
  bottom: -38px;
  width: 170px;
  height: 176px;
  background: url("assets/asterline_logo_mark_reversed.svg") center / contain no-repeat;
  opacity: .045;
  pointer-events: none;
}

.about-origin {
  position: relative;
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(7,31,53,.028) 58% 58.08%, transparent 58.08%),
    var(--paper);
}

.about-origin::after {
  content: "WHY ASTERLINE";
  position: absolute;
  right: max(24px, calc((100% - var(--max)) / 2));
  bottom: 38px;
  color: rgba(7,31,53,.05);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 8vw, 7.2rem);
  letter-spacing: -.04em;
  pointer-events: none;
}

.about-origin .feature-split,
.about-bridge .feature-split { position: relative; z-index: 1; }

.about-bridge {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.about-bridge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -80px;
  width: 270px;
  height: 1px;
  background: var(--gold);
}

.about-bridge .prose {
  padding: 34px 38px;
  border-top: 2px solid var(--gold);
  background: rgba(252,250,245,.72);
}

.about-founder .statement {
  position: relative;
  overflow: hidden;
}

.about-founder .statement::after {
  content: "";
  position: absolute;
  right: 42px;
  bottom: -55px;
  width: 150px;
  height: 155px;
  background: url("assets/asterline_logo_mark_reversed.svg") center / contain no-repeat;
  opacity: .055;
}

.contact-route-heading {
  position: relative;
  padding-left: 30px;
  border-left: 2px solid var(--gold);
}

.contact-grid {
  box-shadow: 0 35px 90px rgba(7,31,53,.1);
}

.contact-grid::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  width: 1px;
  height: 68px;
  background: var(--gold);
}

.contact-grid { position: relative; }

.form-wrap {
  position: relative;
  background-image: linear-gradient(rgba(7,31,53,.025) 1px, transparent 1px);
  background-size: 100% 48px;
}

.form-section-label {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 15px 0 -2px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--stone);
  color: var(--navy);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.form-section-label span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0;
}

input, select, textarea {
  border-color: #cfc8bb;
  background: rgba(255,254,250,.93);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

input:hover, select:hover, textarea:hover { border-color: #aaa295; }
input:focus, select:focus, textarea:focus {
  outline: 0;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(198,150,60,.12);
}

@media (max-width: 900px) {
  .hero { min-height: 0; }
  .sourcing-challenge .question-grid { grid-template-columns: 1fr; }
  .route-journey-inner { grid-template-columns: 1fr; gap: 24px; padding: 34px 0; }
  .journey-intro { padding-right: 0; padding-bottom: 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .support-contrast .feature-panel { margin-top: 12px; }
  .process-section::before { font-size: 6rem; overflow: hidden; width: calc(100% - 24px); }
  .final-cta .container { grid-template-columns: 1fr; }
  .final-cta .button { grid-column: 1; grid-row: auto; width: fit-content; min-width: 0; }
  .about-origin::after { display: none; }
  .about-bridge::before { display: none; }
  .contact-grid::before { left: 24px; }
}

@media (max-width: 620px) {
  .hero { padding-bottom: 92px; }
  .route-intelligence { transform: none; }
  .route-intelligence::after { display: none; }
  .route-journey ol { grid-template-columns: repeat(5, minmax(54px, 1fr)); overflow-x: auto; padding: 5px 3px 10px; }
  .route-journey ol::before { right: 10%; left: 10%; }
  .route-journey li { font-size: .53rem; }
  .sourcing-challenge { background: var(--paper); }
  .sourcing-challenge .question-list { padding: 8px 19px; }
  .process-section::before { content: "01  02  03"; top: 48px; font-size: 4.1rem; }
  .path-number span:first-child { font-size: 3.2rem; }
  .comparison-section::before { left: 24px; }
  .audience-section .check-list { padding: 10px 18px; }
  .proof-section .feature-split > div:last-child { padding: 28px 22px; }
  .final-cta .button { width: 100%; }
  .contact-route-heading { padding-left: 18px; }
}

/* Final premium rhythm and clipping safeguards */
html { scroll-padding-top: 116px; }

section[id],
[id="enquiry"] { scroll-margin-top: 116px; }

.page-hero > .container,
.final-cta > .container {
  position: relative;
  z-index: 2;
}

.final-cta {
  overflow: clip;
  padding-top: clamp(112px, 11vw, 150px);
  padding-bottom: clamp(94px, 10vw, 132px);
}

.final-cta h2 {
  padding-top: .04em;
  line-height: 1.08;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(24px, calc((100% - var(--max)) / 2));
  width: min(190px, 24vw);
  height: 3px;
  background: var(--gold);
}

.hero-grid > div:first-child {
  position: relative;
  padding-bottom: 12px;
}

.hero-grid > div:first-child::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -20px;
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.route-intelligence {
  border-color: rgba(7,31,53,.2);
  background:
    linear-gradient(135deg, rgba(255,255,255,.45), transparent 42%),
    #e9e3d8;
}

.intel-head {
  border-bottom: 1px solid rgba(223,197,143,.26);
}

.route-option {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.route-option.recommended::before {
  content: "";
  position: absolute;
  top: 11px;
  bottom: 11px;
  left: -1px;
  width: 1px;
  background: var(--gold);
}

.next-action {
  position: relative;
  padding-right: 54px;
}

.next-action::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--gold-pale);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  transform: translateY(-50%);
}

.process-section .path-grid::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0 33.333%, transparent 33.333% 66.666%, var(--gold) 66.666%);
  pointer-events: none;
}

.path-card::after {
  content: "";
  position: absolute;
  right: 32px;
  bottom: 28px;
  width: 34px;
  height: 1px;
  background: rgba(223,197,143,.48);
}

.path-card:nth-child(2)::after { background: rgba(7,31,53,.22); }

.service-useful {
  position: relative;
  border-bottom: 1px solid var(--stone);
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(7,31,53,.027) 58% 58.08%, transparent 58.08%),
    var(--paper);
}

.service-useful .check-list,
.service-inputs .check-list {
  padding: 18px 28px;
  border: 1px solid var(--stone);
  border-top: 3px solid var(--gold);
  background: rgba(252,250,245,.82);
  box-shadow: 0 22px 58px rgba(7,31,53,.055);
}

.service-categories {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--stone);
}

.service-categories::after {
  content: "PACKAGING / SOURCING";
  position: absolute;
  right: max(24px, calc((100% - var(--max)) / 2));
  bottom: 18px;
  color: rgba(7,31,53,.045);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 7rem);
  white-space: nowrap;
  pointer-events: none;
}

.service-categories .category-grid {
  position: relative;
  z-index: 1;
}

.category-grid > div,
.insight-grid > div {
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.category-grid > div:hover,
.insight-grid > div:hover {
  z-index: 2;
  border-color: rgba(198,150,60,.7);
  background: #fffdf8;
  transform: translateY(-3px);
}

.service-process {
  position: relative;
  background:
    linear-gradient(180deg, rgba(198,150,60,.045), transparent 160px),
    var(--paper);
}

.service-process::before {
  content: "BRIEF  →  SEARCH  →  QUOTE  →  SAMPLE  →  COORDINATE";
  position: absolute;
  top: 32px;
  left: 50%;
  color: rgba(7,31,53,.22);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .16em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.service-process .process-list {
  position: relative;
  padding: 18px 24px;
  border: 1px solid var(--stone);
  background: var(--ivory);
}

.service-process .process-list::before {
  content: "";
  position: absolute;
  top: 44px;
  bottom: 44px;
  left: 41px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(198,150,60,.12));
}

.service-process .process-list li {
  position: relative;
  z-index: 1;
  background: var(--ivory);
}

.service-inputs {
  position: relative;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.service-outputs {
  position: relative;
  background: var(--paper);
}

.service-outputs::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  width: 1px;
  height: 68px;
  background: var(--gold);
}

.service-communication {
  position: relative;
  overflow: hidden;
}

.service-communication::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -110px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(198,150,60,.16);
  border-radius: 50%;
  transform: translateY(-50%);
}

.service-communication .feature-split > div:last-child {
  position: relative;
  z-index: 1;
  padding: 36px 40px;
  border-top: 2px solid var(--gold);
  background: rgba(255,255,255,.04);
}

.service-positioning {
  background:
    linear-gradient(90deg, transparent 0 50%, rgba(7,31,53,.025) 50% 50.08%, transparent 50.08%),
    var(--paper);
}

.about-focus .prose {
  padding: 30px 36px;
  border-left: 2px solid var(--gold);
  background: rgba(252,250,245,.68);
}

.about-principle {
  position: relative;
  overflow: hidden;
}

.about-principle::before {
  content: "SUITABLE / WORKABLE / COMMERCIAL";
  position: absolute;
  right: -36px;
  bottom: 22px;
  color: rgba(255,255,255,.055);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 6rem);
  white-space: nowrap;
}

.about-principle .feature-split > div:last-child {
  position: relative;
  z-index: 1;
  padding: 34px 38px;
  border-left: 1px solid rgba(223,197,143,.55);
}

.contact-section {
  border-bottom: 1px solid var(--stone);
}

.form-wrap label {
  letter-spacing: .025em;
}

.enquiry-form .button {
  min-width: 190px;
}

.form-note {
  max-width: 560px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}

.site-footer {
  padding-top: 72px;
}

.footer-grid {
  align-items: start;
  padding-bottom: 52px;
}

.footer-brand {
  position: relative;
}

.footer-brand::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 205px;
  width: 72px;
  height: 1px;
  background: rgba(223,197,143,.38);
}

.footer-links a {
  width: fit-content;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  html { scroll-padding-top: 102px; }
  section[id],
  [id="enquiry"] { scroll-margin-top: 102px; }
  .final-cta { padding-top: 104px; }
  .hero-grid > div:first-child::after { display: none; }
  .service-process::before { top: 26px; }
  .service-communication .feature-split > div:last-child { padding: 30px; }
  .about-principle .feature-split > div:last-child { padding: 30px; }
  .footer-brand::after { display: none; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 88px; }
  section[id],
  [id="enquiry"] { scroll-margin-top: 88px; }
  .page-hero { padding-top: 92px; padding-bottom: 92px; }
  .page-hero h1 { font-size: clamp(2.8rem, 14vw, 4rem); line-height: 1.02; }
  .final-cta { padding-top: 92px; padding-bottom: 88px; }
  .final-cta h2 { font-size: clamp(2.45rem, 12vw, 3.5rem); }
  .next-action { padding-right: 46px; }
  .service-useful .check-list,
  .service-inputs .check-list { padding: 10px 18px; }
  .service-categories::after { display: none; }
  .service-process { padding-top: 108px; }
  .service-process::before {
    top: 42px;
    width: calc(100% - 32px);
    overflow: hidden;
    text-align: center;
  }
  .service-process .process-list { padding: 10px 18px; }
  .service-process .process-list::before { display: none; }
  .service-communication .feature-split > div:last-child,
  .about-focus .prose,
  .about-principle .feature-split > div:last-child { padding: 26px 22px; }
  .contact-grid::before,
  .service-outputs::before { left: 24px; }
  .site-footer { padding-top: 58px; }
}
