/* ============================================================
   METRA IMPEX LIMITED — v3 Design System
   Refined navy / gold. Products + Industrial Chemical Consulting.
   Font: Inter (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px; line-height: 1.6; color: var(--text);
  background: #fff; -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Tokens ── */
:root {
  --navy:       #0b2545;
  --navy-deep:  #071a33;
  --navy-soft:  #0e2f5e;
  --blue:       #1363df;
  --blue-light: #eaf0fd;
  --gold:       #e8a020;
  --gold-deep:  #c9861200;
  --gold-light: #fdf5e8;
  --white:      #ffffff;
  --off-white:  #f7f8fb;
  --photo-bg:   #F7ECE8;
  --light:      #f0f3f9;
  --border:     #e4e8f0;
  --border-mid: #d4dae6;
  --text:       #374151;
  --text-muted: #8b95a5;
  --text-dark:  #0d1b2e;

  /* refrigerant colour coding */
  --c-r404a: #F26522;
  --c-r134a: #8FC7EA;
  --c-r407c: #B5342B;
  --c-r410a: #D95D8F;
  --c-r22:   #6FBF5A;
  --c-r290:  #C0392B;
  --c-r600a: #9AA6B2;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-xs: 0 1px 4px rgba(11,37,69,.05);
  --shadow-sm: 0 2px 12px rgba(11,37,69,.06);
  --shadow-md: 0 6px 28px rgba(11,37,69,.09);
  --shadow-lg: 0 16px 56px rgba(11,37,69,.14);

  --max-w: 1180px;
  --gutter: 24px;
  --nav-h: 72px;
}

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

/* ── Typography ── */
h1,h2,h3,h4,h5 { color: var(--navy); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.3rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-weight: 700; }
h5 { font-size: .84rem; font-weight: 700; }
p  { color: var(--text); line-height: 1.75; }

.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .71rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
}
.label::before { content:''; display:block; width:20px; height:2px; background: var(--gold); border-radius:2px; }
.label-gold { color: var(--gold); }
.label-white { color: var(--gold); }

