/* =========================================================
   Chicama Mining Compañía Minera - Corporate white style
   Colors: Orange / Gold / White / Black
   Less rounded, classic corporate layout
   ========================================================= */

:root{
  --orange: #ff7a18;
  --gold: #C59C20;

  --text: #111111;
  --muted: #5f6368;
  --bg: #ffffff;

  --line: #e6e6e6;
  --soft: #f6f7f9;

  --radius: 6px; /* square-ish */
}

html { scroll-behavior: smooth; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  padding-top: 76px;
}

a{ text-decoration: none; }
img{ max-width: 100%; height: auto; }

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: #111;
  color: #fff;
  padding: .6rem .8rem;
  border-radius: 4px;
  z-index: 9999;
}
.skip-link:focus{ left: 10px; }

/* Header / Navbar */
.site-header{
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.navbar .nav-link{
  color: #1f1f1f;
  font-weight: 650;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus{ color: #000; }
.navbar .nav-link.active{ color: var(--gold); }

.brand-logo{
  background: #fff;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.brand-text{
  font-weight: 800;
  letter-spacing: .15px;
}

/* Buttons */
.btn-brand{
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border: 0;
  color: #111;
  font-weight: 850;
  border-radius: var(--radius);
}
.btn-brand:hover{ filter: brightness(1.03); }

.btn-outline-brand{
  border: 1px solid #222;
  color: #111;
  background: #fff;
  border-radius: var(--radius);
  font-weight: 750;
}
.btn-outline-brand:hover{
  background: #111;
  color: #fff;
}

/* Sections */
.section{ padding: 64px 0; }
.section-alt{
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-title{
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: 10px;
}
.section-text{
  color: var(--muted);
  max-width: 72ch;
  margin: 0;
}

/* Hero */
.hero{
  background:
    linear-gradient(90deg, rgba(255,122,24,.10), transparent 55%),
    linear-gradient(180deg, rgba(197,156,32,.08), transparent 55%);
  border-bottom: 1px solid var(--line);
}
.eyebrow{
  color: var(--muted);
  letter-spacing: .14em;
  font-size: .78rem;
  text-transform: uppercase;
}

.kpi-bar{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.kpi{
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 750;
  color: #222;
  font-size: .92rem;
}

/* Cards */
.card-corp{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.card-corp .card-body{ padding: 18px; }

.media-frame{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.media-frame img{
  width: 100%;
  height: 360px;
  object-fit: cover;
}
@media (max-width: 991px){
  .media-frame img{ height: 260px; }
}

.hr-soft{
  border: 0;
  border-top: 1px solid var(--line);
  opacity: 1;
}

/* Lists */
.bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li{ margin-bottom: 6px; }

/* Team */
.team-img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

/* Labels */
.pill{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--orange));
}
.badge-outline{
  border: 1px solid var(--line);
  background: #fff;
  color: #222;
  font-weight: 750;
  padding: .45rem .6rem;
  border-radius: 999px;
}

/* Footer */
.site-footer{
  background: #0f0f10;
  color: #fff;
}
.site-footer a{ color: #fff; opacity: .92; }
.site-footer a:hover{ opacity: 1; }
.footer-muted{ color: rgba(255,255,255,.72); }

/* Reveal animation */
.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
