@import url('fonts.css');

/* ============================================================
   Lonjak Ventures — site styles
   Brand tokens follow the approved design.
   ============================================================ */

:root {
  --navy:        #002366;
  --navy-deep:   #001845;
  /* Call-to-action blue: brand navy, lifted just enough to read as a
     button rather than a heading. */
  --blue:        #0A3FA8;
  --blue-bright: #1454C8;
  --gold:        #C5A059;
  --cream:       #FAF8F4;
  --green:       #004B23;
  --ink:         #333333;
  --ink-soft:    #4a4a4a;

  --rule:        rgba(0, 35, 102, 0.10);
  --rule-strong: rgba(0, 35, 102, 0.12);

  --serif: 'Sorts Mill Goudy', Georgia, serif;
  --sans:  'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw:   1180px;
  --gutter: clamp(20px, 3vw, 40px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }
::selection { background: var(--gold); color: #fff; }

img { max-width: 100%; }

/* Visible keyboard focus — the design specifies no focus style, and
   an unreachable nav is not an option on a public site. */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.skip-link:focus { left: 8px; top: 8px; color: var(--cream); }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.site-header .wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-block: 10px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand:hover { color: var(--navy); }
.brand img { height: 34px; width: auto; display: block; }

.wordmark { display: flex; flex-direction: column; line-height: 1; }
.wordmark .name {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.wordmark .sub {
  font-size: 9px;
  letter-spacing: 0.34em;
  color: var(--gold);
  margin-top: 3px;
  font-weight: 500;
}

.site-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }

.site-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: rgba(51, 51, 51, 0.72);
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.site-nav a:hover { color: var(--gold); }
.site-nav a[aria-current="page"] {
  color: var(--navy);
  background: rgba(197, 160, 89, 0.16);
}

/* Selector must out-specify `.site-nav a` above, which sets a transparent
   background — otherwise the fill is silently dropped and the button
   renders as plain text. */
.site-nav a.nav-cta {
  margin-left: 18px;
  padding: 13px 26px;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 0.09em;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 35, 102, 0.28);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.site-nav a.nav-cta:hover {
  background: var(--blue-bright);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 35, 102, 0.38);
  transform: translateY(-1px);
}
.site-nav a.nav-cta:active { transform: translateY(0); }

/* ---------- shared type ---------- */

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 600;
}

.eyebrow-rule { display: flex; align-items: center; gap: 14px; }
.eyebrow-rule .rule { width: 46px; height: 1px; background: var(--gold); }

.page-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.08;
  color: var(--navy);
  margin: 0 0 24px;
  font-weight: 400;
}

.page-title-bm {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.35;
  color: rgba(0, 35, 102, 0.5);
  margin: 0;
}

.page-intro { max-width: 820px; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-gold {
  padding: 17px 32px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.btn-gold:hover { background: var(--cream); color: var(--navy); }

.btn-ghost {
  padding: 17px 32px;
  border: 1px solid rgba(250, 248, 244, 0.3);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-navy {
  padding: 17px 34px;
  background: var(--navy);
  color: var(--cream);
}
.btn-navy:hover { background: var(--gold); color: var(--cream); }

.btn-outline-light {
  padding: 15px 28px;
  border: 1px solid rgba(250, 248, 244, 0.35);
  color: var(--cream);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

.link-underline {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  white-space: nowrap;
}

/* ---------- hero ---------- */

.hero {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.10), rgba(197, 160, 89, 0));
  pointer-events: none;
}

.hero .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
  position: relative;
}

.hero-copy {
  padding: clamp(60px, 8vw, 104px) 0 clamp(64px, 8vw, 108px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.04;
  color: var(--cream);
  margin: 0 0 26px;
  font-weight: 400;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.hero-bm {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.3;
  color: rgba(197, 160, 89, 0.9);
  margin: 0 0 36px;
}

.hero-lead {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(250, 248, 244, 0.78);
  max-width: 540px;
  margin: 0 0 14px;
}

.hero-lead-bm {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(250, 248, 244, 0.5);
  max-width: 540px;
  margin: 0 0 44px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-media { position: relative; min-height: clamp(340px, 62vh, 660px); }
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* ---------- statement band ---------- */

.band-light {
  background: #fff;
  border-bottom: 1px solid var(--rule);
}

.band-light .wrap {
  padding-block: 76px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 60px;
  align-items: start;
}

.band-light .eyebrow { padding-top: 10px; letter-spacing: 0.2em; }

.statement {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.28;
  color: var(--navy);
  max-width: 820px;
}

.statement-sub {
  margin-top: 26px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(51, 51, 51, 0.66);
}

/* ---------- navy band ---------- */

.band-navy { background: var(--navy); color: var(--cream); }
.band-navy .wrap { padding-block: 96px; }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(36px, 4vw, 56px);
}

.pillar .num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.3;
  margin: 0 0 16px;
  font-weight: 400;
}
.pillar p {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(250, 248, 244, 0.7);
  margin: 0;
}
.pillar .bm {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(197, 160, 89, 0.72);
  margin-top: 12px;
  font-style: italic;
}

/* ---------- ventures ---------- */

.section { max-width: var(--maxw); margin: 0 auto; padding: 110px var(--gutter); }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.15;
  color: var(--navy);
  margin: 0;
  font-weight: 400;
}
.section-head .eyebrow { margin-bottom: 18px; }

.venture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: 28px;
}

