*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  background: #fafafa;
  color: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.cont {
  width: min(100% - 8rem, 1360px);
  margin: 0 auto;
}


.reveal {
  opacity: 0;
  transform: translateY(4rem);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* HEADER */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 2rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  width: 250px;
}
.main-nav{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.main-nav > ul > li{
  padding: 2rem 0;
}

.main-nav a {
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffffff;
}

.main-nav span {
  font-size: 1rem;
  letter-spacing: 0;
}

.nav-toggle {
  display: none;
  width: 4.4rem;
  height: 4.4rem;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 2rem;
  height: 1px;
  margin: 0.55rem auto;
  background: #ffffff;
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100%);
  left: -2rem;
  min-width: 24rem;
  padding: 1.8rem 0;
  margin: 0;
  list-style: none;
  background: #0b1714;
  border: 1px solid rgba(255,255,255,0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: all 0.25s ease;
  z-index: 50;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .dropdown {
  display: block;
}

.main-nav .dropdown li {
  width: 100%;
}

.main-nav .dropdown a {
  display: block;
  padding: 1.2rem 2rem;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  line-height: 1.4;
  color: rgba(255,255,255,0.68);
}

.main-nav .dropdown a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.04);
}

.search-form-wrap{
  display: flex;
}
.search-form-wrap form{
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.search-form-wrap input{
  height: 3.5rem;
  background: none;
  border: none;
  border-bottom: 2px solid #353535;
  font-size: 1.6rem;
  text-indent: 4px;
  color: #fff;
}
.search-form-wrap button{
  background: none;
  border: none;
  cursor: pointer;
}
.search-form-wrap button:hover{
  opacity: 0.7;
}
.search-form-wrap img{
  height: 2.2rem;
}

/* HERO */

.hero-section {
  height: 125rem;
  background: #07110f;
  padding: 20rem 0 9rem;
  background-image: url(../images/hero-main-bg.png);
  background-size:1560px auto;
  background-position: center -15rem;
  background-repeat: no-repeat;
}
.hero-content{
  max-width: 68rem;
}
.hero-inner {
  /* min-height: calc(100vh - 25.5rem); */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30rem;
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr 42rem;
  gap: 8rem;
  align-items: start;
}

.eyebrow {
  margin: 0 0 3.2rem;
  font-family: "Cinzel", serif;
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
}
h1, h2, h3, h4, h5, h6{
  font-family: "Cinzel", serif;
}
h1, h2, h3, h4, h5, h6, p{
  margin: 0;
}
h1 {
  margin: 0;
  font-size: 6rem;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.035em;
  text-transform: capitalize;
  color: #ffffff;
}
h2{
  font-size: 4.6rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.hero-stock {
  padding-top: 2.8rem;
  text-align: right;
}

.stock-symbol {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
}

.stock-symbol span {
  color: #c9a646;
}

.stock-line {
  width: 19.5rem;
  height: 0.75rem;
  margin: 1.2rem 0 8.5rem auto;
  background: linear-gradient(
    90deg,
    #999 5%,
    #fff 10%,
    #ccc 30%,
    #ddd 50%,
    #ccc 70%,
    #fff 80%,
    #999 95%
  );
}

.hero-description {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-align: right;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13rem;
  align-items: center;
}

.feature-circle {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  text-align: center;
  padding: 4rem;
  background: rgb(7 17 15 / 50%);
}

.feature-circle h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  text-transform: capitalize;
  color: #ffffff;
}

.feature-circle p {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.35;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
}







.projects-section {
  background:url(../images/topo-lines-transparent.png);
  background-size: cover;
  background-position: center;
  padding: 12rem 0 13rem;
  color: #07110f;
}

.projects-inner {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
}

.section-eyebrow {
  margin: 0 0 2.8rem;
  font-family: "Raleway", sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(7,17,15,0.58);
}

.section-head h2 {
  margin: 0;
  text-transform: capitalize;
  color: #07110f;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  margin-top: 5.4rem;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #07110f;
}

.text-link span {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.35rem;
}

.text-link img {
  height: 1.8rem;
  margin-left: 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.project-card {
  position: relative;
  min-height: 79rem;
  overflow: hidden;
  background:
    linear-gradient(
      to bottom,
      rgba(8,78,66,1) 0%,
      rgba(8,78,66,1) 25%,
      rgba(8,78,66,0.85) 48%,
      rgba(8,78,66,0.1) 72%
    ),
    url("../images/project-bg-princesa.png");
  background-size: cover;
  background-position: center bottom;
}
.project-card.lasminas{
  background:
    linear-gradient(
      to bottom,
      rgba(8,78,66,1) 0%,
      rgba(8,78,66,1) 25%,
      rgba(8,78,66,0.85) 48%,
      rgba(8,78,66,0.1) 72%
    ),
    url("../images/project-bg-lasminas.png");
  background-size: cover;
  background-position: center bottom;
}

.project-card-content {
  max-width: 100%;
  padding: 8rem 6.5rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.project-type {
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.project-card h3 {
  font-family: "Cinzel", serif;
  font-size: 3.8rem;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.project-card-content p:last-child {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.55;
  color: #ffffff;
}

.project-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 22rem;
    height: 8.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 0 5.2rem;
    background: #07110f;
    font-family: "Cinzel", serif;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    transition:
    background 0.3s ease;
}

.project-btn span img {
  height: 2.3rem;
}
.project-btn:hover {
  background: #0a6a58;
}


.news-section {
  position: relative;
  overflow: hidden;
  background: url(../images/dark-aerial-pattern.png);
  background-size: cover;
  background-position: center;
  padding: 12rem 0 13rem;
}



.news-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

.news-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

.section-eyebrow.light {
  color: rgba(255,255,255,0.58);
}

.news-heading h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7.2rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  min-height: 46rem;
  padding: 5rem 4.8rem;
  border: 1px solid rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.01);
  backdrop-filter: blur(0.2rem);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.news-card:hover {
  transform: translateY(-0.8rem);
  border-color: rgba(255,255,255,0.5);
}

.news-card:hover {
  background: #075245;
  border-color: #075245;
}

.news-date {
  margin: 0 0 5rem;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}

.news-card h3 {
  margin: 0 0 4rem;
  font-size: 2.2rem;
  line-height: 1.25;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
}

.news-excerpt {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.news-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 5rem;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
}

.news-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.6rem;
  width: 36%;
  height: 1px;
  background: rgba(255,255,255,0.4);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.news-link:hover::after {
  transform: scaleX(0.6);
}

.news-bottom {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.news-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.text-link.light {
  color: #ffffff;
  white-space: nowrap;
  margin: 0;
}



.presentation-section {
  background: url("../images/topo-lines-transparent.png");
  background-size: cover;
  background-position: center;
}
.presentation-bg-img{
    background: url("../images/tent-graphic-people-at-work.png");
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  padding: 12rem 0;
}
.presentation-inner {
  display: flex;
  align-items: center;

}

.presentation-content {
  max-width: 68rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.presentation-section h2 {
  margin: 0 0 4rem;
  font-family: "Cinzel", serif;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #07110f;
}

.presentation-text {
  max-width: 60rem;
  margin: 0 0 5rem;
  font-size: 1.9rem;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(7,17,15,0.82);
}

.download-btn {
  min-width: 43rem;
  height: 8rem;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  padding: 0 3rem;
  background: #075245;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.download-btn:hover {
  background: #0a6a58;
  transform: translateY(-0.4rem);
}

.download-btn img {
  width: 3.4rem;
  flex-shrink: 0;
}

.download-btn span {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
}

.presentation-link {
  margin-top: 11rem;
}







.site-footer {
  color: #ffffff;
  border-top: 1px solid #262626;
}

.footer-main {
  background: url("../images/footer-bg.png");
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.1fr 1fr;
  gap: 7rem;
  align-items: flex-start;
}

.footer-logo {
  display: inline-block;
  width: 28rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  max-width: 34rem;
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.45;
  font-weight: 500;
  color: #ffffff;
}

.footer-col h3 {
  margin: 0 0 4rem;
  font-family: "Cinzel", serif;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-col li + li {
  margin-top: 1.7rem;
}

.footer-col a {
  font-size: 1.7rem;
  line-height: 1.25;
  font-weight: 500;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: #c9a646;
}

.footer-col:last-child a {
  text-transform: none;
}

.footer-bottom {
  background: #075245;
  padding: 2.4rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
}

.footer-bottom a:hover {
  text-decoration: underline;
}


.metallic-button {
  font-size: 14px;
  padding: 6px 16px;
  font-weight: 400;
  border: none;
  outline: none;
  color: #000;
  background: linear-gradient(
    45deg,
    #999 5%,
    #fff 10%,
    #ccc 30%,
    #ddd 50%,
    #ccc 70%,
    #fff 80%,
    #999 95%
  );
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.metallic-button:hover {
  transform: translateY(-2px);
}










.contact-hero {
    background: #07110f;
    padding: 20rem 0 13rem;
    background-image: url(../images/hero-main-bg.png);
    background-size: 1560px auto;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 48rem;
  gap: 10rem;
  align-items: start;
}

.contact-left h1 {
  margin: 0 0 9rem;
  font-family: "Cinzel", serif;
  font-size: 6rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
}

.contact-info-block h2,
.contact-form-wrap h2 {
  margin: 0 0 5rem;
  font-family: "Cinzel", serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  text-transform: capitalize;
  color: #ffffff;
}

.contact-info-block ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-info-block li {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  font-size: 1.7rem;
  line-height: 1.35;
  font-weight: 500;
  color: #ffffff;
}

.contact-info-block li + li {
  margin-top: 2.4rem;
}

.contact-info-block img {
  width: 2.8rem;
  flex-shrink: 0;
}

.contact-info-block a {
  color: #ffffff;
  transition: color 0.25s ease;
}

.contact-info-block a:hover {
  color: #c9a646;
}


/* FORM */

.contact-form-wrap h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
}

.contact-form {
  width: 100%;
  background: #333333;
}

.form-select-row {
  height: 7.2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2.2rem;
  padding: 0 3rem;
  background: #075245;
}

.form-select-row label {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.55);
}

.form-select-row select {
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-family: "Raleway", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #ffffff;
  appearance: none;
  cursor: pointer;
}

.form-select-row {
  position: relative;
}

.form-select-row::after {
  content: "▾";
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  pointer-events: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  height: 7rem;
  display: block;
  border: 0;
  border-top: 1px solid rgba(0,0,0,0.65);
  outline: none;
  background: #333333;
  padding: 0 3rem;
  font-family: "Raleway", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #ffffff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.92);
  opacity: 1;
}

.form-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.form-two-col input + input {
  border-left: 1px solid rgba(0,0,0,0.65);
}

.contact-form textarea {
  height: 13rem;
  padding-top: 2.4rem;
  resize: none;
}

.contact-form button {
  width: 100%;
  height: 8rem;
  border: 0;
  background: #075245;
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #0a6a58;
}











.project-hero {
  position: relative;
    background: #07110f;
    background-image: url(../images/hero-princesa.png);
    background-size: 40% auto;
    background-repeat: no-repeat;
    background-position: center;
  padding: 20rem 0 20rem;
  color: #ffffff;
}
.project-hero.lasminas-hero{
    background: #07110f;
    background-image: url(../images/hero-lasmins.png);
    background-size: 40% auto;
    background-repeat: no-repeat;
    background-position: center;
}
.project-hero.corporate{
    background: #07110f;
    background-image: url(../images/dark-bg-1.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.project-hero-inner {
  display: grid;
  grid-template-columns: 1fr 32rem;
  gap: 8rem;
  align-items: start;
}

.project-label {
  margin: 0 0 3.5rem;
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
}

.project-hero h1 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 6rem;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: capitalize;
}

.project-downloads {
  padding-top: 1rem;
  text-align: right;
}

.project-downloads h2 {
  margin: 0 0 5rem;
  font-family: "Cinzel", serif;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 400;
  text-transform: capitalize;
}

.project-downloads ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.project-downloads li + li {
  margin-top: 1.4rem;
}

.project-downloads a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 500;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.project-downloads img {
  width: 1.8rem;
}


/* TAB NAV */

.project-tabs-nav {
  top: 9.5rem;
  z-index: 15;
  background: #07110f;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.project-tabs-inner {
  display: flex;
  align-items: center;
  gap: 6rem;
}
.project-tabs-inner.lm{
  gap: 0;
}
.project-tabs-inner.lm .project-tab-btn{
  margin: 0 auto;
}
.project-tab-btn {
  position: relative;
  height: 6.5rem;
  border: 0;
  background: transparent;
  font-family: "Raleway", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease;
}

.project-tab-btn:hover,
.project-tab-btn.active {
  color: #ffffff;
}

.project-tab-btn.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 1.4rem solid transparent;
  border-right: 1.4rem solid transparent;
  border-bottom: 1.4rem solid #ffffff;
}


/* TAB CONTENT */

.project-tabs-section {
  background: url("../images/topo-lines-transparent.png");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  color: #07110f;
}


.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}


/* OVERVIEW */

.overview-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  padding-top: 10rem;
  align-items: start;
}

.overview-map-block h2,
.overview-text-card h2,
.historical-section h2,
.placeholder-tab h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 4.6rem;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #07110f;
}

.region-map {
  width: 100%;
  margin-top: 4rem;
}

.map-sources {
  margin-top: 2rem;
}

.map-sources p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  line-height: 1.4;
  color: rgba(7,17,15,0.82);
}

.map-sources a {
  color: #3476b8;
}

.overview-text-card {
  background: rgba(7,17,15,0.04);
  padding: 9rem 7rem 13rem;
}

.overview-text-card h2 {
  margin-bottom: 4rem;
}

.overview-text-card > p {
  margin: 0 0 5rem;
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(7,17,15,0.82);
}


.icon-note {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 3rem;
  align-items: center;
}

.icon-note-icon {
  width: 9rem;
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-note-icon::before {
  content: "";
  position: absolute;
  inset: 0.5rem;
  border: 5px solid #07110f;
  pointer-events: none;
}

.icon-note-icon img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
}

.icon-note p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(7,17,15,0.82);
}


