/* ============================================================
   PRIME SUPPLY LIMITED — minimalist theme (Hazel-inspired)
   Light, airy, editorial. Black / white / grey with restraint.
============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Jost:wght@300;400;500&display=swap');

:root {
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --grey: #8a8a8a;
  --line: #e6e6e6;
  --bg: #ffffff;
  --bg-soft: #f7f6f4;
  --accent: #1a1a1a;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Jost', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-weight: 300;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.nav-logo {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.nav-logo span { font-weight: 300; color: var(--grey); }

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* desktop Products dropdown */
.nav-dd { position: relative; }

.nav-dd-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 120;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.nav-dd:hover .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dd-menu li { display: block; }

.nav-dd-menu a {
  display: block;
  padding: 11px 22px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: none;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

.nav-dd-menu a::after { display: none; }
.nav-dd-menu a:hover { color: var(--ink); background: var(--bg-soft); }

/* ---------- Burger + mobile menu ---------- */

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

body.menu-open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 84px;
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 99;
}

body.menu-open .mobile-menu {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 12px 0;
}

.mobile-menu li { border-bottom: 1px solid var(--line); }
.mobile-menu li:last-child { border-bottom: none; }

.mobile-menu a {
  display: block;
  padding: 18px 40px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.mobile-menu a:hover,
.mobile-menu a.active { color: var(--ink); }

/* expandable Products submenu */
.mm-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 40px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--body);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.mm-chev {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: var(--grey);
}

.mm-sub {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mm-has-sub.open .mm-sub { max-height: 520px; }

.mm-sub li { border-bottom: 1px solid var(--line); }
.mm-sub li:last-child { border-bottom: none; }

.mm-sub a {
  padding: 15px 40px 15px 56px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: none;
  color: var(--ink-soft);
}

/* ---------- Type helpers ---------- */

.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 400;
  margin-bottom: 26px;
}

h1, h2, h3 { font-family: var(--display); font-weight: 400; letter-spacing: -0.01em; }

/* ---------- Hero ---------- */

.hero {
  padding: 92px 0 72px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.08;
  margin: 0 auto 30px;
  max-width: 15ch;
  font-weight: 500;
}

.hero p.lead {
  font-family: var(--body);
  font-weight: 300;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.9;
}

.hero-figure {
  margin-top: 40px;
  height: 62vh;
  min-height: 420px;
  max-height: 680px;
  overflow: hidden;
}

.hero-figure img { width: 100%; height: 100%; object-fit: cover; }

.btn-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: background 0.25s, color 0.25s;
}

.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: transparent; color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* ---------- Sections ---------- */

.section { padding: 78px 0; }
.section.soft { background: var(--bg-soft); }

.section-head {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin: 0 0 22px;
  font-weight: 500;
}

.section-head p {
  font-family: var(--body);
  font-weight: 300;
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Feature columns ---------- */

.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 60px;
}

.feature { text-align: center; }

.feature .num {
  font-family: var(--display);
  font-size: 34px;
  color: var(--grey);
  display: block;
  margin-bottom: 18px;
  font-weight: 400;
}

.feature h3 {
  font-size: 22px;
  margin: 0 0 14px;
  font-weight: 500;
}

.feature p {
  font-family: var(--body);
  font-weight: 300;
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.85;
}

/* ---------- Portfolio / product grid ---------- */

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

.tile {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-soft);
}

.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tile:hover img { transform: scale(1.04); }

.tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.34);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.tile:hover .tile-overlay { opacity: 1; }

/* always-visible label so tiles read as tappable buttons */
.tile-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 16px 14px;
  background: linear-gradient(to top, rgba(26,26,26,0.72) 0%, rgba(26,26,26,0.36) 55%, rgba(26,26,26,0) 100%);
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #fff;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.tile:hover .tile-label { opacity: 0; }

.tile-label .tl-name {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.1;
}

.tile-label .tl-cta {
  font-family: var(--body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
}

.tile-overlay .t-cat {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.85;
}

.tile-overlay .t-title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
}

