/* ==========================================================================
   Luvaana Petrotech Industries — Stylesheet
   Design tokens matched to the brand mark: deep navy, brass gold, leaf green.
   Type: Barlow Semi Condensed (display) + Inter (body).
   ========================================================================== */

:root {
  /* Color — matched to the Luvaana logo palette */
  --navy: #0C3357;
  --navy-mid: #123E68;
  --navy-deep: #001C34;
  --charcoal: #14202B;
  --off-white: #EFF2F5;
  --paper: #FBFCFD;
  --brass: #AD8A3C;
  --brass-deep: #8A6D2C;
  --brass-light: #D2B876;
  --leaf: #0B5A46;
  --leaf-light: #1C7D64;
  --line: #DFE3E8;
  --line-dark: #1B4265;
  --text: #16212B;
  --text-muted: #57636D;
  --text-on-dark: #EEF2F5;
  --text-on-dark-muted: #A7B7C4;
  --success-bg: #E9F5EE;
  --success-text: #1D5C3F;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(9, 26, 42, 0.06), 0 1px 1px rgba(9, 26, 42, 0.04);
  --shadow-md: 0 12px 28px -12px rgba(9, 26, 42, 0.22), 0 2px 8px rgba(9, 26, 42, 0.06);
  --shadow-lg: 0 24px 48px -18px rgba(9, 26, 42, 0.32);

  /* Type */
  --font-display: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --max-width: 1200px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 92px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: -0.005em;
  color: var(--navy-deep);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); letter-spacing: -0.015em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--text-muted); max-width: 62ch; }
.section-intro p { max-width: 68ch; }

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

section { padding: clamp(3.25rem, 7vw, 6rem) 0; }
.bg-off { background: var(--off-white); }
.bg-navy {
  background: radial-gradient(120% 140% at 15% 0%, var(--navy-mid) 0%, var(--navy-deep) 62%);
  color: var(--text-on-dark);
}
.bg-navy p, .bg-navy .text-muted { color: var(--text-on-dark-muted); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }

.section-head { margin-bottom: 2.75rem; max-width: 42rem; }
.section-head p { font-size: 1.05rem; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brass);
  color: #fff;
  padding: 0.75em 1.25em;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 0.85em 1.75em;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  line-height: 1.1;
}
.btn-primary { background: var(--brass); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brass-deep); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.bg-navy .btn-outline,
.hero .btn-outline,
.page-hero .btn-outline,
.cta-band .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.bg-navy .btn-outline:hover,
.hero .btn-outline:hover,
.page-hero .btn-outline:hover,
.cta-band .btn-outline:hover { background: #fff; color: var(--navy); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,252,253,0.98);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.8rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  display: block;
  box-shadow: var(--shadow-sm);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; color: var(--navy-deep); }
.brand-text span { font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.02em; }

.main-nav { display: flex; align-items: center; gap: 1.5rem; }
.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 500;
  padding: 0.4rem 0.05rem;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -1px;
  height: 2px;
  background: var(--brass);
  transition: right 0.2s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }
.main-nav a[aria-current="page"] { color: var(--navy-deep); font-weight: 600; }

.header-ctas { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.5em 0.6em;
  cursor: pointer;
  color: var(--navy);
}
.nav-toggle svg { display: block; }

@media (max-width: 1080px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 84vw);
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 1.75rem 2rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -16px 0 40px rgba(0,0,0,0.14);
    z-index: 95;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { width: 100%; padding: 0.85rem 0; border-bottom: 1px solid var(--line); white-space: normal; }
  .main-nav a::after { display: none; }
  .header-ctas .btn-outline { display: none; }
  .nav-toggle { display: inline-flex; position: relative; z-index: 96; }
  body.nav-open { overflow: hidden; }
  .nav-scrim {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,17,32,0.5);
    z-index: 90;
  }
  body.nav-open .nav-scrim { display: block; }
}

@media (max-width: 560px) {
  .header-inner { gap: 0.6rem; padding-left: 1rem; padding-right: 1rem; }
  .brand-text span { display: none; }
  .header-ctas { gap: 0.5rem; }
  .header-ctas .btn-primary { padding: 0.65em 1em; font-size: 0.92rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 12% -10%, var(--navy-mid) 0%, var(--navy-deep) 60%);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 5rem) 0 clamp(2.75rem, 6vw, 3.75rem);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  pointer-events: none;
}
.hero::before {
  width: 480px; height: 480px;
  background: var(--leaf-light);
  top: -180px; right: 8%;
}
.hero::after {
  width: 420px; height: 420px;
  background: #2E63A6;
  bottom: -220px; right: 28%;
  opacity: 0.22;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 0.5em; }
.hero .lede { color: var(--text-on-dark-muted); font-size: 1.12rem; max-width: 46ch; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.7rem 0 2.25rem; }
.hero-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  position: relative;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-on-dark);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 0.45em 1em 0.45em 0.8em;
}
.trust-chip svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--brass-light); }

@media (max-width: 800px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-figure { order: -1; aspect-ratio: 16/9; }
}

/* Sub-page hero (shorter) */
.page-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 160% at 85% -20%, var(--navy-mid) 0%, var(--navy-deep) 55%);
  color: #fff;
  padding: clamp(2.75rem, 6vw, 3.75rem) 0;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: var(--text-on-dark-muted); max-width: 58ch; }