/* HISTORICAL */

.historical-section {
  padding-top: 9rem;
  padding-bottom: 12rem;
}

.historical-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9rem;
  margin-top: 7rem;
  align-items: start;
}

.historical-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.resource-item {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 2rem;
  align-items: start;
}

.resource-icon {
  width: 9rem;
  height: 9rem;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-icon img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.resource-item p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.7;
  color: rgba(7,17,15,0.82);
}

.historical-image img {
  width: 100%;
}

.historical-image p {
  max-width: 55rem;
  margin: 2rem 0 0;
  font-size: 1.2rem;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(7,17,15,0.82);
}

.historical-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem 9rem;
  margin-top: 9rem;
}

.historical-note {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 2.5rem;
  align-items: start;
}

.historical-note span {
  display: block;
  transform: rotate(0deg);
  font-size: 5rem;
  line-height: 0.6;
  color: #07110f;
}

.historical-note p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(7,17,15,0.82);
}

.placeholder-tab {
  margin-bottom: 8rem;
}

.placeholder-tab p {
  margin: 3rem 0 0;
  font-size: 1.8rem;
  color: rgba(7,17,15,0.72);
}












.geological-section {
  padding: 10rem 0 4rem;
}

.geological-inner {
  display: flex;
  flex-direction: column;
}