.tile-overlay .t-go {
  font-family: var(--body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 14px;
  opacity: 0.85;
}

/* product names revealed on category tile hover */
.t-prod-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 14px;
}

.t-prod {
  font-family: var(--body);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
}

.tile-overlay-cat .t-title { margin-bottom: 2px; }

/* ---------- Category detail pages ---------- */

.cat-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.cat-desc {
  font-family: var(--body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.95;
  color: var(--ink-soft);
  margin: 0;
}

.cat-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.cat-cell {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-soft);
}

.cat-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cat-cell:hover img { transform: scale(1.05); }

.cat-cell-empty {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  background: var(--bg-soft);
  color: var(--grey);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.cat-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}

.cat-nav-link {
  font-family: var(--body);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.cat-nav-link:hover { color: var(--ink); }
.cat-nav-all { color: var(--grey); }

.cat-cta { margin-top: 34px; }

/* ---------- Individual product detail ---------- */

.prod-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

.prod-detail-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-soft);
}

.prod-detail-media img { width: 100%; height: 100%; object-fit: cover; }

.prod-detail-body { padding-top: 6px; }

/* ---------- Product detail rows (Products page) ---------- */

.prod-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.prod-row:last-child { border-bottom: 1px solid var(--line); }

.prod-row .prod-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-soft); }
.prod-row .prod-media img { width: 100%; height: 100%; object-fit: cover; }

.prod-row .prod-body {
  padding: 70px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prod-row:nth-child(even) .prod-media { order: 2; }

.prod-body .p-num {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--grey);
  margin-bottom: 16px;
}

.prod-body h3 {
  font-size: 34px;
  margin: 0 0 4px;
  font-weight: 500;
}

.prod-body .p-native {
  font-family: var(--body);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin: 0 0 22px;
}

.prod-body .p-desc {
  font-family: var(--body);
  font-weight: 300;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.9;
  margin: 0 0 28px;
}

.p-sub {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 16px;
  font-family: var(--body);
  font-weight: 500;
}

.p-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 40px;
}

.p-list li {
  font-family: var(--body);
  font-weight: 300;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  break-inside: avoid;
}

/* ---------- Services list (Services page) ---------- */

.svc {
  display: grid;
  grid-template-columns: 80px 1fr 1.1fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.svc:last-child { border-bottom: 1px solid var(--line); }

.svc .svc-num { font-family: var(--display); font-size: 30px; color: var(--grey); }
.svc h3 { font-size: 26px; margin: 0 0 12px; font-weight: 500; }
.svc p { font-family: var(--body); font-weight: 300; font-size: 15px; color: var(--ink-soft); margin: 0 0 18px; line-height: 1.85; }

.svc-tags { font-family: var(--body); font-weight: 300; font-size: 13px; color: var(--grey); letter-spacing: 0.02em; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}

.form-field { margin-bottom: 26px; }

.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--body);
  font-weight: 300;
  font-size: 16px;
  color: var(--ink);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}

.form-field textarea { min-height: 120px; resize: vertical; }

.info-line {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.info-line:first-child { border-top: 1px solid var(--line); }

.info-line .k {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}

.info-line .v {
  font-family: var(--body);
  font-weight: 300;
  font-size: 16px;
  color: var(--ink);
}

.contact-map {
  margin-top: 34px;
  border: 1px solid var(--line);
  line-height: 0;
}

.contact-map iframe { display: block; width: 100%; }

.map-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--body);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.map-link:hover { color: var(--ink); }

/* ---------- Footer ---------- */

.site-footer {
  padding: 90px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand {
  font-size: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-grid p {
  font-family: var(--body);
  font-weight: 300;
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 320px;
}

.footer-grid h4 {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 400;
  margin: 0 0 20px;
}

.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 12px; }
.footer-grid li a {
  font-family: var(--body);
  font-weight: 300;
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.footer-grid li a:hover { color: var(--ink); }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-family: var(--body);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--grey);
  display: flex;
  justify-content: space-between;
}

