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

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --coal:   #0d0f0e;
  --ore:    #141a16;
  --shaft:  #1e2820;
  --stone:  #2e3a30;
  --muted:  #8a9e8e;
  --fog:    #c4cfb8;
  --light:  #edf0e8;
  --gold:   #c9933a;
  --gold-2: #e8b455;
  --rust:   #8b3a1a;
  --border: rgba(201,147,58,0.18);
  --shadow: 0 24px 60px rgba(0,0,0,0.6);
  --radius: 4px;
  --trans:  0.28s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--coal);
  color: var(--light);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Layout ────────────────────────────────────────────────── */
.container { width: min(1200px, calc(100% - 2.5rem)); margin: 0 auto; }

/* ── Header & Nav ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,15,14,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--trans);
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.brand-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  box-shadow: 0 0 0 1px var(--border);
}
.footer-brand .brand-icon {
  width: 42px; height: 42px;
}
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  color: var(--fog);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  transition: color var(--trans), background var(--trans);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--light); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--gold); }
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fog);
  border-radius: var(--radius);
  padding: 0.55rem 0.7rem;
  line-height: 1;
}

/* ── Hamburger icon (CSS-drawn) ────────────────────────────── */
.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
  height: 16px;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--trans), opacity var(--trans);
}
.menu-toggle.open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open .hamburger span:nth-child(2) { opacity: 0; }
.menu-toggle.open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Inline SVG icons ──────────────────────────────────────── */
.icon-svg {
  display: inline-block;
  vertical-align: middle;
  stroke: currentColor;
  flex-shrink: 0;
}
.contact-icon .icon-svg { color: var(--gold); }
.feature-icon {
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: inline-flex;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform var(--trans), box-shadow var(--trans), opacity var(--trans);
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--coal);
  box-shadow: 0 8px 28px rgba(201,147,58,0.35);
}
.btn-gold:hover { box-shadow: 0 12px 36px rgba(201,147,58,0.5); }
.btn-outline {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fog);
}
.btn-outline:hover { background: rgba(255,255,255,0.06); color: var(--light); }

/* ── Hero (Index) ──────────────────────────────────────────── */
.hero-video-wrap {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.4) brightness(0.7);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,15,14,0.3) 0%, rgba(13,15,14,0.7) 60%, var(--coal) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 6rem 0 4rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--light);
}
.hero-content h1 em { font-style: italic; color: var(--gold-2); }
.hero-content .lede {
  font-size: 1.1rem;
  color: var(--fog);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  position: absolute;
  bottom: 2.5rem;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 1.5rem;
}
.hero-stat {
  text-align: right;
  background: rgba(20,26,22,0.85);
  border: 1px solid var(--border);
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius);
}
.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-2);
  line-height: 1;
}
.hero-stat span { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── Page hero (inner pages) ───────────────────────────────── */
.page-banner {
  padding-top: 80px; /* header offset */
  position: relative;
  overflow: hidden;
}
.page-banner-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.6);
}
.page-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 0;
  background: linear-gradient(0deg, rgba(13,15,14,0.95) 0%, transparent 60%);
}
.page-banner-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  max-width: 700px;
}
.page-banner-content p {
  color: var(--fog);
  max-width: 600px;
  font-size: 1.05rem;
}

/* ── Section spacing ───────────────────────────────────────── */
.section { padding: 5rem 0; }
.section + .section { padding-top: 0; }
.section-alt { background: var(--ore); }
.section-header { margin-bottom: 3rem; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--light);
}
.section-header h2 em { font-style: italic; color: var(--gold-2); }
.section-header p { color: var(--muted); max-width: 560px; font-size: 1rem; }
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.divider-line { flex: 1; height: 1px; background: var(--border); }
.divider-gem { color: var(--gold); font-size: 0.9rem; }