.venture-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
}
.venture-card .media {
  height: 190px;
  border-bottom: 1px solid var(--rule);
}
.venture-card .media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.venture-card .body { padding: clamp(28px, 3.5vw, 38px) clamp(26px, 3.5vw, 44px) 0; }
.venture-card h3 {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--navy);
  margin: 0 0 16px;
  font-weight: 400;
}
.venture-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 420px;
  margin: 0;
}
.venture-card .card-link {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--navy);
  padding: 32px clamp(26px, 3.5vw, 44px) 40px;
}

.badge {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  font-weight: 600;
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 24px;
}
.badge-live { color: var(--green); border: 1px solid rgba(0, 75, 35, 0.3); }
.badge-soon {
  color: rgba(0, 35, 102, 0.5);
  border: 1px solid rgba(0, 35, 102, 0.2);
  margin-bottom: 28px;
}

.venture-card-soon {
  background: rgba(0, 35, 102, 0.04);
  border: 1px dashed rgba(0, 35, 102, 0.20);
  border-radius: 20px;
  padding: clamp(30px, 4vw, 46px) clamp(26px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
}
.venture-card-soon h3 {
  font-family: var(--serif);
  font-size: 34px;
  color: rgba(0, 35, 102, 0.55);
  margin: 0 0 16px;
  font-weight: 400;
}
.venture-card-soon p {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(51, 51, 51, 0.6);
  max-width: 420px;
  margin: 0;
}
.venture-card-soon .foot {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(0, 35, 102, 0.4);
  margin-top: 32px;
}

/* ---------- partners ---------- */

.band-partners {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: #fff;
}
.band-partners .wrap { padding-block: 72px; }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 14px;
}

.partner-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: clamp(26px, 3vw, 34px) clamp(22px, 2.6vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* 84px rather than the design's 62px. Three of the four marks are wide
   lockups and are width-constrained, so a taller slot does not change them;
   it only lets the portrait SEMy Aspiring mark (no horizontal version exists)
   and the boxed INSKEN mark render closer in weight to the others. Set this
   back to 62px if a horizontal SEMy lockup ever turns up. */
.partner-card .logo { width: 100%; height: 84px; }
.partner-card .logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.partner-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 10px;
  font-weight: 400;
}
.partner-card p {
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(51, 51, 51, 0.62);
  margin: 0;
}

/* Placeholder for artwork not yet supplied. See README. */
.slot {
  border: 1px dashed rgba(0, 35, 102, 0.22);
  border-radius: 8px;
  background: rgba(0, 35, 102, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: rgba(0, 35, 102, 0.35);
}

/* ---------- closing CTA ---------- */

.cta-block { max-width: 760px; }
.cta-block .eyebrow { margin-bottom: 22px; }
.cta-block h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 20px;
  font-weight: 400;
}
.cta-block .bm {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: rgba(0, 35, 102, 0.5);
  margin: 0 0 34px;
}

/* ---------- about ---------- */

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(40px, 5vw, 80px);
  margin-bottom: clamp(56px, 8vw, 96px);
}
.two-col .lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink);
  margin: 0 0 22px;
}
.two-col p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.two-col p:last-child { margin-bottom: 0; }
.two-col .bm {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(51, 51, 51, 0.62);
}
.two-col .ruled {
  border-left: 1px solid var(--rule-strong);
  padding-left: clamp(22px, 3vw, 44px);
}

.feature-photo {
  position: relative;
  width: 100%;
  height: 420px;
  margin-bottom: 96px;
}
.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.position-card {
  background: var(--navy);
  color: var(--cream);
  border-radius: 24px;
  padding: clamp(44px, 6vw, 76px) clamp(28px, 5vw, 68px);
  margin-bottom: 96px;
}
.position-card .eyebrow { margin-bottom: 26px; }
.position-card p {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.3;
  max-width: 900px;
  margin: 0;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 24px;
}
.principle {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(30px, 3.4vw, 40px) clamp(26px, 3vw, 36px) clamp(32px, 3.6vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.principle h3 {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.3;
  color: var(--navy);
  min-height: 2.6em;
  text-wrap: balance;
  margin: 0;
  font-weight: 400;
}
.principle .dash { width: 34px; height: 2px; background: var(--gold); border-radius: 2px; }
.principle p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- what we do ---------- */

.story-step {
  display: grid;
  grid-template-columns: minmax(90px, 220px) 1fr;
  gap: clamp(24px, 4vw, 60px);
  padding: clamp(32px, 4vw, 46px) 0;
  border-top: 1px solid var(--rule-strong);
}
.story-step .num {
  font-family: var(--serif);
  font-size: 52px;
  color: rgba(197, 160, 89, 0.85);
  line-height: 1;
}
.story-step .kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(0, 35, 102, 0.45);
  font-weight: 600;
  margin-top: 14px;
}
.story-step h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 18px;
  max-width: 700px;
  font-weight: 400;
}
.story-step p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 700px;
  margin: 0;
}