/* ---------- Reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1), transform 0.85s cubic-bezier(0.22,1,0.36,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .tile img { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .container, .nav { padding-left: 24px; padding-right: 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu a { padding-left: 24px; padding-right: 24px; }
  .mm-parent { padding-left: 24px; padding-right: 24px; }
  .mm-sub a { padding-left: 40px; }
  .cols-3 { grid-template-columns: 1fr; gap: 50px; }
  .grid-gallery { grid-template-columns: 1fr 1fr; }
  .prod-row { grid-template-columns: 1fr; }
  .prod-row:nth-child(even) .prod-media { order: 0; }
  .prod-row .prod-body { padding: 44px 28px; }
  .svc { grid-template-columns: 1fr; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .p-list { columns: 1; }
  .cat-intro { grid-template-columns: 1fr; gap: 40px; }
  .cat-gallery { grid-template-columns: 1fr 1fr; }
  .cat-nav { flex-direction: column; gap: 14px; align-items: flex-start; }
  .prod-detail { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Services tabs (Logistics / Agency / Trading) ---------- */
.svc-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 auto 60px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  width: fit-content;
  max-width: 100%;
}
.svc-tab {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--body);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 12px 30px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}
.svc-tab:hover { color: var(--ink); }
.svc-tab.active { background: var(--ink); color: #fff; }

.svc-panel { display: none; }
.svc-panel.active { display: block; animation: svcFade 0.35s ease; }
@keyframes svcFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.svc-group {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: start;
}
.svc-group-intro h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin: 0 0 22px;
  line-height: 1.08;
}
.svc-group-intro p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0 0 16px;
}
.svc-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}
.svc-tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px;
}
.svc-cards { display: flex; flex-direction: column; gap: 18px; }
.svc-card {
  border: 1px solid var(--line);
  padding: 28px 30px;
  background: #fff;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.svc-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.svc-card h3 {
  font-family: var(--body);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.01em;
  margin: 0 0 10px;
  color: var(--ink);
}
.svc-card p { margin: 0; color: var(--ink-soft); line-height: 1.65; font-size: 15px; }

@media (max-width: 820px) {
  .svc-group { grid-template-columns: 1fr; gap: 40px; }
  .svc-tab { padding: 11px 20px; font-size: 12px; letter-spacing: 0.1em; }
  .svc-tabs { margin-bottom: 44px; }
}

/* ---------- Hero banner (text over image) ---------- */
.hero-banner {
  position: relative;
  min-height: 640px;
  height: 82vh;
  max-height: 860px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(20,22,26,0.78) 0%,
    rgba(20,22,26,0.45) 38%,
    rgba(20,22,26,0.12) 68%,
    rgba(20,22,26,0.05) 100%);
}
.hero-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 70px;
  text-align: center;
  color: #fff;
}
.hero-banner-content .eyebrow { color: rgba(255,255,255,0.82); }
.hero-banner-content h1 { color: #fff; margin-bottom: 22px; }
.hero-banner-content p.lead { color: rgba(255,255,255,0.92); }

/* light buttons for use over the image */
.btn-on-dark {
  display: inline-block;
  padding: 15px 40px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: #fff;
  color: var(--ink);
  border: 1px solid #fff;
  transition: background 0.25s, color 0.25s;
}
.btn-on-dark:hover { background: transparent; color: #fff; }
.btn-ghost-light {
  display: inline-block;
  padding: 15px 40px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.7);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

@media (max-width: 640px) {
  .hero-banner { height: auto; min-height: 82vh; }
  .hero-banner-content { padding-bottom: 52px; }
}

/* keep the fuller wordmark tidy on small screens */
@media (max-width: 640px) {
  .nav-logo { font-size: 12px; letter-spacing: 0.15em; }
}
@media (max-width: 380px) {
  .nav-logo { font-size: 11px; letter-spacing: 0.1em; }
}