.geological-heading,
.drill-results-heading {
  margin-bottom: 6rem;
}

.geological-heading h2,
.drill-results-heading h2,
.silver-table-section h2 {
  margin: 0 0 1.5rem;
  font-family: "Cinzel", serif;
  font-size: 4.6rem;
  line-height: 1.15;
  font-weight: 700;
  color: #07110f;
}

.geological-heading p,
.drill-results-heading p {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(7,17,15,1);
}

.geological-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
  margin-bottom: 7rem;
}

.geological-feature {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.geological-feature-icon {
  width: 7rem;
  height: 7rem;
  background: #07110f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geological-feature-icon img {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: contain;
}

.geological-feature p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgba(7,17,15,0.72);
}

.geological-feature strong {
  color: #07110f;
}

.geological-image img,
.drill-results-image img {
  width: 100%;
}

.drill-results-section {
  padding: 6rem 0;
}

.drill-results-text {
  margin: 0 0 5rem;
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(7,17,15,0.68);
}

.silver-table-section {
  padding: 6rem 0 12rem;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 6rem;
}

.silver-table {
  width: 100%;
  min-width: 90rem;
  border-collapse: collapse;
}

.silver-table th {
  background: #efefef;
  padding: 2.5rem 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #07110f;
  border: 1px solid #dddddd;
}

.silver-table td {
  padding: 2.8rem 2rem;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
  color: rgba(7,17,15,0.72);
  border: 1px solid #dddddd;
}

.silver-table tbody tr:nth-child(even) td {
  background: #f5f5f5;
}
.silver-table tr:hover td{
  background: #07110f!important;
  color: #ffffff!important;
}





.target-section {
  padding: 10rem 0 12rem;
}

.target-inner {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}

.target-block {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.target-heading h2,
.infrastructure-block h2 {
  margin: 0 0 1.5rem;
  font-family: "Cinzel", serif;
  font-size: 4.6rem;
  line-height: 1.15;
  font-weight: 700;
  color: #07110f;
}

.target-heading p {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(7,17,15,0.45);
}

.target-text {
  max-width: 118rem;
  margin: -1rem 0 0;
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgba(7,17,15,0.68);
}

.target-block img {
  width: 100%;
}

.infrastructure-block {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: 1fr 46rem;
  gap: 10rem;
  align-items: start;
}

.arrow-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.arrow-list li {
  position: relative;
  padding-left: 3.5rem;
  font-size: 1.5rem;
  line-height: 1.5;
  color: rgba(7,17,15,0.72);
}

.arrow-list li + li {
  margin-top: 2rem;
}

.arrow-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 4rem;
  line-height: 0.45;
  color: #07110f;
}

.infrastructure-image img {
  width: 100%;
}

.infrastructure-image p {
  margin: 2rem 0 0;
  font-size: 1.2rem;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(7,17,15,0.68);
}



.las-intro-section {
  padding: 10rem 0;
}

.las-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: stretch;
}

.las-intro-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.las-intro-column h2 {
  margin: 0 0 4rem;
  font-family: "Cinzel", serif;
  font-size: 4.6rem;
  line-height: 1.15;
  font-weight: 700;
  color: #07110f;
}

.las-intro-column p {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.65;
  font-weight: 500;
  color: rgba(7,17,15,0.82);
}

.las-intro-column p + p {
  margin-top: 3rem;
}

.las-intro-grey {
  background: #f3f3f3;
  padding: 10rem 7rem;
}

.las-large-feature {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 8rem 0 6rem;
}

.las-large-icon {
  width: 9.5rem;
  height: 9.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.las-large-icon::before {
  content: "";
  position: absolute;
  inset: 0.6rem;
  border: 5px solid #07110f;
}

.las-large-icon img {
  width: 4.8rem;
  height: 4.8rem;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.las-large-feature span {
  display: block;
  margin-bottom: 1rem;
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #07110f;
}

.las-large-feature h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 5rem;
  line-height: 1;
  font-weight: 700;
  color: #07110f;
}



.las-drill-section {
  padding: 2rem 0 12rem;
}

.las-drill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9rem;
  align-items: start;
}

