/* ==========================================================================
   High Value Logistics — Design tokens
   Navy: #091A2B (primary bg)   Ink: #10243D (panels, matches logo bg)
   Gold: #C8A76A (accent)       Gold soft: #E4CFA0 (hover)
   White: #F5F5F5 (text)

   Fonts are self-hosted below (no Google Fonts / third-party CDN requests),
   so no visitor data or IP addresses are sent to Google when the site loads.
   ========================================================================== */

@font-face {
  font-family: 'HVL Display';
  src: url('fonts/CrimsonPro-Regular.ttf') format('truetype');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HVL Display';
  src: url('fonts/CrimsonPro-Bold.ttf') format('truetype');
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HVL Display';
  src: url('fonts/CrimsonPro-Italic.ttf') format('truetype');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'HVL Body';
  src: url('fonts/WorkSans-Regular.ttf') format('truetype');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HVL Body';
  src: url('fonts/WorkSans-Bold.ttf') format('truetype');
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #091A2B;
  --ink: #10243D;
  --ink-deep: #060F19;
  --gold: #C8A76A;
  --gold-soft: #E4CFA0;
  --white: #F5F5F5;
  --white-dim: rgba(245, 245, 245, 0.68);
  --white-faint: rgba(245, 245, 245, 0.4);
  --hairline: rgba(200, 167, 106, 0.25);

  --font-display: 'HVL Display', 'Times New Roman', serif;
  --font-body: 'HVL Body', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --gutter: clamp(24px, 5vw, 72px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }

p { color: var(--white-dim); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
}

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

/* ---------- focus states ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Route divider — signature element ----------
   A gold hairline with an origin/destination mark, echoing the
   flight & shipping routes at the center of HVL's service. */
.route-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 340px;
  margin: 28px auto;
  color: var(--gold);
}
.route-divider.align-left { margin-left: 0; }
.route-divider .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.route-divider .line {
  flex: 1;
  height: 1px;
  background-image: linear-gradient(to right, var(--gold) 40%, transparent 0%);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  opacity: 0.8;
}
.route-divider svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--hairline);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(16, 36, 61, 0.88);
  backdrop-filter: blur(10px);
  z-index: -1;
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.brand img { height: 34px; width: auto; }
.brand .brand-name { color: var(--white); }
.brand .brand-name b { color: var(--gold); font-weight: 600; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--white-dim);
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold); }
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--gold); color: var(--ink-deep); }
.btn.solid { background: var(--gold); color: var(--ink-deep); }
.btn.solid:hover { background: var(--gold-soft); border-color: var(--gold-soft); }

.nav-scrim {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--hairline);
  color: var(--gold);
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  position: relative;
  z-index: 96;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-scrim {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(5, 12, 20, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 90;
  }
  .nav-scrim.open { opacity: 1; pointer-events: auto; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--ink-deep);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px var(--gutter);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    border-left: 1px solid var(--hairline);
    z-index: 95;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .nav-links .btn { margin-top: 20px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(90px, 14vw, 150px) var(--gutter) clamp(70px, 10vw, 110px);
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 780px; }
.hero h1 { color: var(--white); margin: 18px 0 26px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; }

.page-hero {
  padding: clamp(64px, 10vw, 90px) var(--gutter) clamp(48px, 7vw, 64px);
  border-bottom: 1px solid var(--hairline);
}
.page-hero h1 { margin-top: 16px; max-width: 700px; }
.page-hero .lede { max-width: 620px; margin-top: 22px; font-size: 1.08rem; }

/* ---------- Route map (SVG hero art) ---------- */
.route-map {
  position: absolute;
  top: 0; right: 0;
  width: min(52vw, 720px);
  height: 100%;
  opacity: 0.9;
  pointer-events: none;
}
.route-map svg { width: 100%; height: 100%; }
.route-map .hub-dot { fill: var(--gold); }
.route-map .hub-ring {
  fill: none; stroke: var(--gold); stroke-width: 1; opacity: 0.5;
}
.route-map .flight-path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.1;
  stroke-dasharray: 4 5;
  opacity: 0.65;
}
.route-map .flight-line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.3;
  opacity: 0.9;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: draw-route 2.6s ease-out forwards;
}
.route-map .flight-line.d2 { animation-delay: 0.3s; }
.route-map .flight-line.d3 { animation-delay: 0.6s; }
@keyframes draw-route {
  to { stroke-dashoffset: 0; }
}
.route-map .hub-dot {
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
@media (prefers-reduced-motion: reduce) {
  .route-map .flight-line { animation: none; stroke-dashoffset: 0; }
  .route-map .hub-dot { animation: none; }
}
.route-map .globe-line {
  fill: none;
  stroke: rgba(200,167,106,0.18);
  stroke-width: 1;
}
@media (max-width: 860px) {
  .route-map { position: static; width: 100%; height: 260px; margin-top: 40px; opacity: 1; }
}

/* ---------- Sections ---------- */
section { padding: clamp(64px, 9vw, 110px) 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { color: var(--white); margin-top: 16px; }
.section-head .lede { margin-top: 18px; font-size: 1.05rem; }

.panel { background: var(--ink); }
.panel-deep { background: var(--ink-deep); }

/* ---------- Grid / cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
@media (max-width: 760px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--navy);
  padding: 40px 36px;
}
.panel .card, .panel-deep .card { background: var(--ink); }
.card .num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.card h3 { color: var(--white); margin: 18px 0 14px; }
.card p { font-size: 0.96rem; }
.card svg { width: 30px; height: 30px; color: var(--gold); margin-bottom: 22px; }

.dedicated-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 1px;
  padding: 26px 32px;
  background: var(--ink);
  border: 1px solid var(--hairline);
  border-top: none;
}
.dedicated-note svg {
  width: 28px; height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}
.dedicated-note p {
  font-size: 0.96rem;
  color: var(--white-dim);
  margin: 0;
}
@media (max-width: 600px) {
  .dedicated-note { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ---------- Image placeholder (swap for real photography) ---------- */
.media-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(200,167,106,0.10), transparent 60%),
    var(--ink);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame .placeholder-tag {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-faint);
  border: 1px dashed var(--hairline);
  padding: 10px 16px;
}
.media-frame.wide { aspect-ratio: 16 / 9; }
.media-frame.tall { aspect-ratio: 3 / 4; }