.lead { font-size: 1.06rem; line-height: 1.8; color: var(--text); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius-md);
  font-size: .88rem; font-weight: 700; cursor: pointer;
  border: 2px solid transparent; transition: all .2s ease; white-space: nowrap;
  font-family: inherit;
}
.btn-navy   { background: var(--navy); color:#fff; border-color: var(--navy); }
.btn-navy:hover { background: #071c36; border-color:#071c36; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-blue   { background: var(--blue); color:#fff; border-color: var(--blue); }
.btn-blue:hover { background:#1054c4; border-color:#1054c4; transform: translateY(-1px); }
.btn-gold   { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background:#d4901a; border-color:#d4901a; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--border-mid); }
.btn-outline:hover { border-color: var(--navy); background: var(--off-white); }
.btn-outline-white { background: transparent; color:#fff; border-color: rgba(255,255,255,.42); }
.btn-outline-white:hover { border-color:#fff; background: rgba(255,255,255,.10); }
.btn-lg { padding: 15px 32px; font-size: .94rem; }
.btn-sm { padding: 9px 18px; font-size: .8rem; }

/* ── Navigation ── */
nav {
  position: fixed; top:0; left:0; right:0; z-index: 300;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border); height: var(--nav-h);
}
.nav-inner { display:flex; align-items:center; justify-content:space-between; height: var(--nav-h); gap: 16px; }
.nav-logo img { height: 42px; width:auto; }
.nav-links { display:flex; align-items:center; gap:2px; }
.nav-links a {
  font-size: .86rem; font-weight: 600; color: var(--text);
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: color .15s, background .15s; position: relative;
}
.nav-links a:hover { color: var(--navy); background: var(--off-white); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content:''; position:absolute; left:14px; right:14px; bottom:2px;
  height:2px; background: var(--gold); border-radius:2px;
}
.nav-cta .btn { padding: 10px 20px; font-size: .84rem; }
.nav-toggle {
  display:none; background:none; border:none; cursor:pointer;
  width:42px; height:42px; border-radius: var(--radius-sm);
  align-items:center; justify-content:center; flex-direction:column; gap:5px;
}
.nav-toggle span { display:block; width:22px; height:2px; background: var(--navy); border-radius:2px; transition: transform .25s, opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Page hero ── */
.page-hero {
  margin-top: var(--nav-h); padding: 76px 0 66px;
  background: var(--off-white); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content:''; position:absolute; right:0; top:0; bottom:0; width:44%;
  background: linear-gradient(90deg, transparent, var(--blue-light)); pointer-events:none;
}
.page-hero-content { position: relative; z-index:1; }
.breadcrumb { font-size:.78rem; color: var(--text-muted); margin-bottom:14px; font-weight:500; }
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 12px; }
.page-hero p { font-size: 1.04rem; color: var(--text); max-width: 620px; }

/* ── Sections ── */
.section { padding: 104px 0; }
.section-sm { padding: 76px 0; }
.section-alt { background: var(--off-white); }
.section-navy { background: var(--navy); }
.section-navy h2, .section-navy h3, .section-navy h4 { color:#fff; }
.section-navy p { color: rgba(255,255,255,.68); }

.section-header { margin-bottom: 52px; }
.section-header.centered { text-align:center; }
.section-header.centered .label { justify-content:center; }
.section-header.centered .label::before { display:none; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-muted); max-width: 620px; font-size: 1.02rem; }
.section-header.centered p { margin: 0 auto; }

/* ── Cards ── */
.card {
  background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; transition: box-shadow .25s, transform .2s, border-color .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--border-mid); }

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

/* ── Product cards ── */
.filter-bar { display:flex; flex-wrap:wrap; gap:8px; margin-bottom: 36px; align-items:center; }
.filter-label { font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color: var(--text-muted); margin-right:6px; }
.chip {
  font-family: inherit; font-size:.8rem; font-weight:600; cursor:pointer;
  padding: 8px 16px; border-radius: 40px; border:1.5px solid var(--border);
  background:#fff; color: var(--text); transition: all .18s;
}
.chip:hover { border-color: var(--navy); color: var(--navy); }
.chip.active { background: var(--navy); border-color: var(--navy); color:#fff; }

.product-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.p-card {
  background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg);
  overflow:hidden; display:flex; flex-direction:column;
  transition: box-shadow .25s, transform .2s, border-color .2s;
}
.p-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border-mid); }
.p-card-media { position:relative; background: var(--photo-bg); border-bottom:1px solid var(--border); }
.p-card-media img { width:100%; height: 230px; object-fit: contain; padding: 20px; }
.p-tag {
  position:absolute; top:14px; left:14px;
  font-size:.68rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  color:#fff; background: var(--navy); padding: 5px 11px; border-radius: 30px;
}
.p-swatch { position:absolute; top:0; left:0; right:0; height:4px; }
.p-card-body { padding: 24px; flex:1; display:flex; flex-direction:column; }
.p-brand { font-size:.68rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color: var(--blue); margin-bottom:7px; }
.p-card-body h3 { font-size:1.02rem; margin-bottom:10px; line-height:1.35; }
.p-desc { font-size:.87rem; color: var(--text); line-height:1.7; flex:1; }
.p-specs { margin-top:18px; padding-top:16px; border-top:1px solid var(--border); }
.p-spec-row { display:flex; justify-content:space-between; gap:12px; font-size:.79rem; padding:6px 0; border-bottom:1px solid var(--light); }
.p-spec-row:last-child { border-bottom:none; }
.p-spec-row .lbl { color: var(--text-muted); flex-shrink:0; }
.p-spec-row .val { font-weight:600; color: var(--navy); text-align:right; }
.p-flags { display:flex; flex-wrap:wrap; gap:6px; margin-top:16px; }
.pill {
  font-size:.7rem; font-weight:700; padding:4px 11px; border-radius:30px;
  background: var(--blue-light); color: var(--blue);
}
.pill-warn { background:#fdecea; color:#b5342b; }
.pill-eco  { background:#eaf7e9; color:#3d7c31; }
.pill-neutral { background: var(--light); color: var(--text-muted); }
.p-card-foot { padding: 0 24px 24px; }
.p-card-foot .btn { width:100%; }

/* ── Spec table ── */
.table-wrap { border:1px solid var(--border); border-radius: var(--radius-lg); overflow:hidden; overflow-x:auto; }
table { width:100%; border-collapse: collapse; font-size:.86rem; min-width: 640px; }
thead th {
  background: var(--navy); color:#fff; text-align:left; padding: 14px 18px;
  font-size:.71rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
}
tbody td { padding: 14px 18px; border-bottom:1px solid var(--border); color: var(--text); }
tbody tr:last-child td { border-bottom:none; }
tbody tr:nth-child(even) { background: var(--off-white); }
tbody td strong { color: var(--navy); }

/* ── Stats bar ── */
.stats-bar { background: var(--navy); }
.stats-inner { display:grid; grid-template-columns: repeat(4,1fr); }
.stat-cell { padding: 38px 30px; border-right:1px solid rgba(255,255,255,.09); }
.stat-cell:last-child { border-right:none; }
.stat-num { font-size:2.1rem; font-weight:900; color:#fff; letter-spacing:-.04em; line-height:1; }
.stat-num em { font-style:normal; color: var(--gold); }
.stat-lbl { font-size:.72rem; color: rgba(255,255,255,.6); font-weight:600; letter-spacing:.06em; text-transform:uppercase; margin-top:8px; }

/* ── Clientele ── */
.logo-grid { display:grid; grid-template-columns: repeat(5,1fr); gap:16px; }
.logo-cell {
  background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg);
  height: 132px; display:flex; align-items:center; justify-content:center; padding: 24px;
  transition: box-shadow .25s, transform .2s, border-color .2s;
}
.logo-cell:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); border-color: var(--border-mid); }
.logo-cell img { max-height: 100%; max-width:100%; width:auto; object-fit: contain; }
.logo-strip { display:grid; grid-template-columns: repeat(7,1fr); gap:12px; }
.logo-tile {
  background:#fff; border:1px solid var(--border); border-radius: var(--radius-md);
  height: 88px; display:flex; align-items:center; justify-content:center; padding:14px;
  transition: box-shadow .25s, border-color .2s;
}
.logo-tile:hover { box-shadow: var(--shadow-sm); border-color: var(--border-mid); }
.logo-tile img { max-height:100%; max-width:100%; width:auto; object-fit:contain; }

.client-list { display:grid; grid-template-columns: repeat(3,1fr); gap:14px; }
.client-row {
  display:flex; align-items:center; gap:14px; background:#fff;
  border:1px solid var(--border); border-radius: var(--radius-md); padding: 16px 18px;
}
.client-num {
  width:32px; height:32px; flex-shrink:0; background: var(--navy); color:#fff;
  border-radius: var(--radius-sm); display:flex; align-items:center; justify-content:center;
  font-size:.7rem; font-weight:800;
}
.client-row h4 { font-size:.9rem; margin-bottom:2px; }
.client-row span { font-size:.78rem; color: var(--text-muted); }

/* ── Consulting ── */
.svc-block { display:grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items:start; padding: 88px 0; border-bottom:1px solid var(--border); }
.svc-block:last-child { border-bottom:none; }
.svc-block.reverse .svc-media { order: 2; }
.svc-num {
  font-size:.72rem; font-weight:800; letter-spacing:.14em; text-transform:uppercase;
  color: var(--gold); margin-bottom:12px;
}
.svc-media {
  background: var(--navy); border-radius: var(--radius-xl); padding: 44px;
  min-height: 340px; display:flex; flex-direction:column; justify-content:center; gap: 18px;
  position:relative; overflow:hidden;
}
.svc-media::after {
  content:''; position:absolute; right:-60px; bottom:-60px; width:220px; height:220px;
  border-radius:50%; background: rgba(232,160,32,.14);
}
.svc-media h4 { color:#fff; font-size:1.1rem; }
.svc-media ul { display:flex; flex-direction:column; gap:12px; position:relative; z-index:1; }
.svc-media li { color: rgba(255,255,255,.78); font-size:.88rem; display:flex; gap:10px; align-items:flex-start; line-height:1.6; }
.svc-media li::before { content:''; width:7px; height:7px; border-radius:50%; background: var(--gold); flex-shrink:0; margin-top:8px; }

.check-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin: 24px 0; }
.check-item { display:flex; gap:10px; align-items:flex-start; background: var(--off-white); border-radius: var(--radius-md); padding: 12px 15px; font-size:.85rem; }
.check-dot { width:7px; height:7px; flex-shrink:0; background: var(--blue); border-radius:50%; margin-top:7px; }

.step-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:20px; }
.step {
  background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg); padding: 28px;
  position:relative;
}
.step-n {
  width:38px; height:38px; border-radius: var(--radius-sm); background: var(--gold-light);
  color: var(--gold); font-weight:900; font-size:.9rem;
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.step h4 { margin-bottom:8px; }
.step p { font-size:.85rem; color: var(--text-muted); line-height:1.65; }

/* ── Contact ── */
.contact-layout { display:grid; grid-template-columns: 1fr 1.25fr; gap: 56px; align-items:start; }
.contact-item { display:flex; gap:16px; align-items:flex-start; padding: 18px 0; border-bottom:1px solid var(--border); }
.contact-item:last-child { border-bottom:none; }
.contact-ico {
  width:44px; height:44px; flex-shrink:0; border-radius: var(--radius-md);
  background: var(--blue-light); display:flex; align-items:center; justify-content:center; font-size:1.15rem;
}
.contact-item h5 { font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color: var(--text-muted); margin-bottom:5px; }
.contact-item p, .contact-item a { font-size:.92rem; color: var(--navy); font-weight:600; line-height:1.6; }
.contact-item a:hover { color: var(--blue); }

.form-card { background:#fff; border:1px solid var(--border); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field { margin-bottom:18px; }
.field label { display:block; font-size:.76rem; font-weight:700; color: var(--navy); margin-bottom:7px; letter-spacing:.02em; }
.field input, .field select, .field textarea {
  width:100%; font-family:inherit; font-size:.9rem; color: var(--text);
  padding: 12px 14px; border:1.5px solid var(--border); border-radius: var(--radius-md);
  background:#fff; transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-light);
}
.field textarea { resize: vertical; min-height: 120px; }
.hours-card { background: var(--off-white); border:1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; margin-top: 22px; }
.hours-row { display:flex; justify-content:space-between; font-size:.87rem; padding:9px 0; border-bottom:1px solid var(--border); }
.hours-row:last-child { border-bottom:none; }
.hours-row .time { font-weight:700; color: var(--navy); }
.hours-row .closed { color: var(--text-muted); }
.map-embed { border:1px solid var(--border); border-radius: var(--radius-xl); overflow:hidden; height: 380px; margin-top: 56px; }
.map-embed iframe { width:100%; height:100%; border:0; display:block; }

/* ── CTA band ── */
.cta-band { background: var(--navy); position:relative; overflow:hidden; }
.cta-band::before {
  content:''; position:absolute; left:-120px; top:-120px; width:420px; height:420px;
  border-radius:50%; background: rgba(232,160,32,.10);
}
.cta-inner { position:relative; z-index:1; text-align:center; padding: 88px 0; }
.cta-inner h2 { color:#fff; margin-bottom:14px; }
.cta-inner p { color: rgba(255,255,255,.68); max-width: 540px; margin: 0 auto 34px; }
.cta-duo { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ── Notice ── */
.notice {
  display:flex; gap:14px; align-items:flex-start;
  background: var(--gold-light); border:1px solid #f2dcb4; border-left:4px solid var(--gold);
  border-radius: var(--radius-md); padding: 18px 20px; font-size:.87rem; color:#6b4c11; line-height:1.7;
}
.notice strong { color:#5a3f0c; }

/* ── Footer ── */
footer { background: var(--navy-deep); color: rgba(255,255,255,.6); padding: 72px 0 0; }
.footer-grid { display:grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 52px; }
.footer-brand img { height: 40px; width:auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size:.87rem; color: rgba(255,255,255,.55); line-height:1.75; max-width: 320px; }
.footer-contact { margin-top:20px; font-size:.84rem; color: rgba(255,255,255,.55); line-height:1.9; }
.footer-contact a:hover { color: var(--gold); }
.footer-col h5 { color:#fff; font-size:.73rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:18px; }
.footer-col ul { display:flex; flex-direction:column; gap:11px; }
.footer-col a { font-size:.87rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.09); padding: 24px 0 30px;
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  font-size:.79rem; color: rgba(255,255,255,.42);
}

/* ── Utility ── */
.mt-0 { margin-top:0; } .mb-0 { margin-bottom:0; }
.center { text-align:center; }
.hidden { display:none !important; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .logo-grid { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap:36px; }
  .client-list { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .step-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: var(--nav-h); left:0; right:0;
    background:#fff; border-bottom:1px solid var(--border);
    flex-direction: column; align-items: stretch; gap:0;
    padding: 12px var(--gutter) 20px; box-shadow: var(--shadow-md);
    max-height: 0; overflow:hidden; opacity:0; pointer-events:none;
    transition: max-height .3s ease, opacity .2s ease;
  }
  .nav-links.open { max-height: 460px; opacity:1; pointer-events:auto; }
  .nav-links a { padding: 13px 6px; border-radius:0; border-bottom:1px solid var(--light); }
  .nav-links a.active::after { display:none; }
  .nav-links a.active { color: var(--blue); }
  .nav-toggle { display:flex; }
  .nav-cta { display:none; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .svc-block { grid-template-columns:1fr; gap: 34px; padding: 60px 0; }
  .svc-block.reverse .svc-media { order: 0; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-cell { border-bottom:1px solid rgba(255,255,255,.09); }
  .grid-3 { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .section-sm { padding: 56px 0; }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2,1fr); }
  .client-list { grid-template-columns: 1fr; }
  .grid-2, .grid-4, .check-grid, .form-row, .step-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
  .page-hero { padding: 56px 0 48px; }
  .footer-bottom { flex-direction: column; gap:8px; }
}

/* ── Home hero ── */
.hero-split { display:grid; grid-template-columns: 1.15fr .85fr; gap:56px; align-items:center; padding:96px 0; }
.hero-stack { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.hero-stack-tall { grid-row: span 2; background: var(--photo-bg); border-radius: var(--radius-xl); overflow:hidden; }
.hero-stack-tall img { width:100%; height:100%; object-fit:contain; padding:18px; }
.hero-stack-cell { background: var(--photo-bg); border-radius: var(--radius-lg); overflow:hidden; }
.hero-stack-cell img { width:100%; height:190px; object-fit:contain; padding:14px; }
.who-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }

@media (max-width: 900px) {
  .hero-split { grid-template-columns:1fr; gap:40px; padding:64px 0; }
  .hero-stack { grid-template-columns:1fr 1fr; }
  .hero-stack-tall { grid-row: span 1; grid-column: span 2; }
  .hero-stack-tall img { height:280px; }
  .who-grid { grid-template-columns:1fr; gap:36px; }
  .who-grid img { height:320px !important; }
}
@media (max-width: 560px) {
  .hero-stack { grid-template-columns:1fr; }
  .hero-stack-tall { grid-column: span 1; }
  .logo-strip { grid-template-columns: repeat(2,1fr); }
}

/* mobile-only CTA inside the nav drawer */
.nav-mobile-cta { display:none; }
.nav-mobile-cta a { color: var(--blue) !important; font-weight:700 !important; }
@media (max-width: 900px) {
  .nav-mobile-cta { display:block; }
  .logo-strip { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 640px) { .logo-strip { grid-template-columns: repeat(3,1fr); } }

/* ── Awaiting-photograph well (no invented product imagery) ── */
.p-noimg {
  height: 230px; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap: 10px; background: var(--photo-bg); text-align:center;
}
.p-noimg-grade { font-size: 2.1rem; font-weight: 900; letter-spacing: -.03em; line-height:1; }
.p-noimg-note {
  font-size: .74rem; font-weight: 600; letter-spacing:.04em; color: #a89a94; line-height:1.5;
}