.las-small-title {
  margin: 0 0 2rem;
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  color: #07110f;
}

.las-drill-block h2 {
  margin: 0 0 7rem;
  font-family: "Cinzel", serif;
  font-size: 4.6rem;
  line-height: 1.15;
  font-weight: 700;
  color: #07110f;
}

.las-star-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.las-star-list > li {
  position: relative;
  padding-left: 2.8rem;
  font-size: 1.7rem;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(7,17,15,0.85);
}

.las-star-list > li + li {
  margin-top: 5rem;
}

.las-star-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.4rem;
  color: #07110f;
}

.las-star-list ul {
  padding: 0;
  margin: 1.8rem 0 0 2.8rem;
  list-style: none;
}

.las-star-list ul li {
  position: relative;
  padding-left: 2.8rem;
}

.las-star-list ul li + li {
  margin-top: 1.4rem;
}

.las-drill-image {
  margin-top: 6rem;
}

.las-drill-image img {
  width: 100%;
}

.las-drill-image p {
  margin: 1.8rem 0 0;
  font-size: 1.7rem;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(7,17,15,0.42);
}







.pea-section {
  padding: 10rem 0 12rem;
}

.pea-heading {
  margin-bottom: 7rem;
}

.pea-heading h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 4.6rem;
  line-height: 1;
  font-weight: 700;
  color: #07110f;
  text-transform: uppercase;
}

.pea-text {
  max-width: 136rem;
  margin-bottom: 5rem;
}

.pea-text p {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 500;
  color: rgba(7,17,15,0.86);
}
.pea-text h4{
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.8;
  font-weight: 600;
  color: rgba(7,17,15,1);
  margin-bottom: 2rem;
}

.pea-text strong {
  color: #07110f;
}

.pea-table-block {
  margin: 7rem 0;
}

.pea-table-block h3 {
  margin: 0 0 3rem;
  font-family: "Raleway", sans-serif;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;
  color: #07110f;
}

.pea-table-wrap {
  overflow-x: auto;
}

.pea-table {
  width: 100%;
  min-width: 110rem;
  border-collapse: collapse;
}

.pea-table thead th {
  background: #0c4f46;
  padding: 2.5rem 2rem;
  font-size: 1.7rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: left;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.08);
}

.pea-table tbody td {
  padding: 0.5rem;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(7,17,15,0.82);
  border: 1px solid #d8d8d8;
  background: #ffffff;
}
.pea-table tbody tr:hover td{
    background: #07110f !important;
    color: #ffffff !important;
}
.pea-table tbody tr:hover td strong{
    background: #07110f !important;
    color: #ffffff !important;
}

.pea-table tbody tr:nth-child(even) td {
  background: #f7f7f7;
}

.pea-table tbody td strong {
  color: #07110f;
  font-weight: 700;
}

.pea-notes {
  margin-top: 4rem;
}

.pea-notes p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(7,17,15,0.5);
}

.pea-notes p + p {
  margin-top: 4rem;
}

.pea-disclaimer {
  font-style: italic;
  font-weight: 700 !important;
  color: #07110f !important;
}


.pea-table-section td {
  background: #0c4f46 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}

.pea-table-subsection td {
  background: #efefef !important;
  color: #07110f !important;
  font-weight: 700 !important;
}

.pea-table-total td {
  font-weight: 700 !important;
  color: #07110f !important;
  background: #f1f1f1 !important;
}

.pea-table-highlight td {
  font-weight: 700 !important;
  color: #07110f !important;
  background: #eef5f3 !important;
}



.lm-location-section {
  padding: 10rem 0 12rem;
}

.lm-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
}

.lm-location-left h2 {
  margin: 0 0 6rem;
  font-family: "Cinzel", serif;
  font-size: 4.6rem;
  line-height: 1.08;
  font-weight: 700;
  text-transform: uppercase;
  color: #07110f;
}

.lm-location-text {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.lm-location-text p {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 500;
  color: rgba(7,17,15,0.82);
}

.lm-location-right {
  position: relative;
  padding: 8rem;
  overflow: hidden;
  background: #f3f3f3;
}


.lm-location-right > * {
  position: relative;
  z-index: 2;
}

.lm-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 8rem;
  gap: 4rem;
}

.lm-stat-box {
  position: relative;
  text-align: center;
  padding-top: 2rem;
  margin: 0 auto;
}

.lm-stat-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12rem;
  height: 12rem;
  transform: translate(-50%, -50%);
  opacity: 0.08;
}

.lm-stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lm-stat-box span {
  display: flex;
  margin-bottom: 1.5rem;
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  color: #07110f;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
}

.lm-stat-box strong {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 700;
  color: #07110f;
}




.lm-skarn-section {
  padding-bottom: 10rem;
}

.lm-skarn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10rem;
  align-items: start;
  margin-top: 5rem;
}

.lm-skarn-block h2 {
  margin: 0 0 6rem;
  font-family: "Cinzel", serif;
  font-size: 3.4rem;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
  color: #07110f;
}

.lm-skarn-block p {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.9;
  font-weight: 500;
  color: rgba(7,17,15,0.82);
}

.lm-skarn-block p + p {
  margin-top: 5rem;
}




.lm-download-grid-section {
  padding: 10rem 0 12rem;
}

.lm-download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem 4rem;
}

.lm-download-item h3 {
  margin: 0 0 1.5rem;
  font-family: "Raleway", sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 500;
  color: rgba(7,17,15,0.75);
}

.lm-download-image {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(7,17,15,0.16);
  max-height: 173px;
  background: #07110f;
}

.lm-download-image img {
  width: 100%;
  transition: transform 0.35s ease;
}

.lm-download-image:hover img {
  transform: scale(1.04);
}


.lm-download-btn {
  height: 6.5rem;
  margin-top: 2rem;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(7,17,15,0.72);
  transition: background 0.3s ease, color 0.3s ease;
}

.lm-download-btn img {
  width: 2.8rem;
}

.lm-download-btn:hover {
  background: #075245;
  color: #ffffff;
}


.lm-team-section {
  padding: 12rem 0;
}

.lm-team-wrap {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.lm-team-item {
  display: grid;
  grid-template-columns: 46rem 1fr;
  gap: 7rem;
  align-items: start;
}

.lm-team-image {
  overflow: hidden;
  background: none;
}

.lm-team-image img {
  width: 80%;
  display: block;
  margin: 0 auto;
}

.lm-team-content h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 4.6rem;
  line-height: 0.95;
  font-weight: 700;
  text-transform: uppercase;
  color: #07110f;
}

