/* ===================================================
   SYBOTEC WORDPRESS THEME — MAIN STYLESHEET
   =================================================== */

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

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

:root {
  --red: #D01515;
  --red-bright: #F01A1A;
  --red-dim: #9C1414;
  --black: #1A1A1E;
  --dark: #22222A;
  --dark2: #292932;
  --dark3: #32323C;
  --dark4: #3A3A46;
  --steel: #44444F;
  --border: rgba(255,255,255,0.09);
  --border-red: rgba(208,21,21,0.35);
  --text-primary: #F2EFE9;
  --text-secondary: #A8A49F;
  --text-muted: #6E6B66;
  --accent-gold: #C8A96E;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--red-dim); }

/* ─── TYPOGRAPHY RESET ─── */
h1, h2, h3, h4, h5, h6 { font-weight: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── NAV ─── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(26,26,30,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}

.nav-logo-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* WordPress nav menu */
#site-header .main-navigation ul {
  display: flex; gap: 36px; list-style: none; margin: 0; padding: 0;
}

#site-header .main-navigation ul li { position: relative; }

#site-header .main-navigation ul li a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

#site-header .main-navigation ul li a:hover,
#site-header .main-navigation ul li.current-menu-item a { color: var(--text-primary); }

#site-header .main-navigation ul li.menu-item-cta a {
  background: var(--red);
  color: #fff;
  padding: 8px 20px;
  border-radius: 2px;
  letter-spacing: 0.1em;
  transition: background 0.2s;
}
#site-header .main-navigation ul li.menu-item-cta a:hover { background: var(--red-bright); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none; border: none;
  padding: 8px;
  flex-direction: column; gap: 5px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary);
  transition: 0.3s;
}

/* ─── HERO ─── */
.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}

.hero-video-wrap iframe,
.hero-video-wrap video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  pointer-events: none;
  border: none;
}

.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(26,26,30,0.82) 0%, rgba(26,26,30,0.65) 50%, rgba(208,21,21,0.08) 100%);
}

.hero-video-grid {
  position: absolute; inset: 0; z-index: 2;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.025) 79px, rgba(255,255,255,0.025) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.025) 79px, rgba(255,255,255,0.025) 80px);
}

.hero-bg-line {
  position: absolute; top: 0; bottom: 0; z-index: 3;
  left: 50%; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--red-dim) 30%, var(--red-dim) 70%, transparent);
  opacity: 0.2;
}

.hero-content { position: relative; z-index: 4; }

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--red);
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(68px, 8vw, 104px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 32px;
}
.hero-h1 em {
  font-style: normal;
  color: var(--red);
  display: block;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 48px;
}

.hero-actions { display: flex; align-items: center; gap: 20px; }

.btn-primary {
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 2px;
  border: none;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}
.btn-primary:hover { background: var(--red-bright); transform: translateY(-1px); }

.btn-ghost {
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 24px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); color: var(--text-primary); }

.hero-stats {
  position: relative; z-index: 4;
  display: flex; flex-direction: column; gap: 24px;
  padding-left: 64px;
  border-left: 1px solid var(--border-red);
  align-self: center;
}

.hero-stat {
  display: flex; flex-direction: column; gap: 4px;
  animation: fade-up 0.8s ease forwards;
  opacity: 0; transform: translateY(20px);
}
.hero-stat:nth-child(1) { animation-delay: 0.3s; }
.hero-stat:nth-child(2) { animation-delay: 0.5s; }
.hero-stat:nth-child(3) { animation-delay: 0.7s; }

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

.stat-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.stat-num span { color: var(--red); }

.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 32px; height: 1px;
  background: var(--border-red);
}

/* ─── SECTIONS ─── */
.site-section { padding: 100px 48px; }
.site-section + .site-section { border-top: 1px solid var(--border); }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

/* ─── ABOUT ─── */
.about-section { background: var(--dark2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.about-body p + p { margin-top: 20px; }

.about-highlight {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.5;
  border-left: 3px solid var(--red);
  padding-left: 24px;
  margin-bottom: 32px;
}

.about-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.about-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-card-text {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.about-badge-row {
  display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap;
}

.badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  background: var(--dark4);
}

/* ─── SERVICES ─── */
.services-section { background: var(--dark); }

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}

.services-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: var(--dark2);
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s;
  cursor: default;
}
.service-card:hover { background: var(--dark3); }
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.service-card:hover::after { transform: scaleX(1); }

.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.service-icon {
  width: 40px; height: 40px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.service-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.service-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── VALUES ─── */
.values-section { background: var(--dark2); }

.values-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}

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

.value-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--dark3);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
}
.value-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
}

.value-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: rgba(208,21,21,0.08);
  position: absolute;
  top: 12px; right: 16px;
  letter-spacing: -0.04em;
}

.value-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  margin-top: 8px;
}

.value-body {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.value-accent {
  width: 24px; height: 2px;
  background: var(--red);
  margin-bottom: 20px;
}

/* ─── VIDEO MODAL ─── */
.video-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.88);
  align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.video-modal-overlay.active { display: flex; }

.video-modal {
  position: relative;
  width: 90vw; max-width: 1000px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.video-modal iframe {
  width: 100%; height: 100%; border: none;
}

.video-modal-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none;
  color: #fff; font-size: 28px; line-height: 1;
  font-family: var(--font-display);
  opacity: 0.7; transition: opacity 0.2s;
}
.video-modal-close:hover { opacity: 1; }

.btn-play {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: none; border: none;
  transition: color 0.2s;
  padding: 16px 0;
}
.btn-play:hover { color: var(--red); }