.breadcrumb { font-size: 0.85rem; color: var(--text-on-dark-muted); margin-bottom: 1.1rem; }
.breadcrumb a { color: var(--text-on-dark-muted); text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Grids / Cards ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card figure { margin: 0; aspect-ratio: 16/10; overflow: hidden; }
.product-card img { width: 100%; height: 100%; object-fit: cover; }
.product-card .product-body { padding: 1.9rem; display: flex; flex-direction: column; flex: 1; }
.product-card ul { margin: 0 0 1.3rem; padding-left: 1.1rem; color: var(--text-muted); }
.product-card ul li { margin-bottom: 0.4em; }
.product-card .btn { margin-top: auto; align-self: flex-start; }

/* Benefit tiles (icon cards) */
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.85rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.benefit:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
.benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--brass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit h3 { margin-bottom: 0.4em; font-size: 1.12rem; }
.benefit p { font-size: 0.96rem; margin-bottom: 0; }

/* Industry tiles */
.industry-tag {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.industry-tag:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.industry-tag .industry-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--leaf);
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-tag .industry-icon svg { width: 19px; height: 19px; }
.industry-tag span.label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy-deep);
  line-height: 1.2;
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding-top: 0.5rem;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--brass-light) 0%, var(--brass) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.06rem; margin-bottom: 0.35em; }
.step p { font-size: 0.95rem; }

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: radial-gradient(130% 160% at 50% 0%, var(--navy-mid) 0%, var(--navy-deep) 65%);
  color: #fff;
  padding: clamp(3rem, 6vw, 4rem) 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--text-on-dark-muted); margin-left: auto; margin-right: auto; }
.cta-band .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }

/* Bulk supply / info list */
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.info-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 1.02rem;
}
.info-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.1em;
  color: var(--brass-light);
}
.bg-navy .info-list li { color: var(--text-on-dark); }
.info-list.on-light li svg { color: var(--brass); }
.info-list.on-light li { color: var(--text); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }
.split figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.split img { width: 100%; }

/* Spec note box */
.spec-note {
  border: 1px dashed rgba(255,255,255,0.28);
  border-radius: var(--radius);
  padding: 1.5rem 1.7rem;
  background: rgba(255,255,255,0.05);
  font-size: 0.98rem;
}
.spec-note.light { border-color: var(--line); background: #fff; color: var(--text-muted); box-shadow: var(--shadow-sm); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-item h3 { font-size: 1.06rem; margin-bottom: 0.4em; }
.faq-item p { margin-bottom: 0; }

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
}
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.92rem; font-weight: 600; color: var(--navy-deep); }
.field .hint { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.75em 0.9em;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(173, 138, 60, 0.15);
  outline: none;
}
.field textarea { resize: vertical; min-height: 100px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 0.6rem; }
.checkbox-row input { margin-top: 0.3em; accent-color: var(--brass); }
.checkbox-row label { font-size: 0.92rem; font-weight: 400; color: var(--text-muted); }
.form-actions { display: flex; align-items: center; gap: 1rem; margin-top: 0.5rem; flex-wrap: wrap; }
.form-note { font-size: 0.85rem; color: var(--text-muted); }

.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.form-success {
  display: none;
  background: var(--success-bg);
  color: var(--success-text);
  border: 1px solid #bcdfca;
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  margin-bottom: 1.5rem;
}
.form-success.is-visible { display: block; }
.form-panel.is-hidden { display: none; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: start; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
.contact-list > div { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact-list .contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--leaf);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-list .contact-icon svg { width: 19px; height: 19px; }
.contact-list dt { font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.15em; text-transform: none; }
.contact-list dd { margin: 0; font-size: 1.08rem; }
.contact-list a { text-decoration: none; color: var(--navy-deep); border-bottom: 1px solid var(--line); }
.contact-list a:hover { border-color: var(--navy-deep); }

/* Leadership */
.leader-card { display: block; padding: 0; overflow: hidden; max-width: 560px; }
.leader-photos {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
  background: var(--off-white);
}
.leader-photos img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}
.leader-info { padding: 1.5rem 2rem 1.75rem; }
.leader-info h3 { margin-bottom: 0.2em; }
.leader-info .role { color: var(--brass); font-weight: 600; font-family: var(--font-display); margin-bottom: 0.6em; display: block; }
@media (max-width: 620px) {
  .leader-card { max-width: 100%; }
  .leader-photos { width: 100%; height: auto; }
  .leader-photos img { width: 100%; height: auto; object-fit: contain; }
  .leader-info { padding: 1.35rem 1.25rem 1.6rem; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: var(--text-on-dark-muted); padding: 3.75rem 0 1.75rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 1.1rem; color: #fff; }
.footer-brand .brand-mark { box-shadow: none; }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 1.1rem; }
.site-footer address { font-style: normal; font-size: 0.92rem; line-height: 1.75; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.footer-links a { text-decoration: none; font-size: 0.92rem; }
.footer-links a:hover { color: #fff; }
.footer-legal { font-size: 0.85rem; line-height: 1.9; }
.footer-legal dt { color: var(--text-on-dark-muted); }
.footer-legal dd { margin: 0 0 0.3rem; color: var(--text-on-dark); }
.footer-legal a { text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; }
.footer-bottom {
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: #fff; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Leadership photo mobile fix v2: preserve full portrait photos */
.leader-photos {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  height: auto !important;
  overflow: visible;
}
.leader-photos img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  flex: none !important;
}
@media (max-width: 620px) {
  .leader-card { overflow: hidden; }
  .leader-photos { height: auto !important; }
  .leader-photos img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
  }
}