.lm-team-position {
  display: block;
  margin-top: 3rem;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35rem;
  color: #07110f;
}

.lm-team-text {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.lm-team-text p {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 400;
  color: rgba(7,17,15,0.88);
}

.project-tabs-section.corp{
  padding: 10rem 0;
}
.title-manual-move{
  padding-bottom: 6rem;
}

body.news-page .project-tabs-section.corp.news{
  background: #07110f;
}

body.news-page .placeholder-tab h2, body.news-page .pdf-card h3, body.news-page .pdf-date,  body.news-page .pdf-card p, body.news-page .year-select-wrapper .iznad{
 color: #fff;
}
body.news-page .pdf-card{
  border-bottom: 1px solid #2f2f2f;
}
body.news-page .year-select-wrapper #yearFilter{
  background: #084e42;
}




.charter-section {
  position: relative;
  overflow: hidden;
}

.charter-section > .cont {
  position: relative;
  z-index: 2;
}

.charter-heading {
  margin-bottom: 8rem;
}

.charter-heading h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  color: #07110f;
}

.charter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9rem 10rem;
}

.charter-card h3 {
  margin: 0 0 4rem;
  font-family: "Cinzel", serif;
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  color: #07110f;
}

.charter-content p {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 500;
  color: rgba(7,17,15,0.82);
}

.charter-more {
  display: none;
  margin-top: 3rem;
}
.charter-content {
  max-height: 16rem;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.charter-card.is-open .charter-content {
  max-height: 120rem;
}
.charter-content li{
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.charter-card {
  position: relative;
}

.charter-card.is-open .charter-more {
  display: block;
}

.charter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 3.5rem;
  margin-left: auto;
  border: 0;
  background: transparent;
  font-family: "Raleway", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #07110f;
  cursor: pointer;
}

.charter-toggle span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.charter-card.is-open .charter-toggle span {
  transform: rotate(180deg);
}


.pdf-links-section {
  padding: 10rem 0 12rem;
}

.pdf-links-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
}

.pdf-link-item {
  min-height: 10rem;
  padding: 2rem 4rem;
  background: #fff;
  color: #07110f;
  display: flex;
  align-items: center;
  gap: 4rem;
  transition:
    background 0.35s ease,
    transform 0.35s ease;
}

.pdf-link-item:hover {
  background: #d6d6d6;
  transform: translateY(-0.4rem);
}

.pdf-link-item img {
  width: 4.2rem;
  flex-shrink: 0;
}

.pdf-link-item span {
  font-family: "Raleway", sans-serif;
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.28rem;
  text-transform: uppercase;
  transition: color 0.35s ease;
}

.pdf-link-item:hover span {
  color: #07110f;
}





.capital-structure-section {
  position: relative;
  overflow: hidden;
}

.capital-structure-section > * {
  position: relative;
  z-index: 2;
}

.capital-structure-grid {
  display: grid;
  grid-template-columns: 34rem 1fr;
  gap: 10rem;
}

.capital-left h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  color: #07110f;
}

.capital-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.capital-item {
  padding-bottom: 1rem;
  border-bottom: 0.2rem solid #07110f;
}

.capital-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4rem;
}

.capital-top span {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 500;
  color: #07110f;
}

.capital-top strong {
  font-family: "Raleway", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 700;
  color: #07110f;
}

.capital-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.capital-row {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

.capital-row p,
.capital-row span {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.5;
  color: rgba(7,17,15,0.88);
}

.capital-row span {
  text-transform: uppercase;
  letter-spacing: 0.18rem;
}

.capital-item small {
  display: block;
  margin-top: 2rem;
  font-size: 1.5rem;
  line-height: 1.4;
  color: rgba(7,17,15,0.55);
  text-align: right;
}

.capital-bottom {
  padding-top: 6rem;
}

.capital-bottom-title {
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 0.2rem solid #07110f;
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 500;
  color: #07110f;
}

.capital-bottom-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.capital-bottom-row {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

.capital-bottom-row span,
.capital-bottom-row strong {
  font-size: 2rem;
  line-height: 1.5;
}

.capital-bottom-row span {
  color: rgba(7,17,15,0.78);
}

.capital-bottom-row strong {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16rem;
  color: #07110f;
}



.financials-layout{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap:80px;
}



.financials-right{
  position:relative;
}

.financials-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:40px;
  margin-bottom:60px;
}

.financials-title{
  font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    width: 100%;
    text-transform: uppercase;
}

.financials-select-wrap{
  min-width:170px;
}

.financials-select-wrap span{
  display:block;
  margin-bottom:15px;
  font-size:1.6rem;
  text-transform:uppercase;
  letter-spacing:0.2rem;
}

.financials-select{
  width:100%;
  height:5rem;
  border:none;
  background: #07110f;
  color: #fff;
  padding:0 2rem;
  font-size:1.8rem;
  font-family:'Raleway', sans-serif;
  cursor:pointer;
}

.financials-year{
  display:none;
}

.financials-year.active{
  display:block;
}

.financial-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
  padding:1rem 0;
}
.financial-item-left{
  width: 100%;
}
.financial-item-left a{
  font-size:1.8rem;
  color:#111111;
  text-decoration:none;
  transition:0.3s;
  display: flex;
}
.financial-item-left a img{
  margin-left: auto;
  height: 3rem;
}

.financial-item-left a:hover{
  opacity:0.7;
}

.financial-pdf{
  width:5rem;
  flex-shrink:0;
}

.financial-pdf img{
  width:100%;
  display:block;
}

.financial-divider{
  width:100%;
  height:1px;
  background:#111111;
  margin: 2rem 0;
}




.pdf-library{
    margin:0 auto;
}

.pdf-library-top{
    margin-bottom:30px;
}

.pdf-library-top h1{
    font-size:44px;
    margin-bottom:10px;
}

.pdf-library-top p{
    font-size:18px;
    color:#555;
}

.pdf-controls{
    display:grid;
    grid-template-columns:1fr 220px;
    gap:15px;
    margin-bottom:30px;
}

#pdfSearch,
#yearFilter{
    width:100%;
    padding:18px 20px;
    border:none;
    font-size:16px;
    outline:none;
}
.year-select-wrapper #yearFilter{
    max-height: 5.6rem;
    background: #07110f;
    color: #fff;
}
.year-select-wrapper .iznad{
    display: block;
    font-size: 1.4rem;
    padding-bottom: 2rem;
}

#pdfResults{
    display:grid;
}