/* ── Cards grid ────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--ore);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,147,58,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: saturate(0.75);
  transition: filter var(--trans);
}
.card:hover .card-img { filter: saturate(1); }
.card-body { padding: 1.5rem; }
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--light);
}
.card-body p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.card-tag {
  display: inline-block;
  background: rgba(201,147,58,0.15);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

/* ── Split layout ──────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  filter: saturate(0.7);
}
.split-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.split-copy h2 em { font-style: italic; color: var(--gold-2); }
.split-copy p { color: var(--muted); margin-bottom: 1rem; line-height: 1.7; }
.bullet-list {
  list-style: none;
  margin: 1.25rem 0;
}
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--fog);
  font-size: 0.95rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bullet-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* ── Timeline ──────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
.timeline-item {
  position: relative;
  padding: 0 0 3rem 2rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(201,147,58,0.5);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.timeline-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--light);
}
.timeline-item p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

/* ── Steps ─────────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.step-card {
  background: var(--ore);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(201,147,58,0.18);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--light); }
.step-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.6; }

/* ── Worker cards ──────────────────────────────────────────── */
.workers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.worker-card {
  background: var(--ore);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.worker-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.worker-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
  filter: saturate(0.6) brightness(0.9);
  transition: filter var(--trans);
}
.worker-card:hover .worker-img { filter: saturate(0.85) brightness(1); }
.worker-info { padding: 1.25rem; }
.worker-info h3 { font-size: 1rem; font-weight: 700; color: var(--light); margin-bottom: 0.2rem; }
.worker-role {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.worker-info p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

/* ── Leadership cards ──────────────────────────────────────── */
.board-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.board-card {
  background: var(--ore);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--trans), border-color var(--trans);
}
.board-card:hover { transform: translateY(-4px); border-color: rgba(201,147,58,0.4); }
.board-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  filter: grayscale(0.4) brightness(0.85);
  transition: filter var(--trans);
}
.board-card:hover .board-img { filter: grayscale(0) brightness(1); }
.board-info { padding: 1.5rem; }
.board-info h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--light); margin-bottom: 0.2rem; }
.board-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.board-info p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ── Mineral table ─────────────────────────────────────────── */
.mineral-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.mineral-card {
  background: var(--ore);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.mineral-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: saturate(0.8);
}
.mineral-body { padding: 1.5rem; }
.mineral-body h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--light); }
.mineral-body p { color: var(--muted); font-size: 0.875rem; line-height: 1.6; }
.mineral-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.mineral-stat .val { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--gold-2); }
.mineral-stat .lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }

/* ── Stats bar ─────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--shaft), var(--stone));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; text-align: center; }
.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-2);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }

/* ── Contact ───────────────────────────────────────────────── */
.contact-shell { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.contact-detail {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-icon {
  width: 38px; height: 38px;
  background: rgba(201,147,58,0.15);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail p { font-size: 0.875rem; color: var(--muted); }
.contact-detail strong { color: var(--light); display: block; margin-bottom: 0.15rem; }

.contact-form {
  background: var(--ore);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--light);
  padding: 0.75rem 1rem;
  font: inherit;
  font-size: 0.9rem;
  transition: border-color var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Panel / Feature ───────────────────────────────────────── */
.feature-panel {
  background: var(--ore);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.feature-panel h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--light); }
.feature-panel p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ── Quote / Callout ───────────────────────────────────────── */
.callout {
  background: linear-gradient(135deg, rgba(201,147,58,0.08), rgba(201,147,58,0.04));
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.callout p { font-style: italic; color: var(--fog); font-size: 1.05rem; line-height: 1.7; }

/* ── Video background (ops page) ───────────────────────────── */
.video-section {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(0.3) brightness(0.6);
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,15,14,0.65);
}
.video-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

/* ── Accordion (FAQ) ───────────────────────────────────────── */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--light);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--trans);
}
.accordion-btn:hover { background: rgba(255,255,255,0.04); }
.accordion-btn.open { color: var(--gold-2); }
.accordion-icon { color: var(--gold); font-size: 1.2rem; transition: transform var(--trans); }
.accordion-btn.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.accordion-body.open { display: block; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--coal);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand .brand { font-size: 1.1rem; margin-bottom: 0.75rem; }
.footer-brand p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--muted); font-size: 0.875rem; transition: color var(--trans); }
.footer-col a:hover { color: var(--light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--muted); font-size: 0.8rem; }
.footer-bottom a { color: var(--muted); font-size: 0.8rem; transition: color var(--trans); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Fade-in animation ─────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── Index page specific ───────────────────────────────────── */
.index-main { padding-top: 0; }
.feature-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ── Page main offset ──────────────────────────────────────── */
.page-main { padding-top: 80px; }

/* ── History page ──────────────────────────────────────────── */
.history-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }

/* ── Imagery accent ────────────────────────────────────────── */
.img-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.img-grid img { border-radius: var(--radius); height: 180px; object-fit: cover; filter: saturate(0.7); }
.img-grid img:first-child { grid-column: 1 / -1; height: 220px; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .history-layout { gap: 2.5rem; }
}

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .contact-shell { grid-template-columns: 1fr; }
  .feature-cols { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .history-layout { grid-template-columns: 1fr; }
  .page-banner-img { height: 300px; }
}

@media (max-width: 768px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(13,15,14,0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    display: none;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.85rem 1rem; border-radius: var(--radius); min-height: 48px; display: flex; align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .board-grid, .workers-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; justify-content: center; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; }
  .img-grid { grid-template-columns: 1fr; }
  .img-grid img:first-child { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  video { display: none; }
}