.play-circle {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.btn-play:hover .play-circle {
  border-color: var(--red);
  background: rgba(208,21,21,0.15);
}

.play-triangle {
  width: 0; height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #fff;
  margin-left: 3px;
  transition: border-left-color 0.2s;
}
.btn-play:hover .play-triangle { border-left-color: var(--red); }

/* ─── MINING SECTION ─── */
.mining-section { background: var(--black); position: relative; overflow: hidden; }

.mining-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(208,21,21,0.06) 0%, transparent 60%);
}

.mining-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mining-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.mining-label::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--red);
}

.mining-h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.mining-h2 span { color: var(--red); }

.mining-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.mining-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
}
.mining-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}
.mining-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.mining-panel {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.mining-panel-header {
  padding: 14px 20px;
  background: var(--dark3);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green { background: #28C840; }

.panel-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-left: 8px;
}

.mining-spec-list {
  list-style: none;
  padding: 8px 0;
}
.mining-spec-list li {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.mining-spec-list li:last-child { border-bottom: none; }

.spec-key {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.spec-val {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-align: right;
}
.spec-val.red { color: var(--red); }
.spec-val.gold { color: var(--accent-gold); }

/* ─── CONTACT ─── */
.contact-section { background: var(--dark); }

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

.contact-info {
  display: flex; flex-direction: column; gap: 28px;
  margin-top: 40px;
}

.contact-item-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-item-val {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-social-links {
  display: flex; gap: 16px; margin-top: 4px;
}
.contact-social-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  transition: color 0.2s;
}
.contact-social-links a:hover { color: var(--text-primary); }

/* Contact Form */
.contact-form {
  display: flex; flex-direction: column; gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex; flex-direction: column; gap: 8px;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-textarea,
.wpcf7-text,
.wpcf7-email,
.wpcf7-textarea,
.wpcf7-select {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder,
.wpcf7-text::placeholder,
.wpcf7-email::placeholder,
.wpcf7-textarea::placeholder { color: var(--text-muted); }

.form-input:focus,
.form-textarea:focus,
.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-textarea:focus {
  border-color: var(--border-red);
}

.form-textarea,
.wpcf7-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit,
.wpcf7-submit {
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 40px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
}
.form-submit:hover,
.wpcf7-submit:hover { background: var(--red-bright); }

/* CF7 response messages */
.wpcf7-response-output {
  margin: 0 !important;
  padding: 12px 16px !important;
  border-radius: 2px !important;
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  letter-spacing: 0.05em !important;
}
.wpcf7-mail-sent-ok { background: rgba(40,200,64,0.12) !important; border-color: rgba(40,200,64,0.3) !important; color: #28C840 !important; }
.wpcf7-validation-errors, .wpcf7-mail-sent-ng { background: rgba(208,21,21,0.12) !important; border-color: var(--border-red) !important; color: var(--red) !important; }

/* ─── FOOTER ─── */
#site-footer {
  background: var(--black);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer-nav ul {
  display: flex; gap: 32px; list-style: none; margin: 0; padding: 0;
}
.footer-nav ul li a {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav ul li a:hover { color: var(--text-secondary); }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── WORDPRESS ADMIN BAR FIX ─── */
.admin-bar #site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar #site-header { top: 46px; }
}

/* ─── TICKER BAND ─── */
.ticker-band {
  background: var(--red);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 99;
}

.ticker-inner {
  display: inline-block;
  animation: ticker-scroll 32s linear infinite;
}

.ticker-item {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 32px;
}

.ticker-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 8px;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── PHOTO SECTIONS ─── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.photo-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.1);
  transition: filter 0.3s, transform 0.3s;
}

.photo-grid img:hover {
  filter: brightness(1) contrast(1.1);
  transform: scale(1.02);
}

.photo-grid-item {
  overflow: hidden;
  position: relative;
}

.photo-grid-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,30,0.6) 0%, transparent 50%);
  pointer-events: none;
}

/* Nav logo image sizing */
#site-header .nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  #site-header { padding: 0 24px; }

  .menu-toggle { display: flex; }

  #site-header .main-navigation {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(26,26,30,0.98);
    border-bottom: 1px solid var(--border);
    padding: 24px;
  }
  #site-header .main-navigation.open { display: block; }
  #site-header .main-navigation ul {
    flex-direction: column; gap: 0;
  }
  #site-header .main-navigation ul li a {
    display: block; padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  #site-header .main-navigation ul li:last-child a { border-bottom: none; }

  .hero-section {
    grid-template-columns: 1fr;
    padding: 120px 24px 80px;
  }
  .hero-stats {
    padding-left: 0;
    border-left: none;
    flex-direction: row;
    border-top: 1px solid var(--border-red);
    padding-top: 40px;
    margin-top: 40px;
    gap: 32px;
    flex-wrap: wrap;
  }

  .about-grid,
  .mining-inner,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .values-header { grid-template-columns: 1fr; gap: 24px; }
  .services-intro { grid-template-columns: 1fr; gap: 24px; }

  .site-section { padding: 72px 24px; }

  #site-footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 40px 24px;
  }
  .footer-nav ul { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

@media (max-width: 600px) {
  .hero-h1 { font-size: clamp(52px, 14vw, 72px); }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-direction: column; gap: 20px; }
}


/* ─── HERO STROBE SWEEP ─── */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.03) 40%,
    rgba(255,255,255,0.07) 50%,
    rgba(255,255,255,0.03) 60%,
    transparent 80%
  );
  z-index: 5;
  animation: hero-strobe 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-strobe {
  0%   { left: -100%; opacity: 0; }
  10%  { opacity: 1; }
  50%  { left: 150%; opacity: 1; }
  60%  { opacity: 0; }
  100% { left: 150%; opacity: 0; }
}