/* ---------- Split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 44px 0;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold);
  font-weight: 600;
}
.stat span { font-size: 0.82rem; letter-spacing: 0.05em; color: var(--white-dim); text-transform: uppercase; }
@media (max-width: 700px) {
  .stats { grid-template-columns: 1fr; gap: 28px; text-align: left; }
}

/* ---------- Process steps (How We Work) ---------- */
.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  padding: 38px 0;
  border-top: 1px solid var(--hairline);
}
.steps .step:last-child { border-bottom: 1px solid var(--hairline); }
.step .step-index {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
}
.step h3 { color: var(--white); margin-bottom: 10px; }
@media (max-width: 640px) {
  .step { grid-template-columns: 1fr; gap: 10px; }
}

/* ---------- Quote / VIP statement ---------- */
.statement {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.statement h2 {
  color: var(--white);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.35;
}
.statement h2 em { color: var(--gold); font-style: normal; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink-deep);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
  padding: clamp(64px, 9vw, 100px) var(--gutter);
}
.cta-band h2 { color: var(--white); }
.cta-band .lede { max-width: 520px; margin: 20px auto 36px; }
.cta-band .btn-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-item {
  padding: 26px 0;
  border-top: 1px solid var(--hairline);
}
.contact-item:last-child { border-bottom: 1px solid var(--hairline); }
.contact-item .label {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px; display: block;
}
.contact-item a, .contact-item .value { font-size: 1.15rem; color: var(--white); }
.contact-item a:hover { color: var(--gold); }
.contact-item .note { font-size: 0.85rem; color: var(--white-faint); margin-top: 6px; }

form.contact-form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white-dim); }
.field input, .field select, .field textarea {
  background: var(--ink);
  border: 1px solid var(--hairline);
  color: var(--white);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--white-faint); }
form.contact-form .btn { align-self: flex-start; margin-top: 6px; border: none; cursor: pointer; }
.form-note { font-size: 0.82rem; color: var(--white-faint); margin-top: 4px; }

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding-top: 4px;
}
.consent-field input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.consent-field span {
  font-size: 0.84rem;
  color: var(--white-dim);
  line-height: 1.5;
}
.consent-field a { color: var(--gold); }
.consent-field a:hover { color: var(--gold-soft); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-deep);
  border-top: 1px solid var(--hairline);
  padding: 56px 0 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 24px;
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { max-width: 320px; font-size: 0.9rem; }
.footer-slogan {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline);
  color: var(--gold);
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }
.social-links svg { width: 16px; height: 16px; }
.footer-cols { display: flex; gap: clamp(32px, 6vw, 80px); flex-wrap: wrap; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 0.92rem;
  color: var(--white-dim);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--white-faint);
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tag-list span {
  border: 1px solid var(--hairline);
  color: var(--white-dim);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 7px 14px;
}