.venture-feature { background: var(--navy); color: var(--cream); margin-top: 90px; }
.venture-feature .wrap { padding-block: 96px; }
.venture-feature .cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.venture-feature .eyebrow { margin-bottom: 26px; }
.venture-feature h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 54px);
  margin: 0 0 22px;
  font-weight: 400;
}
.venture-feature p {
  font-size: 16.5px;
  line-height: 1.8;
  color: rgba(250, 248, 244, 0.78);
  margin: 0 0 20px;
}
.venture-feature .bm {
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(197, 160, 89, 0.75);
  margin: 0 0 34px;
  font-style: italic;
}
.venture-feature .media { position: relative; width: 100%; aspect-ratio: 4 / 3; }
.venture-feature .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* ---------- impact ---------- */

.credential-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 16px;
  margin-bottom: 90px;
}
.credential {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(30px, 4vw, 44px) clamp(26px, 3.5vw, 40px);
}
.credential .status {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 18px;
}
.credential h3 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 14px;
  font-weight: 400;
}
.credential p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: 28px;
  margin-bottom: 60px;
}
.metric {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--gold);
  border-radius: 16px;
  padding: 38px 34px;
}
.metric h3 {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 14px;
  font-weight: 400;
}
.metric p { font-size: 14px; line-height: 1.7; color: var(--ink-soft); margin: 0; }
.metric .pending {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(0, 35, 102, 0.4);
  font-weight: 600;
}

.note-box {
  border: 1px solid var(--rule-strong);
  border-radius: 16px;
  padding: 34px 38px;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(51, 51, 51, 0.7);
  max-width: 820px;
}

/* ---------- news ---------- */

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: 28px;
}
.post {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.post .media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--rule);
}
.post .media .slot { width: 100%; height: 100%; border: 0; border-radius: 0; }
.post .body { padding: 30px 30px 34px; }
.post .meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.post h2 {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 12px;
  font-weight: 400;
}
.post p { font-size: 14px; line-height: 1.7; color: rgba(51, 51, 51, 0.6); margin: 0; }

/* ---------- contact ---------- */

.contact-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(40px, 6vw, 90px);
}
.contact-lead {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 40px;
}
.contact-cols .page-title { font-size: clamp(36px, 4.6vw, 58px); margin-bottom: 22px; }
.contact-cols .page-title-bm { font-size: 23px; margin-bottom: 36px; }
.contact-email { padding: 18px 36px; font-size: 13px; margin-bottom: 28px; }

.enquiry-panel {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: clamp(30px, 4vw, 46px) clamp(26px, 3.5vw, 44px);
}
.enquiry-panel .eyebrow { letter-spacing: 0.2em; margin-bottom: 30px; }
.enquiry {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.enquiry h3 {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--navy);
  margin: 0 0 6px;
  font-weight: 400;
}
.enquiry p { font-size: 13.5px; line-height: 1.65; color: rgba(51, 51, 51, 0.62); margin: 0; }
.enquiry-address {
  margin-top: 30px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(51, 51, 51, 0.55);
}

/* ---------- footer ---------- */

.site-footer { background: var(--navy-deep); color: rgba(250, 248, 244, 0.72); }
.site-footer .wrap { padding: 70px var(--gutter) 40px; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 60px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(250, 248, 244, 0.14);
}
.footer-cols .wordmark { margin-bottom: 20px; }
.footer-cols .wordmark .name { font-size: 22px; color: var(--cream); }
.footer-cols .wordmark .sub { font-size: 9.5px; margin-top: 5px; }
.footer-blurb { font-size: 14px; line-height: 1.75; max-width: 340px; }

.footer-head {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.site-footer nav a,
.site-footer .footer-link {
  display: block;
  font-size: 14px;
  color: rgba(250, 248, 244, 0.72);
  padding: 6px 0;
}
.site-footer nav a:hover,
.site-footer .footer-link:hover { color: var(--gold); }

.footer-base {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(250, 248, 244, 0.45);
}

/* ---------- reveal-on-scroll ----------
   Applied by JS only, so content stays visible without scripting. */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- narrow screens ---------- */

@media (max-width: 640px) {
  .site-header .wrap { gap: 12px; }
  .site-nav { gap: 2px; }
  .site-nav a { padding: 8px 11px; font-size: 12px; }
  .site-nav a.nav-cta { margin-left: 8px; padding: 12px 20px; }
  .section { padding-block: 72px; }
  .feature-photo { height: 260px; margin-bottom: 64px; }
  .position-card { margin-bottom: 64px; }
  .story-step { grid-template-columns: 1fr; gap: 14px; }
  .story-step .num { font-size: 40px; }
  .venture-card h3 { font-size: 32px; }
  .two-col .ruled { border-left: 0; padding-left: 0; }
}

@media print {
  .site-header, .site-footer, .skip-link { display: none; }
  body { background: #fff; }
}