.pdf-card{
    padding:5rem;
    border-bottom: 1px solid #c8c8c8;
}

.pdf-date{
    color:#fff;
    display:inline-block;
    font-size:14px;
    margin-bottom:15px;
}

.pdf-card h3{
    color:#fff;
    font-size: 2.8rem;
    line-height: 1.25;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Raleway", sans-serif;
}

.pdf-card p{
    color:#fff;
    line-height:1.6;
      margin: 3rem 0 0;
  font-size: 1.8rem;
    margin-bottom:25px;
}

.pdf-card a{
    display:inline-flex;
    padding:2rem 3rem;
    background:#075245;
    font-size: 1.8rem;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
}

.no-results{
    text-align:center;
    padding:40px;
    background:#fff;
    border-radius:16px;
}

.hero-section.pdf-library{
  height: auto!important;
}
.hero-section.pdf-library .hero-inner{
  gap: 2rem;
}
.hero-section.documents{
  background-image: none;
  background-position: center -60rem;
}


.project-gallery-section {
  padding: 10rem 0 12rem;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4,11,10,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 6rem;
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.gallery-close,
.gallery-arrow {
  position: absolute;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.gallery-close {
  top: 3rem;
  right: 4rem;
  font-size: 5rem;
}

.gallery-arrow {
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
}

.gallery-prev {
  left: 4rem;
}

.gallery-next {
  right: 4rem;
}


/* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ /* RESPONSIVE */ 


@media (max-width: 1200px) {
  .main-nav ul {
    gap: 2.8rem;
  }

  .hero-features {
    gap: 5rem;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    min-height: auto;
  }
  
  .presentation-section h2 {
    font-size: 4.8rem;
  }
  
  
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .footer-col:last-child {
    grid-column: 2 / 4;
  }
  
  
  .contact-inner {
    grid-template-columns: 1fr 44rem;
    gap: 6rem;
  }

  .contact-info-grid {
    gap: 5rem;
  }  
  
  
  .project-tabs-nav {
    top: 8.5rem;
  }

  .project-tabs-inner {
    gap: 4rem;
  }

  .overview-intro-grid,
  .historical-top {
    gap: 5rem;
  }

  .overview-text-card {
    padding: 7rem 5rem;
  }
  
  
    .geological-features {
    gap: 4rem;
  }
  
  
  
  
  .infrastructure-grid {
    gap: 6rem;
  }
  
  
  
    .las-intro-grid {
    gap: 5rem;
  }

  .las-intro-grey {
    padding: 8rem 5rem;
  }

  .las-large-feature h3 {
    font-size: 4rem;
  }
  
  
  .las-drill-grid {
    gap: 6rem;
  }  
  
  
    .pea-heading h2 {
    font-size: 4.6rem;
  }
  
  
  
    .lm-location-grid {
    gap: 6rem;
  }



  .lm-location-right {
    padding: 6rem;
  }

  
  
    .lm-skarn-grid {
    gap: 6rem;
  }

    .lm-download-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  
  
    .lm-team-item {
    grid-template-columns: 38rem 1fr;
    gap: 5rem;
  }

  .charter-grid {
    gap: 7rem 6rem;
  }
  
  
    .financials-layout{
    grid-template-columns:1fr;
    gap:60px;
  }

    .project-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}






@media (max-width: 980px) {
  .cont {
    width: min(100% - 4rem, 1360px);
  }

  .site-header {
    padding: 2rem 0;
  }
  header.menu-open{
    background: #07110f;
    width: 100%;
    height: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
  }

  .site-logo {
    width: 190px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 9.5rem;
    right: 2rem;
    width: calc(100% - 4rem);
    max-width: 420px;
    background: #0b1714;
    border: 1px solid rgba(255,255,255,0.16);
    padding: 3rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: all 0.25s ease;
  }
    .main-nav {
    overflow-y: auto;
    max-height: calc(100vh - 12rem);
    -webkit-overflow-scrolling: touch;
  }

  .main-nav::-webkit-scrollbar {
    width: 0.6rem;
  }

  .main-nav::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
  }
  .has-dropdown {
    width: 100%;
  }

  .dropdown {
    position: static;
    display: none;
    min-width: 100%;
    padding: 1.2rem 0 0 1.5rem;
    margin-top: 1rem;
    background: transparent;
    border: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-dropdown:hover .dropdown {
    display: none;
  }

  .has-dropdown.is-open .dropdown {
    display: block;
  }
.main-nav .dropdown {
    display: none;
  }

  .has-dropdown.is-open .dropdown {
    display: block;
    margin-top: 2rem;
  }
  
  .main-nav .dropdown a {
    padding: 0.9rem 0;
    font-size: 1.1rem;
  }
  .main-nav > ul > li {
    padding: 1rem 0;
}

  .hero-section {
    padding: 13rem 0 6rem;
    height: auto;
  }

  .hero-inner {
    gap: 7rem;
  }

  .hero-top {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .hero-stock {
    padding-top: 0;
    text-align: left;
  }

  .stock-line {
    margin: 1.2rem 0 3rem;
  }

  .hero-description br {
    display: none;
  }
  .hero-description{
    text-align: left;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 430px;
    margin: 0 auto;
  }
  
  
  
  
    .projects-section {
    padding: 8rem 0;
  }

  .section-head {
    flex-direction: column;
    gap: 3rem;
  }

  .text-link {
    margin-top: 0;
    letter-spacing: 0;
    gap: 0.4rem;
    font-size: 1.2rem;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    font-size: 3.8rem;
  }
  
    .news-section {
    padding: 8rem 0 6rem;
  }

  .news-inner {
    gap: 5rem;
  }

  .news-heading h2 {
    font-size: 4rem;
  }

  .news-card {
    padding: 4rem 3rem;
  }

  .news-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }

  .news-line {
    width: 100%;
    flex: unset;
    display: none;
  }
  
  .presentation-section {
    padding: 8rem 0;
  }

  .presentation-section h2 {
    font-size: 4rem;
  }

  .presentation-link {
    margin-top: 7rem;
  }
  .presentation-bg-img{
    background: none;
    padding: 0;
  }
  
  .footer-main {
    padding: 6rem 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }

  .footer-col:last-child {
    grid-column: auto;
  }
  
  
  .contact-hero {
    padding: 14rem 0 8rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-left h1 {
    margin-bottom: 6rem;
  }

  .contact-form-wrap {
    max-width: 56rem;
  }  
  
  
  .project-hero {
    padding: 14rem 0 6rem;
  }

  .project-hero-inner {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .project-downloads {
    text-align: left;
  }

  .project-downloads a {
    justify-content: flex-start;
  }

  .project-tabs-nav {
    top: 7.8rem;
  }

  .project-tabs-inner {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
  }

  .overview-intro-grid,
  .historical-top,
  .historical-notes {
    grid-template-columns: 1fr;
  }

  .overview-text-card {
    padding: 6rem 4rem;
  }

  .historical-section {
    padding-bottom: 8rem;
  }

  
  
    .geological-section {
    padding-top: 8rem;
  }

  .geological-features {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .drill-results-section,
  .silver-table-section {
    padding-top: 4rem;
  }
  
  
  
    .target-section {
    padding: 8rem 0;
  }

  .target-inner {
    gap: 7rem;
  }

  .infrastructure-grid {
    grid-template-columns: 1fr;
  }

  .infrastructure-image {
    max-width: 54rem;
  }
  
  
  
    .las-intro-section {
    padding: 8rem 0;
  }

  .las-intro-grid {
    grid-template-columns: 1fr;
  }

  .las-intro-grey {
    padding: 6rem 4rem;
  }
  
  
  
    .las-drill-section {
    padding: 0 0 8rem;
  }

  .las-drill-grid {
    grid-template-columns: 1fr;
    gap: 7rem;
  }
  
  
  .pea-section {
    padding: 8rem 0;
  }

  .pea-heading {
    margin-bottom: 5rem;
  }

  .pea-heading h2 {
    font-size: 5rem;
    line-height: 1.1;
  }

  .pea-text p,
  .pea-notes p {
    font-size: 1.8rem;
  }  
  
  
    .lm-location-section {
    padding: 8rem 0;
  }

  .lm-location-grid {
    grid-template-columns: 1fr;
  }

  .lm-location-right {
    padding: 5rem;
  }
  
  
  .lm-skarn-grid {
    grid-template-columns: 1fr;
  }

  .lm-skarn-block h2 {
    margin-bottom: 4rem;
  }
  
    .lm-download-grid-section {
    padding: 8rem 0;
  }

  .lm-download-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  
  
    .lm-team-section {
    padding: 9rem 0;
  }

  .lm-team-wrap {
    gap: 9rem;
  }

  .lm-team-item {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .lm-team-image {
    max-width: 52rem;
  }
  .lm-team-image img {
    width: 60%;
    display: block;
    margin: 0 auto;
}

  .lm-team-content h2 {
    font-size: 2.6rem;
    text-align: center;
  }

  .lm-team-position {
    margin-top: 2rem;
    font-size: 1.4rem;
    letter-spacing: 0.25rem;
    text-align: center;
  }

  .lm-team-text {
    margin-top: 4rem;
    gap: 3rem;
  }

  .lm-team-text p {
    font-size: 1.8rem;
    line-height: 1.8;
    text-align: center;
  }
  
  
    .charter-section {
    padding: 8rem 0;
  }

  .charter-grid {
    grid-template-columns: 1fr;
  }

  .charter-heading h2 {
  }
  
  
  
    .pdf-links-section {
    padding: 8rem 0;
  }

  .pdf-link-item {
    gap: 3rem;
  }

  .pdf-link-item span {
    font-size: 2rem;
    letter-spacing: 0.18rem;
  }
  
  
    .financials-top{
    flex-direction:column;
  }

  .financials-select-wrap{
    width:100%;
    max-width:260px;
  }



  .financial-item-left a{
    font-size:2.2rem;
  }
  
    .project-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .title-manual-move{
    font-size: 2.6rem;
    text-align: center;
  }
  
}






@media (max-width: 560px) {
  
  #pdfResults{
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }
  .pdf-card p{
    font-size: 1.6rem;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .cont {
    width: min(100% - 3rem, 1360px);
  }

  .hero-section {
    min-height: auto;
    padding: 12rem 0 5rem;
  }

  .eyebrow {
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
  }

  h1 {
    font-size: 4.2rem;
  }

  .stock-symbol {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.6rem;
  }

  .feature-circle {
    padding: 3.5rem;
    width: 80%;
    margin: 0 auto;
  }

  .feature-circle p br {
    display: none;
  }
  
  
  .projects-section {
    padding: 6rem 0;
  }

  .projects-inner {
    gap: 5rem;
  }

  .section-head h2 {
    font-size: 3.2rem;
  }

  .text-link {
    align-items: flex-start;
    line-height: 1.5;
  }

  .project-card {
    min-height: 52rem;
  }

  .project-card-content {
    padding: 4rem 3rem;
  }

  .project-card h3 {
    font-size: 3rem;
  }

  .project-btn {
    min-width: 19rem;
    height: 6.4rem;
    font-size: 1.5rem;
    padding: 0 2.4rem;
  }  
  
  
  
    .news-heading h2 {
    font-size: 3.2rem;
  }

  .news-card h3 {
    font-size: 1.9rem;
  }

  .news-excerpt {
    font-size: 1.6rem;
  }
  
  
  
  .presentation-section {
    padding: 6rem 0;
  }

  .presentation-section h2 {
    font-size: 3.2rem;
  }

  .presentation-text {
    font-size: 1.7rem;
  }

  .download-btn {
    width: 100%;
    min-width: 100%;
    height: auto;
    padding: 2.4rem;
    gap: 2rem;
  }

  .download-btn span {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .presentation-link {
    margin-top: 5rem;
  }
  
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .footer-logo {
    width: 23rem;
  }

  .footer-col h3 {
    margin-bottom: 2.5rem;
  }

  .footer-bottom-inner {
    flex-direction: column-reverse;
    align-items: center;
  }
  
  
  
  .contact-hero {
    padding: 12rem 0 6rem;
  }

  .contact-left h1 {
    font-size: 4.4rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .form-two-col {
    grid-template-columns: 1fr;
  }

  .form-two-col input + input {
    border-left: 0;
  }

  .contact-form-wrap h2 {
    text-align: left;
  }  
  
  
  
  .project-hero {
    padding: 12rem 0 5rem;
  }

  .project-hero h1 {
    font-size: 4.2rem;
  }

  .project-tabs-nav {
    top: 7rem;
  }

  .project-tab-btn {
    height: auto;
    padding: 1rem 0;
    font-size: 1.1rem;
  }
  .project-tab-btn.active::after {
    transform: translateX(-50%);
    border-left: 1rem solid transparent;
    border-right: 1rem solid transparent;
    border-bottom: 1rem solid #ffffff;
    border-radius: 4px;
    bottom: -4x;
  }
  .overview-intro-grid {
    padding-top: 6rem;
  }

  .overview-map-block h2,
  .overview-text-card h2,
  .historical-section h2,
  .placeholder-tab h2 {
    font-size: 3.4rem;
  }

  .overview-text-card {
    padding: 4rem 2.5rem;
  }

  .icon-note,
  .resource-item,
  .historical-note {
    grid-template-columns: 1fr;
  }

  .icon-note img,
  .resource-item img {
  }

  .historical-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .historical-top,
  .historical-notes {
    margin-top: 5rem;
  }  
  
  
  
  
  .geological-heading h2,
  .drill-results-heading h2,
  .silver-table-section h2 {
    font-size: 3.4rem;
  }

  .geological-heading,
  .drill-results-heading {
    margin-bottom: 4rem;
  }

  .geological-features {
    margin-bottom: 5rem;
  }

  .table-wrap {
    margin-top: 4rem;
  }  
  
  
  
    .target-section {
    padding: 6rem 0;
  }

  .target-heading h2,
  .infrastructure-block h2 {
    font-size: 3.4rem;
  }

  .target-heading p {
    font-size: 1.5rem;
  }

  .target-block {
    gap: 3.5rem;
  }

  .infrastructure-block {
    gap: 4rem;
  }
  
  
  
  
    .las-intro-section {
    padding: 6rem 0;
  }

  .las-intro-column h2 {
    font-size: 3.4rem;
  }

  .las-intro-grey {
    padding: 4rem 2.5rem;
  }

  .las-large-feature {
    flex-direction: column;
    align-items: flex-start;
    margin: 5rem 0 4rem;
  }

  .las-large-feature h3 {
    font-size: 3.4rem;
  }
  
  
  
    .las-drill-section {
    padding-bottom: 6rem;
  }

  .las-drill-block h2 {
    font-size: 3.4rem;
    margin-bottom: 5rem;
  }

  .las-star-list > li {
    font-size: 1.6rem;
  }

  .las-star-list > li + li {
    margin-top: 3.5rem;
  }
  
  
  
  
  .pea-section {
    padding: 6rem 0;
  }

  .pea-heading h2 {
    font-size: 3.8rem;
  }

  .pea-text p,
  .pea-notes p {
    font-size: 1.6rem;
    line-height: 1.7;
  }
  .pea-table{
    min-width: 80rem;
  }
  .pea-table-block h3 {
    font-size: 2.2rem;
  }

  .pea-table thead th,
  .pea-table tbody td {
    font-size: 1.5rem;
  }  
  
  
  
    .lm-location-section {
    padding: 6rem 0;
  }

  .lm-location-left h2 {
    font-size: 3.8rem;
    margin-bottom: 4rem;
  }

  .lm-location-text p {
    font-size: 1.6rem;
    line-height: 1.8;
  }

  .lm-location-right {
    padding: 4rem 2.5rem;
  }

  .lm-stats-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
    margin-bottom: 6rem;
  }

  
  
    .lm-skarn-section {
  }

  .lm-skarn-block h2 {
    font-size: 2.8rem;
  }

  .lm-skarn-block p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  
  
    .lm-download-grid-section {
    padding: 6rem 0;
  }

  .lm-download-grid {
    grid-template-columns: 1fr;
  }
  
  
    .lm-team-section {
    padding: 7rem 0;
  }

  .lm-team-wrap {
    gap: 7rem;
  }

  .lm-team-content h2 {
  }

  .lm-team-position {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.18rem;
  }

  .lm-team-text p {
    font-size: 1.7rem;
    line-height: 1.75;
  }
  
  
   .charter-section {
    padding: 6rem 0;
  }

  .charter-heading {
    margin-bottom: 5rem;
  }

  .charter-heading h2 {
  }

  .charter-card h3 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }

  .charter-content p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  
    .pdf-links-section {
    padding: 6rem 0;
  }

  .pdf-link-item {
    min-height: auto;
    padding: 2.2rem;
    gap: 2rem;
    align-items: flex-start;
  }

  .pdf-link-item img {
    width: 3.6rem;
  }

  .pdf-link-item span {
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.12rem;
  }
  
  


  .financials-title{
    display: none;
  }

  .financial-item{
    gap:20px;
    padding:1.5rem 0;
  }

  .financial-item-left a{
    font-size: 1.4rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
  }
  .financials-top {
    margin-bottom: 20px;
}

  .financials-select{
    height:6rem;
    font-size:2rem;
  }
  
  .footer-col a{
    font-size: 1.4rem;
  }
  .project-downloads h2{
    margin-bottom: 2rem;
  }
  .project-hero, .project-hero.lasminas-hero{
    background-size: 560px;
    background-position: 130px -80px;
  }
  
  .project-tabs-section{
    padding: 4rem 0!important;
  }
      .project-tabs-inner {
        gap: 1rem;
        padding: 1rem 0;
    }
  .charter-section, .overview-intro-grid, .geological-section, .target-section, .las-intro-section, .pea-section, .lm-location-section{
    padding: 0;
  }
  .charter-heading h2, .lm-location-left h2,.pea-heading h2{
    font-size: 3.4rem;
  }
  .capital-structure-grid{
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  .capital-row p, .capital-row span {
      font-size: 1.2rem;
  }
  .capital-top strong {
      font-size: 1.8rem;
  }
  .capital-top span{
    font-size: 1.6rem;
  }
  .capital-bottom-row span, .capital-bottom-row strong {
    font-size: 1.2rem;
    line-height: 1.5;
  }
      .financials-select-wrap {
        width: 100%;
        max-width: 100%;
    }
  .pdf-card {
    padding: 2rem;
    border: none;
    overflow: hidden;
  }
  .pdf-controls{
        grid-template-columns:1fr;
    }
  .pdf-card h3 {
    font-size: 1.8rem;
  }
  .placeholder-tab p {
      margin: 1rem 0;
      font-size: 1.5rem;
  }
  .pdf-card a {
    padding: 1rem 2rem;
    font-size: 1.5rem;
    border-radius: 0;
  }
  .search-form-wrap form{
    margin: 0;
    width: 100%;
  }
  .search-form-wrap input{
    width: 100%;
  }
  .main-nav ul{
    margin-top: 2rem;
  }
  
    .project-gallery-section {
    padding: 6rem 0;
  }

  .project-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-lightbox {
    padding: 3rem;
  }

  .gallery-arrow {
    font-size: 5rem;
  }

  .gallery-prev {
    left: 1.5rem;
  }

  .gallery-next {
    right: 1.5rem;
  }
  
}