/* ---------- Header tagline ---------- */
.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin-top: 2px;
}
.brand-text { display: flex; flex-direction: column; }
@media (max-width: 640px) {
  .brand-tagline { display: none; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--reveal-delay, 0s);
}
.grid-3 .card:nth-child(1), .grid-2 .card:nth-child(1) { --reveal-delay: 0s; }
.grid-3 .card:nth-child(2), .grid-2 .card:nth-child(2) { --reveal-delay: 0.08s; }
.grid-3 .card:nth-child(3), .grid-2 .card:nth-child(3) { --reveal-delay: 0.16s; }
.grid-3 .card:nth-child(4) { --reveal-delay: 0.24s; }
.grid-3 .card:nth-child(5) { --reveal-delay: 0.32s; }
.grid-3 .card:nth-child(6) { --reveal-delay: 0.4s; }
.steps .step:nth-child(1) { --reveal-delay: 0s; }
.steps .step:nth-child(2) { --reveal-delay: 0.06s; }
.steps .step:nth-child(3) { --reveal-delay: 0.12s; }
.steps .step:nth-child(4) { --reveal-delay: 0.18s; }
.steps .step:nth-child(5) { --reveal-delay: 0.24s; }
.steps .step:nth-child(6) { --reveal-delay: 0.3s; }
.steps .step:nth-child(7) { --reveal-delay: 0.36s; }
.founders-grid .founder-card:nth-child(1) { --reveal-delay: 0s; }
.founders-grid .founder-card:nth-child(2) { --reveal-delay: 0.1s; }
.stats .stat:nth-child(1) { --reveal-delay: 0s; }
.stats .stat:nth-child(2) { --reveal-delay: 0.1s; }
.stats .stat:nth-child(3) { --reveal-delay: 0.2s; }
@media (prefers-reduced-motion: reduce) {
  .reveal.is-visible { transition-delay: 0s; }
}

/* ---------- Interactive hover lift ---------- */
.card {
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.grid-3, .grid-2 { transition: none; }
.card:hover {
  transform: translateY(-6px);
}
.panel .card:hover, .panel-deep .card:hover { background: var(--navy); }
.card:hover svg { color: var(--gold-soft); }
.card svg { transition: color 0.3s ease; }

.step {
  transition: padding-left 0.35s ease, border-color 0.35s ease;
}
.step:hover {
  padding-left: 14px;
  border-top-color: var(--gold);
}

.founder-card {
  transition: transform 0.35s ease;
}
.founder-card:hover { transform: translateY(-4px); }
.founder-card:hover .founder-photo { border-color: var(--gold-soft); }
.founder-photo { transition: border-color 0.3s ease; }

/* ---------- Slogan marquee ---------- */
.marquee {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  padding: 22px 0;
  background: var(--ink-deep);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  color: var(--gold);
  letter-spacing: 0.04em;
  padding: 0 20px;
  white-space: nowrap;
}
.marquee-sep {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  opacity: 0.75;
  padding: 0 6px;
}
.marquee-sep svg { width: 18px; height: 18px; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Video frame ---------- */
.media-frame video {
  width: 100%; height: 100%; object-fit: cover;
}

/* ---------- Gallery band ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: minmax(0, 1fr);
  gap: 12px;
  height: clamp(260px, 30vw, 380px);
}
.gallery-grid .g-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline);
  min-height: 0;
  min-width: 0;
  height: 100%;
}
.gallery-grid .g-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-grid .g-item:hover img { transform: scale(1.05); }
.gallery-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  min-height: 0;
}
.gallery-side .g-item { flex: 1 1 0; min-height: 0; height: auto; }
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; height: auto; }
  .gallery-grid .g-large { height: 220px; }
  .gallery-side { flex-direction: row; height: 130px; }
}

/* ---------- Animated stat count-up target ---------- */
.stat b[data-count] { font-variant-numeric: tabular-nums; }

/* ---------- Team grid (About Us) ---------- */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.founder-card {
  background: var(--navy);
  padding: 36px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.3s ease;
}
.founder-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.founder-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold);
  flex-shrink: 0;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-card h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 4px; }
.founder-card .role {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.founder-card p.bio {
  font-size: 0.92rem;
  color: var(--white-dim);
  line-height: 1.6;
}
@media (max-width: 760px) {
  .founders-grid { grid-template-columns: 1fr; }
  .founder-card { padding: 32px 26px; }
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: 560px;
  margin: 0 auto;
  background: var(--ink);
  border: 1px solid var(--hairline);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  padding: 24px 26px;
  display: none;
  gap: 16px;
  flex-direction: column;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: 0.86rem; color: var(--white-dim); }
.cookie-banner .cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 11px 22px; font-size: 0.72rem; cursor: pointer; }
.cookie-banner .btn.ghost { border-color: var(--hairline); color: var(--white-dim); background: none; }
.cookie-banner .btn.ghost:hover { border-color: var(--gold); color: var(--gold); background: none; }
