  :root {
    --navy: #072a63;
    --navy2: #0b377a;
    --navy3: #114892;
    --gold: #d7b55f;
    --gold2: #e8cc87;
    --gold-light: #f4e4be;
    --slate: #5b76a3;
    --mist: #e7edf7;
    --white: #ffffff;
    --text: #dbe6f8;
    --text2: #9fb4d4;
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: background 0.3s;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .logo-mark {
    width: 52px;
    height: 42px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .logo-mark img {
    width: 52px;
    height: 42px;
    object-fit: contain;
    display: block;
  }

  .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: 0.04em;
  }

  .logo-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.86);
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    color: var(--text2);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
  }

  .nav-links a:hover {
    color: var(--gold);
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .lang-switcher {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 34px;
    gap: 8px;
  }

  .lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text2);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    width: 34px;
    padding: 4px 0;
    text-align: center;
    flex: 0 0 34px;
    transition: color 0.2s;
  }

  .lang-btn.active {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
  }

  .lang-btn:hover {
    color: var(--gold);
  }

  .nav-cta {
    background: var(--gold);
    color: var(--navy);
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    min-height: 32px;
    box-sizing: border-box;
    white-space: nowrap;
    flex: 0 0 96px;
  }

  .nav-cta:hover {
    background: var(--gold2);
    transform: translateY(-1px);
  }

  /* ─── HERO ─── */
  #hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(13, 27, 42, 0.97) 0%, rgba(21, 34, 54, 0.82) 50%, rgba(13, 27, 42, 0.95) 100%),
      url("assets/pattern-grid.svg");
  }

  /* Geometric ore vein lines */
  .hero-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .hero-lines svg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1440px;
    max-width: none;
    height: 100%;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 60px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .hero-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 28px;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-title strong {
    font-weight: 700;
    display: block;
  }

  .hero-desc {
    font-size: 15px;
    font-weight: 300;
    color: var(--text2);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 44px;
  }

  .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--gold2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
  }

  .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 13px 22px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    box-sizing: border-box;
    white-space: nowrap;
    text-align: center;
  }

  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* Hero right - stats panel */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.12);
    padding: 32px 28px;
    animation: fadeUp 0.8s ease both;
  }

  .stat-card:nth-child(2) {
    animation-delay: 0.1s;
  }

  .stat-card:nth-child(3) {
    animation-delay: 0.2s;
  }

  .stat-card:nth-child(4) {
    animation-delay: 0.3s;
  }

  .stat-card:hover {
    background: rgba(201, 168, 76, 0.06);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
    transition: all 0.3s;
  }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 25px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .stat-unit {
    font-size: 16px;
    font-weight: 300;
  }

  .stat-label {
    font-size: 12px;
    font-weight: 400;
    color: var(--text2);
    letter-spacing: 0.035em;
    line-height: 1.45;
    text-transform: none;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text2);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    z-index: 2;
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gold));
  }

  @keyframes bounce {

    0%,
    100% {
      transform: translateX(-50%) translateY(0);
    }

    50% {
      transform: translateX(-50%) translateY(6px);
    }
  }

  /* ─── SECTION COMMONS ─── */
  section {
    padding: 100px 0;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
  }

  .section-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .section-title em {
    font-style: italic;
    color: var(--gold);
  }

  .section-desc {
    font-size: 15px;
    font-weight: 300;
    color: var(--text2);
    line-height: 1.75;
    max-width: 560px;
  }

  /* ─── ABOUT ─── */
  #about {
    background: var(--navy2);
  }

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

  .about-visual {
    position: relative;
  }

  .about-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--navy3);
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .about-img-wrap svg {
    width: 85%;
    height: 85%;
    opacity: 0.7;
  }

  .about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--navy);
    padding: 20px 24px;
    text-align: center;
  }

  .about-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    display: block;
  }

  .about-badge-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .about-content {
    padding-left: 20px;
  }

  .usp-list {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .usp-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text2);
    font-weight: 300;
  }

  .usp-list li::before {
    content: '◆';
    color: var(--gold);
    font-size: 8px;
    flex-shrink: 0;
    margin-top: 5px;
  }

  .about-directions {
    margin-top: 72px;
  }

  /* ─── SECTORS ─── */
  #sectors {
    background: var(--navy);
  }

  .sectors-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
  }

  .sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .sector-card {
    background: var(--navy2);
    border: 1px solid rgba(201, 168, 76, 0.08);
    padding: 40px 32px;
    transition: all 0.35s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }

  .sector-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s;
  }

  .sector-card:hover {
    background: var(--navy3);
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-4px);
  }

  .sector-card:hover::before {
    width: 100%;
  }

  .sector-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex: 0 0 52px;
    color: var(--gold);
  }

  .sector-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
  }

  .sector-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--text2);
    line-height: 1.65;
  }

  .sector-tag {
    margin-top: 20px;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }

  /* ─── PROJECTS ─── */
  #projects {
    background: var(--navy2);
  }

  .projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 56px;
  }

  .project-card {
    background: var(--navy);
    border: 1px solid rgba(201, 168, 76, 0.08);
    padding: 36px 36px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .project-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.03);
  }

  .project-type {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .project-type::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--gold);
  }

  .project-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .project-loc {
    font-size: 12px;
    color: var(--text2);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .project-loc svg {
    width: 12px;
    height: 12px;
    color: var(--gold);
  }

  .project-body {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text2);
    font-weight: 300;
    flex: 1;
  }

  .project-meta {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .project-meta-item {}

  .project-meta-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(15px, 1.35vw, 20px);
    font-weight: 600;
    color: var(--gold);
    line-height: 1.22;
  }

  .project-meta-key {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text2);
    margin-top: 2px;
  }

  /* ─── STRATEGY ─── */
  #strategy {
    background: var(--navy);
  }

  .strategy-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
    margin-top: 56px;
  }

  .strategy-nav {
    position: sticky;
    top: 100px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .strategy-nav li a {
    display: block;
    padding: 18px 24px;
    background: var(--navy2);
    color: var(--text2);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    border-left: 2px solid transparent;
    transition: all 0.25s;
  }

  .strategy-nav li a:hover,
  .strategy-nav li a.active {
    background: var(--navy3);
    color: var(--gold);
    border-left-color: var(--gold);
  }

  .strategy-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .strategy-block {
    background: var(--navy2);
    border: 1px solid rgba(201, 168, 76, 0.08);
    padding: 36px;
  }

  .strategy-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
  }

  .strategy-block p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text2);
    font-weight: 300;
  }

  /* ─── MAP SECTION ─── */
  #locations {
    position: relative;
    padding-top: 120px !important;
    background: linear-gradient(
      to bottom,
      #ece9e4 0%,
      #f1f4f8 18%,
      #f8fbff 42%,
      #f8fbff 100%
    );
    overflow: hidden;
  }

  #locations::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(
      to bottom,
      rgba(236, 233, 228, 1) 0%,
      rgba(241, 244, 248, 0.85) 45%,
      rgba(248, 251, 255, 0) 100%
    );
    pointer-events: none;
    z-index: 0;
  }

  #locations .container {
    position: relative;
    z-index: 1;
  }

  .map-wrap {
    margin-top: 48px;
    background: linear-gradient(145deg, #0b377a 0%, #082f6c 55%, #072a63 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 48px;
    position: relative;
    overflow: hidden;
  }

  .maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .region-map {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 16px;
  }

  .region-map-title {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 10px;
    font-weight: 600;
  }

  .map-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1.6/1;
    min-height: 260px;
  }

  .map-inner svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* Map legend */
  .map-legend {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 28px;
  }

  .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text2);
  }

  .legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }

  .legend-dot.active {
    background: var(--gold);
  }

  .legend-dot.planned {
    background: #b7c8e3;
    border: 1px solid var(--gold);
  }

  /* Location list */
  .locations-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 32px;
  }

  .location-item {
    background: var(--navy);
    border: 1px solid rgba(201, 168, 76, 0.08);
    padding: 24px 24px;
  }

  .location-country {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 500;
  }

  .location-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
  }

  .location-desc {
    font-size: 12px;
    color: var(--text2);
    font-weight: 300;
  }

  .location-status {
    margin-top: 12px;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
  }

  .status-active {
    color: var(--white);
  }

  .status-planned {
    color: var(--gold);
  }

  /* ─── GREEN MINING BANNER ─── */
  .green-banner {
    background: linear-gradient(135deg, #0c3f88 0%, #082f6c 100%);
    border: 1px solid rgba(232, 204, 135, 0.28);
    padding: 60px;
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .green-label {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .green-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
  }

  .green-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
  }

  .green-desc {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
    font-weight: 300;
  }

  .green-cert {
    background: rgba(232, 204, 135, 0.08);
    border: 1px solid rgba(232, 204, 135, 0.24);
    padding: 24px;
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
    font-weight: 300;
  }

  .green-cert strong {
    color: var(--gold);
    font-weight: 600;
  }

  /* ─── CONTACT ─── */
  #contact {
    background: var(--navy);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 56px;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .contact-block-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
  }

  .contact-text {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
    font-weight: 300;
  }

  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.2s;
  }

  .contact-link:hover {
    color: var(--gold);
  }

  .contact-link-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    color: var(--gold);
  }

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

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

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

  .form-label {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text2);
    font-weight: 500;
  }

  .form-control {
    background: var(--navy2);
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 12px 16px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.25s;
  }

  .form-control:focus {
    border-color: var(--gold);
  }

  .form-control::placeholder {
    color: var(--text2);
    opacity: 0.5;
  }

  select.form-control {
    cursor: pointer;
  }

  textarea.form-control {
    resize: vertical;
    min-height: 110px;
  }

  .form-submit {
    background: var(--gold);
    color: var(--navy);
    border: none;
    cursor: pointer;
    padding: 12px 26px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-transform: uppercase;
    transition: all 0.25s;
    align-self: flex-start;
    margin-top: 6px;
    min-width: 168px;
    box-sizing: border-box;
    white-space: nowrap;
    text-align: center;
  }

  .form-submit:hover {
    background: var(--gold2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.2);
  }

  .form-note {
    font-size: 11px;
    color: var(--text2);
    font-weight: 300;
    margin-top: -4px;
  }

  .form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    line-height: 1.55;
    color: var(--text2);
    font-weight: 300;
    cursor: pointer;
  }

  .form-consent input {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 2px;
    accent-color: var(--gold);
  }

  .form-consent a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .form-consent a:hover {
    color: #f2d681;
  }

  /* ─── FLOATING CONTACT BUTTONS ─── */
  .float-btns {
    position: fixed;
    right: 24px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 900;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 14px rgba(15, 47, 92, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 20px;
  }

  .float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 22px rgba(15, 47, 92, 0.3);
  }

  .float-btn.wa {
    background: var(--gold);
    color: #0f2f5c;
  }

  .float-btn.mail {
    background: #ffffff;
    color: #0f2f5c;
    border: 1px solid rgba(15, 47, 92, 0.18);
  }

  /* ─── FOOTER ─── */
  footer {
    background: #080f18;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    padding: 56px 0 32px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand p {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.75;
    font-weight: 300;
    margin-top: 16px;
    max-width: 260px;
  }

  .footer-col-title {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    color: var(--text2);
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    transition: color 0.2s;
  }

  .footer-links a:hover {
    color: var(--gold);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text2);
    font-weight: 300;
  }

  /* ─── DIVIDER LINE ─── */
  .divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.3), transparent);
    margin: 0;
  }

  /* ─── RESPONSIVE ─── */
  /* ── Mobile: hamburger menu ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
  }

  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
  }

  .nav-mobile-open .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-mobile-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-mobile-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 900px) {
    nav {
      padding: 0 20px;
    }

    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--navy);
      padding: 16px 20px;
      border-top: 1px solid rgba(201, 164, 44, 0.2);
      z-index: 200;
      gap: 0;
    }

    .nav-links.mobile-visible {
      display: flex;
    }

    .nav-links li {
      padding: 10px 0;
      border-bottom: 1px solid rgba(201, 164, 44, 0.1);
    }

    .nav-links li:last-child {
      border-bottom: none;
    }

    .nav-hamburger {
      display: flex;
    }

    .hero-inner {
      grid-template-columns: 1fr;
      gap: 32px;
      padding: 100px 20px 48px;
    }

    .hero-stats {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .hero-title {
      font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .about-grid,
    .contact-grid,
    .projects-grid {
      grid-template-columns: 1fr;
    }

    .sectors-grid {
      grid-template-columns: 1fr;
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .footer-brand {
      grid-column: 1 / -1;
    }

    .container {
      padding: 0 20px;
    }

    section {
      padding: 48px 0;
    }

    .about-directions {
      margin-top: 44px;
    }

    .green-banner {
      grid-template-columns: 1fr;
    }

    .locations-list {
      grid-template-columns: 1fr;
    }

    .maps-grid {
      grid-template-columns: 1fr;
    }

    .map-wrap {
      overflow-x: auto;
    }

    .region-map {
      min-width: 300px;
    }

    .strategy-grid {
      grid-template-columns: 1fr;
    }

    .strategy-nav {
      display: none;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    .project-card {
      min-width: 0;
    }

    .stat-card {
      padding: 16px 12px;
    }

    .section-title {
      font-size: clamp(1.6rem, 5vw, 2.4rem);
    }

    h1,
    .hero-title {
      font-size: clamp(1.8rem, 7vw, 3rem);
    }

    .about-visual {
      min-height: 250px;
    }

    .float-btns {
      bottom: 16px;
      right: 16px;
    }

    .nav-right {
      gap: 12px;
    }

    .lang-switcher {
      gap: 4px;
    }

    .lang-btn {
      padding: 4px 8px;
      font-size: 11px;
    }

    .nav-cta {
      padding: 8px 14px;
      font-size: 12px;
      display: none;
    }

    .lang-switcher {
      display: flex !important;
    }
  }

  @media (max-width: 600px) {
    .hero-stats {
      grid-template-columns: 1fr;
    }

    .footer-grid {
      grid-template-columns: 1fr;
    }

    .sections-grid,
    .sectors-grid {
      grid-template-columns: 1fr;
    }

    .maps-grid {
      grid-template-columns: 1fr;
    }

    .projects-grid {
      grid-template-columns: 1fr;
    }

    h1,
    .hero-title {
      font-size: clamp(1.6rem, 7vw, 2.4rem);
    }

    .hero-desc {
      font-size: 14px;
    }

    .section-title {
      font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .stat-card {
      padding: 12px;
    }

    .gallery-grid>div {
      min-width: 0;
    }
  }

  /* White Theme Variant */
  :root {
    --navy: #ffffff;
    --navy2: #f8fbff;
    --navy3: #edf4ff;
    --gold: #d7b55f;
    --gold2: #e8cc87;
    --gold-light: #f4e4be;
    --slate: #5b76a3;
    --mist: #dce8f8;
    --white: #0f2f5c;
    --text: #173c72;
    --text2: #5a76a0;
  }

  body {
    background: #ffffff;
    color: var(--text);
  }

  nav {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(215, 181, 95, 0.35);
  }

  .logo-mark {
    border: none;
    background: transparent;
  }

  .logo-text {
    color: #163f76;
  }

  .logo-sub {
    color: #3a608f;
  }

  .nav-cta {
    color: #0f2f5c;
  }

  .hero-bg {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 248, 255, 0.92) 50%, rgba(255, 255, 255, 0.98) 100%),
      url("assets/pattern-grid.svg");
  }

  .btn-primary,
  .form-submit {
    color: #0f2f5c;
  }

  .btn-ghost {
    border-color: rgba(15, 47, 92, 0.2);
    color: #173c72;
  }

  .stat-card {
    background: rgba(12, 63, 136, 0.04);
    border-color: rgba(12, 63, 136, 0.16);
  }

  .green-banner {
    background: linear-gradient(135deg, #f8fbff 0%, #edf4ff 100%);
    border-color: rgba(215, 181, 95, 0.32);
  }

  .map-wrap {
    background: linear-gradient(145deg, #ffffff 0%, #f4f8ff 55%, #ffffff 100%);
    border: 1px solid rgba(15, 47, 92, 0.22);
  }

  .region-map {
    background: #ffffff;
    border: 1px solid rgba(15, 47, 92, 0.16);
  }

  footer {
    background: #ffffff;
    border-top: 1px solid rgba(15, 47, 92, 0.14);
  }

  .footer-bottom {
    border-top: 1px solid rgba(15, 47, 92, 0.12);
  }

  @media (max-width: 600px) {
    #gallery>.container>div[style*="grid-template-columns:1fr 1fr"] {
      grid-template-columns: 1fr !important;
    }

    #gallery>.container>div[style*="grid-template-columns:1fr 1fr 1fr"] {
      grid-template-columns: 1fr !important;
    }
  }
/* ─── SELF-CONTAINED OPERATIONS MAP ─── */
.map-wrap-interactive {
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(215, 181, 95, 0.16), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f3f7fc 54%, #ffffff 100%);
  box-shadow: 0 24px 80px rgba(15, 47, 92, 0.12);
}

.map-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.map-view-btn {
  border: 1px solid rgba(15, 47, 92, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.map-view-btn:hover,
.map-view-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0f2f5c;
  transform: translateY(-1px);
}

.evermont-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  align-items: stretch;
}

.evermont-map-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(15, 47, 92, 0.13);
  background: #dce8f3;
}

.evermont-project-map,
.evermont-svg-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #dce8f3;
}

.project-map-svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.55s cubic-bezier(.22, .61, .36, 1);
}

.map-scale-note {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  max-width: 380px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text2);
  font-size: 11px;
  line-height: 1.45;
  box-shadow: 0 10px 26px rgba(15, 47, 92, 0.10);
}

.map-country {
  vector-effect: non-scaling-stroke;
}
.map-context-layer {
  display: none;
}

.map-point-label-left {
  text-anchor: end;
}


.map-country-context {
  fill: rgba(255, 255, 255, 0.55);
  stroke: rgba(93, 119, 149, 0.42);
  stroke-width: 1.1;
}

.map-country-uz,
.map-country-kg {
  fill: rgba(215, 181, 95, 0.16);
  stroke: rgba(215, 181, 95, 0.62);
}

.map-country-target {
  stroke: rgba(15, 47, 92, 0.82);
  stroke-width: 1.55;
}

.map-country-kazakhstan {
  fill: url(#kazFill);
}

.map-country-china {
  fill: url(#chinaFill);
}

.map-corridor {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-dasharray: 9 11;
  opacity: 0.90;
  filter: drop-shadow(0 8px 12px rgba(215,181,95,0.22));
}

.map-corridor-nodes circle {
  fill: #ffffff;
  stroke: var(--gold);
  stroke-width: 2;
}

.map-country-label,
.map-corridor-label,
.map-point-label {
  font-family: 'DM Sans', sans-serif;
  fill: #0f2f5c;
  paint-order: stroke;
  stroke: rgba(255,255,255,0.82);
  stroke-width: 5px;
  stroke-linejoin: round;
}

.map-country-label {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.80;
}

.map-corridor-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  fill: #9f7a21;
}

.map-point {
  cursor: pointer;
  outline: none;
}

.map-point-halo {
  fill: rgba(215, 181, 95, 0.20);
  stroke: rgba(215, 181, 95, 0.35);
  stroke-width: 1.4;
  transition: r 0.25s ease, opacity 0.25s ease;
}

.map-point-ring {
  fill: #ffffff;
  stroke: #0f2f5c;
  stroke-width: 3;
  filter: drop-shadow(0 8px 12px rgba(15,47,92,0.26));
}

.map-point-core {
  fill: var(--gold);
}

.map-point.planned .map-point-ring {
  stroke: var(--gold);
}

.map-point.planned .map-point-core {
  fill: #0f2f5c;
}

.map-point-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.map-point:hover .map-point-halo,
.map-point.is-selected .map-point-halo,
.map-point:focus-visible .map-point-halo {
  r: 24;
  opacity: 1;
}

.map-point.is-selected .map-point-ring {
  stroke: var(--gold);
  stroke-width: 4;
}

.map-wrap-interactive[data-map-view="centralasia"] .map-country-china,
.map-wrap-interactive[data-map-view="centralasia"] .map-point[data-location="dexing"],
.map-wrap-interactive[data-map-view="centralasia"] .map-point[data-location="benxi"],
.map-wrap-interactive[data-map-view="centralasia"] .map-point[data-location="hezhou"] {
  opacity: 0.33;
}

.map-wrap-interactive[data-map-view="china"] .map-country-kazakhstan,
.map-wrap-interactive[data-map-view="china"] .map-point[data-location="akshily"] {
  opacity: 0.34;
}

.map-side-panel {
  border-radius: 24px;
  border: 1px solid rgba(15, 47, 92, 0.13);
  background: rgba(255, 255, 255, 0.90);
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.map-side-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.map-side-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.map-side-panel p {
  color: var(--text2);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.map-side-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-location-card {
  width: 100%;
  border: 1px solid rgba(15, 47, 92, 0.12);
  background: rgba(248, 251, 255, 0.84);
  text-align: left;
  border-radius: 16px;
  padding: 14px 14px 14px 42px;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.map-location-card:hover,
.map-location-card.active {
  transform: translateY(-2px);
  border-color: rgba(215, 181, 95, 0.68);
  background: #ffffff;
}

.map-location-card strong {
  display: block;
  color: #0f2f5c;
  font-size: 13px;
  line-height: 1.25;
}

.map-location-card small {
  display: block;
  color: var(--text2);
  font-size: 11px;
  line-height: 1.45;
  margin-top: 4px;
}

.map-location-status {
  position: absolute;
  top: 17px;
  left: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.map-location-status.active {
  background: var(--gold);
}

.map-location-status.planned {
  background: #ffffff;
  border: 2px solid var(--gold);
}

.map-legend-compact {
  margin-top: 22px;
  gap: 14px;
  flex-direction: column;
}

.map-detail-card {
  margin-top: 18px;
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(15,47,92,0.06), rgba(215,181,95,0.13));
  border: 1px solid rgba(215,181,95,0.30);
}

.map-detail-kicker {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.map-detail-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  line-height: 1.08;
  color: #0f2f5c;
  margin-bottom: 7px;
}

.map-detail-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.locations-list {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 980px) {
  .evermont-map-grid {
    grid-template-columns: 1fr;
  }

  .evermont-map-card {
    min-height: 500px;
  }

  .locations-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .map-wrap-interactive {
    padding: 12px;
    border-radius: 18px;
  }

  .map-toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .map-view-btn {
    width: 100%;
  }

  .evermont-map-card {
    min-height: 410px;
    border-radius: 16px;
  }

  .map-country-label {
    font-size: 17px;
  }

  .map-point-label {
    font-size: 11px;
  }

  .map-scale-note {
    max-width: calc(100% - 28px);
    left: 14px;
    bottom: 14px;
  }

  .map-side-panel {
    padding: 18px;
    border-radius: 16px;
  }

  .locations-list {
    grid-template-columns: 1fr;
  }
}


/* Floating contact buttons safety override: keep icons visible in white theme */
.float-btn.wa,
.float-btn.mail {
  color: #0f2f5c !important;
}
.float-btn svg {
  display: block;
}
.float-btn:focus-visible {
  outline: 3px solid rgba(215, 181, 95, 0.55);
  outline-offset: 3px;
}


/* ─── SCROLL REVEAL ANIMATION ─── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal.reveal-delay-1 { transition-delay: 0.08s; }
.scroll-reveal.reveal-delay-2 { transition-delay: 0.16s; }
.scroll-reveal.reveal-delay-3 { transition-delay: 0.24s; }
.scroll-reveal.reveal-delay-4 { transition-delay: 0.32s; }
.scroll-reveal.reveal-delay-5 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.sector-card.scroll-reveal.is-visible:hover {
  transform: translateY(-4px);
}

/* Presentable operations gallery */
.operations-gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(196, 154, 91, 0.12), transparent 32%),
    linear-gradient(180deg, #f8f6f0 0%, #ffffff 42%, #f7f5ef 100%);
  padding: 96px 0 104px;
}

.operations-gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(15, 47, 92, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 47, 92, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 70%);
}

.operations-gallery-section .container {
  position: relative;
  z-index: 1;
}

.gallery-intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.gallery-intro-panel .section-desc {
  max-width: 690px;
}

.gallery-note-card {
  border: 1px solid rgba(196, 154, 91, 0.28);
  border-radius: 24px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 70px rgba(15, 47, 92, 0.08);
  backdrop-filter: blur(10px);
}

.gallery-note-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #b78b4e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-note-card strong {
  display: block;
  color: #17375f;
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.gallery-note-card p {
  margin: 0;
  color: #60738c;
  font-size: 14px;
  line-height: 1.55;
}

.gallery-showcase {
  display: grid;
  gap: 30px;
}

.gallery-group {
  border: 1px solid rgba(15, 47, 92, 0.08);
  border-radius: 32px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.80);
  box-shadow: 0 32px 90px rgba(15, 47, 92, 0.11);
}

.gallery-group-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 4px 20px;
}

.gallery-group-title {
  margin: 0 0 6px;
  color: #17375f;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.gallery-group-desc {
  margin: 0;
  max-width: 640px;
  color: #657891;
  font-size: 14px;
  line-height: 1.6;
}

.gallery-group-count {
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(196, 154, 91, 0.32);
  padding: 8px 13px;
  color: #9a743c;
  background: rgba(196, 154, 91, 0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-grid-neutral {
  display: grid;
  gap: 16px;
}

.gallery-grid-corporate {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.gallery-grid-corporate .gallery-card:nth-child(1),
.gallery-grid-corporate .gallery-card:nth-child(2) {
  grid-column: span 5;
  aspect-ratio: 16 / 9;
}

.gallery-grid-corporate .gallery-card:nth-child(n + 3) {
  grid-column: span 1;
}

.gallery-grid-corporate .gallery-card:nth-child(3) {
  grid-column: span 3;
}

.gallery-grid-corporate .gallery-card:nth-child(4) {
  grid-column: span 4;
}

.gallery-grid-corporate .gallery-card:nth-child(5) {
  grid-column: span 3;
}

.gallery-grid-operational {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 16 / 10;
  background: rgba(15, 47, 92, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24), 0 20px 46px rgba(15, 47, 92, 0.11);
  transform: translateZ(0);
}

.gallery-grid-operational .gallery-card {
  aspect-ratio: 4 / 3;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 18, 35, 0.06) 0%, rgba(5, 18, 35, 0.16) 44%, rgba(5, 18, 35, 0.72) 100%);
  opacity: 0.92;
  transition: opacity 0.35s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.05);
}

.gallery-card:hover::after {
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 24px;
  color: #fff;
}

.gallery-overlay.compact {
  padding: 18px 19px;
}

.gallery-kicker {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 8px;
  border-radius: 999px;
  padding: 5px 9px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gallery-overlay.compact .gallery-kicker {
  font-size: 9px;
  letter-spacing: 0.11em;
}

.gallery-card-title {
  color: #fff;
  max-width: 92%;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 700;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.32);
}

.gallery-overlay.compact .gallery-card-title {
  font-size: 15px;
}

@media (max-width: 980px) {
  .gallery-intro-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gallery-note-card {
    max-width: 520px;
  }

  .gallery-grid-corporate,
  .gallery-grid-operational {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid-corporate .gallery-card,
  .gallery-grid-corporate .gallery-card:nth-child(1),
  .gallery-grid-corporate .gallery-card:nth-child(2),
  .gallery-grid-corporate .gallery-card:nth-child(3),
  .gallery-grid-corporate .gallery-card:nth-child(4),
  .gallery-grid-corporate .gallery-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .operations-gallery-section {
    padding: 64px 0 72px;
  }

  .gallery-intro-panel {
    margin-bottom: 24px;
  }

  .gallery-group {
    border-radius: 24px;
    padding: 14px;
  }

  .gallery-group-header {
    display: block;
    padding: 6px 6px 16px;
  }

  .gallery-group-count {
    display: inline-flex;
    margin-top: 12px;
  }

  .gallery-grid-corporate,
  .gallery-grid-operational {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-grid-operational .gallery-card,
  .gallery-grid-corporate .gallery-card:nth-child(1),
  .gallery-grid-corporate .gallery-card:nth-child(2) {
    aspect-ratio: 16 / 10;
  }

  .gallery-overlay,
  .gallery-overlay.compact {
    padding: 16px;
  }

  .gallery-card-title,
  .gallery-overlay.compact .gallery-card-title {
    font-size: 15px;
  }
}

/* Gallery polish update — cleaner wording and premium visual layout */
.operations-gallery-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(196, 154, 91, 0.18), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(15, 47, 92, 0.10), transparent 34%),
    linear-gradient(180deg, #fbf8f1 0%, #ffffff 44%, #f4efe5 100%);
  padding: 104px 0 112px;
}

.gallery-intro-panel {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 42px;
  align-items: stretch;
  margin-bottom: 38px;
}

.gallery-intro-panel .section-desc {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.75;
}

.gallery-note-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 190px;
  border: 1px solid rgba(214, 177, 110, 0.36);
  border-radius: 30px;
  padding: 28px 30px;
  background:
    linear-gradient(135deg, rgba(12, 39, 72, 0.96), rgba(25, 66, 106, 0.94)),
    url('assets/pattern-grid.svg');
  box-shadow: 0 34px 90px rgba(15, 47, 92, 0.18);
}

.gallery-note-card::before {
  content: "";
  position: absolute;
  top: -72px;
  right: -52px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 177, 110, 0.42), rgba(214, 177, 110, 0.06) 62%, transparent 70%);
}

.gallery-note-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  pointer-events: none;
}

.gallery-note-eyebrow {
  position: relative;
  z-index: 1;
  color: #e0b66f;
}

.gallery-note-card strong {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 310px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.gallery-note-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.gallery-showcase {
  gap: 36px;
}

.gallery-group {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 177, 110, 0.24);
  border-radius: 34px;
  padding: 28px;
  background:
    radial-gradient(circle at 88% 8%, rgba(214, 177, 110, 0.18), transparent 30%),
    linear-gradient(135deg, #0d294c 0%, #14375f 54%, #0a1f39 100%);
  box-shadow: 0 34px 98px rgba(15, 47, 92, 0.20);
}

.gallery-group::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.55;
}

.gallery-group-header,
.gallery-grid-neutral {
  position: relative;
  z-index: 1;
}

.gallery-group-header {
  padding: 4px 4px 24px;
}

.gallery-group-title {
  color: #ffffff;
  font-size: clamp(24px, 2.4vw, 34px);
}

.gallery-group-desc {
  color: rgba(255, 255, 255, 0.70);
  font-size: 15px;
}

.gallery-group-count {
  border-color: rgba(214, 177, 110, 0.45);
  color: #f1d19a;
  background: rgba(214, 177, 110, 0.12);
}

.gallery-grid-neutral {
  gap: 18px;
}

.gallery-grid-corporate,
.gallery-grid-operational {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gallery-grid-corporate .gallery-card:nth-child(1),
.gallery-grid-corporate .gallery-card:nth-child(2) {
  grid-column: span 6;
  aspect-ratio: 16 / 9;
}

.gallery-grid-corporate .gallery-card:nth-child(3),
.gallery-grid-corporate .gallery-card:nth-child(4),
.gallery-grid-corporate .gallery-card:nth-child(5) {
  grid-column: span 4;
  aspect-ratio: 16 / 10;
}

.gallery-grid-operational .gallery-card:nth-child(1),
.gallery-grid-operational .gallery-card:nth-child(2) {
  grid-column: span 6;
  aspect-ratio: 16 / 9;
}

.gallery-grid-operational .gallery-card:nth-child(3),
.gallery-grid-operational .gallery-card:nth-child(4),
.gallery-grid-operational .gallery-card:nth-child(5) {
  grid-column: span 4;
  aspect-ratio: 4 / 3;
}

.gallery-grid-operational .gallery-card:nth-child(n + 6) {
  grid-column: span 3;
  aspect-ratio: 4 / 3;
}

.gallery-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.20);
}

.gallery-card::after {
  background:
    linear-gradient(180deg, rgba(4, 14, 26, 0.02) 0%, rgba(4, 14, 26, 0.12) 40%, rgba(4, 14, 26, 0.78) 100%);
}

.gallery-card img {
  filter: saturate(0.98) contrast(1.03) brightness(0.98);
}

.gallery-kicker {
  color: #f0d19b;
  background: rgba(8, 23, 41, 0.40);
  border: 1px solid rgba(240, 209, 155, 0.22);
}

.gallery-card-title {
  font-size: 20px;
  letter-spacing: -0.01em;
}

.gallery-overlay.compact .gallery-card-title {
  font-size: 16px;
}

@media (max-width: 980px) {
  .gallery-intro-panel {
    grid-template-columns: 1fr;
  }

  .gallery-note-card {
    max-width: none;
  }

  .gallery-grid-corporate,
  .gallery-grid-operational {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid-corporate .gallery-card,
  .gallery-grid-corporate .gallery-card:nth-child(1),
  .gallery-grid-corporate .gallery-card:nth-child(2),
  .gallery-grid-corporate .gallery-card:nth-child(3),
  .gallery-grid-corporate .gallery-card:nth-child(4),
  .gallery-grid-corporate .gallery-card:nth-child(5),
  .gallery-grid-operational .gallery-card,
  .gallery-grid-operational .gallery-card:nth-child(1),
  .gallery-grid-operational .gallery-card:nth-child(2),
  .gallery-grid-operational .gallery-card:nth-child(3),
  .gallery-grid-operational .gallery-card:nth-child(4),
  .gallery-grid-operational .gallery-card:nth-child(5),
  .gallery-grid-operational .gallery-card:nth-child(n + 6) {
    grid-column: span 1;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .operations-gallery-section {
    padding: 70px 0 78px;
  }

  .gallery-note-card {
    min-height: 170px;
    padding: 24px;
    border-radius: 24px;
  }

  .gallery-group {
    padding: 16px;
    border-radius: 26px;
  }

  .gallery-group-title {
    font-size: 23px;
  }

  .gallery-grid-corporate,
  .gallery-grid-operational {
    grid-template-columns: 1fr;
  }
}

/* ─── GALLERY CLEAN UPDATE: no blue panels + image lightbox ─── */
.operations-gallery-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 177, 110, 0.16), transparent 34%),
    radial-gradient(circle at 92% 10%, rgba(15, 47, 92, 0.055), transparent 32%),
    linear-gradient(180deg, #fbfaf6 0%, #ffffff 48%, #f7f4ee 100%);
  padding: 100px 0 110px;
}

.operations-gallery-section::before {
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(15, 47, 92, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 47, 92, 0.025) 1px, transparent 1px);
}

.gallery-intro-panel {
  align-items: end;
}

.gallery-note-card {
  min-height: auto;
  border: 1px solid rgba(15, 47, 92, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 58px rgba(15, 47, 92, 0.08);
  backdrop-filter: blur(12px);
}

.gallery-note-card::before,
.gallery-note-card::after,
.gallery-group::before {
  display: none !important;
}

.gallery-note-card strong {
  color: #15365e;
  font-family: Georgia, 'Times New Roman', serif;
}

.gallery-note-card p {
  color: #63758b;
}

.gallery-showcase {
  gap: 54px;
}

.gallery-group {
  overflow: visible;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.gallery-group-header {
  margin-bottom: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(15, 47, 92, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(15, 47, 92, 0.075);
  backdrop-filter: blur(12px);
}

.gallery-group-title {
  color: #15365e;
}

.gallery-group-desc {
  color: #65768a;
}

.gallery-group-count {
  border-color: rgba(196, 154, 91, 0.42);
  color: #99713b;
  background: rgba(214, 177, 110, 0.11);
}

.gallery-grid-neutral {
  gap: 22px;
}

.gallery-card {
  cursor: zoom-in;
  border: 0 !important;
  border-radius: 24px;
  background: #f5f1e8;
  box-shadow: 0 22px 54px rgba(15, 47, 92, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 72px rgba(15, 47, 92, 0.20);
}

.gallery-card:focus-visible {
  outline: 3px solid rgba(214, 177, 110, 0.70);
  outline-offset: 4px;
}

.gallery-card::before {
  content: "↗";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #0f2f5c;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(-4px) scale(0.94);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-card:hover::before,
.gallery-card:focus-visible::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-card img {
  filter: saturate(1.02) contrast(1.03) brightness(0.98);
}

.gallery-card:hover img {
  filter: saturate(1.08) contrast(1.05) brightness(1);
}

.gallery-kicker {
  color: #f1d19a;
  background: rgba(8, 23, 41, 0.52);
  border-color: rgba(240, 209, 155, 0.28);
}

/* Full-screen gallery viewer */
body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(4, 13, 24, 0.88);
  backdrop-filter: blur(12px);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox__inner {
  width: min(1180px, 94vw);
  max-height: 92vh;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.gallery-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 20px;
  background: #081729;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox__caption {
  max-width: 840px;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
}

.gallery-lightbox__caption strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
}

.gallery-lightbox__caption span {
  color: #e0b66f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-lightbox__close {
  position: fixed;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: background 0.25s ease, transform 0.25s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible {
  background: rgba(214, 177, 110, 0.26);
  transform: rotate(90deg);
  outline: none;
}

@media (max-width: 980px) {
  .gallery-showcase {
    gap: 42px;
  }

  .gallery-group-header {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .operations-gallery-section {
    padding: 70px 0 82px;
  }

  .gallery-group-header {
    padding: 18px;
    border-radius: 22px;
  }

  .gallery-card {
    border-radius: 20px;
  }

  .gallery-card::before {
    opacity: 1;
    width: 34px;
    height: 34px;
  }

  .gallery-lightbox {
    padding: 18px;
  }

  .gallery-lightbox__image {
    max-height: 72vh;
    border-radius: 16px;
  }

  .gallery-lightbox__close {
    top: 14px;
    right: 14px;
  }
}


/* ─────────────────────────────────────────────────────────────
   Industrial premium update — Akshily technical integration
   ───────────────────────────────────────────────────────────── */
:root {
  --navy: #061526;
  --navy2: #0a1f36;
  --navy3: #0f2f4f;
  --graphite: #121820;
  --graphite2: #1b222c;
  --metal: #b9c0c9;
  --gold: #c7a052;
  --gold2: #e2c276;
  --white: #ffffff;
  --text: #e6edf7;
  --text2: #aebbc9;
}

body {
  background: linear-gradient(180deg, #061526 0%, #0a1f36 52%, #071725 100%);
  color: var(--text);
}

nav {
  background: rgba(6, 16, 30, 0.88) !important;
  border-bottom: 1px solid rgba(226, 194, 118, 0.22) !important;
}

.logo-text,
.logo-sub { color: #fff !important; }
.nav-links a { color: rgba(230,237,247,0.78) !important; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold2) !important; }
.nav-cta {
  color: #081522 !important;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border: 1px solid rgba(255,255,255,0.18);
}

#hero {
  min-height: 100vh;
  background: #061526;
}

.hero-bg {
  background:
    radial-gradient(circle at 78% 28%, rgba(226, 194, 118, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(4, 12, 24, 0.96) 0%, rgba(4, 12, 24, 0.74) 48%, rgba(4, 12, 24, 0.92) 100%),
    url("assets/hero-quarry-aerial.jpg") center / cover no-repeat !important;
  filter: saturate(1.05) contrast(1.08);
}

.hero-title,
.section-title,
.green-title,
.project-name,
.contact-block-title {
  letter-spacing: -0.025em;
}

.hero-inner {
  grid-template-columns: 1.02fr 0.82fr;
  gap: 46px;
}

.hero-left {
  max-width: 760px;
}

.hero-title {
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.94;
  text-shadow: 0 28px 70px rgba(0,0,0,0.35);
}

.hero-desc {
  max-width: 670px;
  font-size: 16px;
  color: rgba(230, 237, 247, 0.88) !important;
}

.hero-stats {
  gap: 12px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(10, 31, 54, 0.86), rgba(18, 24, 32, 0.72)) !important;
  border: 1px solid rgba(226, 194, 118, 0.24) !important;
  box-shadow: 0 18px 46px rgba(0,0,0,0.22);
  backdrop-filter: blur(12px);
}

.stat-num {
  font-size: 14px;
  color: var(--white) !important;
}

.stat-label {
  color: rgba(226, 194, 118, 0.88) !important;
}

section,
#about,
#projects,
#locations,
#contact,
.operations-gallery-section {
  background: linear-gradient(180deg, #071725 0%, #0a1f36 100%) !important;
}

#about .about-img-wrap img {
  filter: saturate(1.08) contrast(1.08);
}

.about-badge {
  background: linear-gradient(145deg, rgba(226,194,118,0.95), rgba(162,123,47,0.95)) !important;
  color: #061526 !important;
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.35);
}
.about-badge-num,
.about-badge-label { color: #061526 !important; }

.about-directions {
  padding: 42px;
  margin-top: 82px;
  background: linear-gradient(145deg, rgba(18,24,32,0.84), rgba(10,31,54,0.82));
  border: 1px solid rgba(226,194,118,0.16);
  box-shadow: 0 30px 90px rgba(0,0,0,0.24);
}

.sector-card {
  background: linear-gradient(145deg, rgba(18,24,32,0.94), rgba(10,31,54,0.94)) !important;
  border: 1px solid rgba(226,194,118,0.17) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.sector-card:nth-child(1) { background-image: linear-gradient(145deg, rgba(6,21,38,0.88), rgba(6,21,38,0.94)), url("assets/hero-quarry-aerial.jpg") !important; background-size: cover !important; }
.sector-card:nth-child(2) { background-image: linear-gradient(145deg, rgba(6,21,38,0.88), rgba(6,21,38,0.94)), url("assets/sector-resource-processing.jpg") !important; background-size: cover !important; }
.sector-card:nth-child(3) { background-image: linear-gradient(145deg, rgba(6,21,38,0.88), rgba(6,21,38,0.94)), url("assets/about-processing-facility-aerial.jpg") !important; background-size: cover !important; }
.sector-card:nth-child(4) { background-image: linear-gradient(145deg, rgba(6,21,38,0.88), rgba(6,21,38,0.94)), url("assets/presence-logistics-corridor.jpg") !important; background-size: cover !important; }
.sector-card:hover {
  transform: translateY(-7px);
  border-color: rgba(226,194,118,0.42) !important;
}

.esg-section-block {
  padding: 0;
  background: #071725 !important;
}
.green-banner {
  background:
    linear-gradient(90deg, rgba(5,16,31,0.95), rgba(5,16,31,0.76)),
    url("assets/esg-green-mining-facility.jpg") center / cover no-repeat !important;
  border: 1px solid rgba(226,194,118,0.26) !important;
  box-shadow: 0 34px 110px rgba(0,0,0,0.32);
}
.green-cert {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  background: rgba(6,21,38,0.64) !important;
  border-color: rgba(226,194,118,0.22) !important;
}
.green-cert span {
  display: block;
  padding: 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.075);
}

.project-card {
  overflow: hidden;
  background: linear-gradient(145deg, rgba(18,24,32,0.94), rgba(10,31,54,0.96)) !important;
  border: 1px solid rgba(226,194,118,0.18) !important;
  box-shadow: 0 22px 70px rgba(0,0,0,0.18);
}
.project-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: linear-gradient(90deg, rgba(226,194,118,0), rgba(226,194,118,0.75), rgba(226,194,118,0));
  opacity: 0.55;
}
.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.project-dexing::before { background-image: url("assets/project-dexing-granite-yard.jpg"); }
.project-benxi::before { background-image: url("assets/benxi-iron-mine-mine-entrance.jpg"); }
.project-hezhou::before { background-image: url("assets/dexing-granite-quarry-quarry-overview.jpg"); }
.project-akshily::before { background-image: url("assets/akshily-site-exploration.jpg"); opacity: 0.18; }
.project-card > * { position: relative; z-index: 1; }
.project-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top-color: rgba(226,194,118,0.14) !important;
}

.gallery-note-card,
.gallery-group-header,
.gallery-card {
  background: linear-gradient(145deg, rgba(18,24,32,0.90), rgba(10,31,54,0.78)) !important;
  border-color: rgba(226,194,118,0.18) !important;
}
.gallery-card img {
  filter: saturate(1.08) contrast(1.08);
}
.gallery-grid-akshily {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}
.gallery-grid-akshily .gallery-card-featured {
  grid-row: span 2;
}
.gallery-group-akshily .gallery-card {
  min-height: 250px;
}
.gallery-group-akshily .gallery-card-featured { min-height: 520px; }

.gallery-grid-akshily .gallery-card-wide {
  grid-column: 1 / -1;
  min-height: 340px;
}

.map-wrap {
  background:
    radial-gradient(circle at 28% 14%, rgba(226,194,118,0.12), transparent 34%),
    linear-gradient(145deg, #071725 0%, #0b2238 58%, #101822 100%) !important;
  border: 1px solid rgba(226,194,118,0.20) !important;
  box-shadow: 0 28px 90px rgba(0,0,0,0.25);
}
.map-side-panel,
.map-detail-card,
.map-location-card,
.location-item,
.contact-form,
.contact-info > div:last-child {
  background: linear-gradient(145deg, rgba(18,24,32,0.92), rgba(10,31,54,0.86)) !important;
  border: 1px solid rgba(226,194,118,0.16) !important;
}
.map-detail-kicker { color: var(--gold2) !important; }
.locations-list {
  gap: 18px;
}
.location-desc {
  display: grid;
  gap: 8px;
}
.location-desc span {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(226,194,118,0.10);
  color: rgba(230,237,247,0.78);
}
.location-desc strong { color: var(--gold2); font-weight: 600; }

#contact {
  background:
    linear-gradient(90deg, rgba(5,16,31,0.96), rgba(5,16,31,0.86)),
    url("assets/contact-industrial-background.jpg") center / cover no-repeat !important;
}
.contact-grid {
  align-items: stretch;
}
.contact-info > div:first-child,
.contact-links,
.contact-info > div:last-child,
.contact-form {
  backdrop-filter: blur(10px);
}
.contact-info > div:first-child,
.contact-links {
  padding: 28px;
  background: rgba(10,31,54,0.55);
  border: 1px solid rgba(226,194,118,0.14);
}
.form-control {
  background: rgba(255,255,255,0.055) !important;
  border-color: rgba(226,194,118,0.22) !important;
  color: #ffffff !important;
}
.form-control::placeholder { color: rgba(230,237,247,0.52) !important; }
.form-submit {
  background: linear-gradient(135deg, var(--gold2), var(--gold)) !important;
  color: #061526 !important;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-inner,
  .contact-grid,
  .green-banner {
    grid-template-columns: 1fr !important;
  }
  .gallery-grid-akshily {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-group-akshily .gallery-card-featured {
    grid-row: auto;
    min-height: 340px;
  }
}
@media (max-width: 640px) {
  .hero-title { font-size: clamp(40px, 13vw, 56px); }
  .about-directions { padding: 24px; }
  .green-cert,
  .gallery-grid-akshily,
  .project-meta {
    grid-template-columns: 1fr !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   Harmony patch — dark corporate palette, warmer photos, footer,
   gallery readability and gold outline CTA
   ───────────────────────────────────────────────────────────── */
:root {
  --navy: #061526;
  --navy2: #081b2f;
  --navy3: #0b243d;
  --graphite: #121820;
  --gold: #c7a052;
  --gold2: #e2c276;
  --gold-soft: rgba(226, 194, 118, 0.16);
  --text: #e8eef6;
  --text2: #aab7c6;
}

html, body {
  background: #061526 !important;
}

body {
  color: var(--text) !important;
}

/* Keep all big sections in one dark premium system; remove light/grey bands */
section,
#about,
#projects,
#locations,
#contact,
.operations-gallery-section,
.esg-section-block {
  background:
    radial-gradient(circle at 8% 0%, rgba(226, 194, 118, 0.08), transparent 30%),
    linear-gradient(180deg, #061526 0%, #081b2f 48%, #061526 100%) !important;
}

.divider {
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(226, 194, 118, 0.24), transparent) !important;
}

/* Hero secondary button: gold outline, not blue/grey */
.hero .btn-ghost,
#hero .btn-ghost {
  color: var(--gold2) !important;
  border: 1px solid rgba(226, 194, 118, 0.70) !important;
  background: rgba(226, 194, 118, 0.08) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 12px 32px rgba(0,0,0,0.18);
}

.hero .btn-ghost:hover,
#hero .btn-ghost:hover {
  color: #061526 !important;
  background: linear-gradient(135deg, var(--gold2), var(--gold)) !important;
  border-color: rgba(226, 194, 118, 0.95) !important;
  box-shadow: 0 16px 38px rgba(226, 194, 118, 0.22);
}

/* About image: larger and warmer so it does not blend into the blue background */
.about-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr) !important;
  gap: clamp(56px, 5vw, 90px) !important;
}

.about-visual {
  transform: translateX(-18px);
}

.about-img-wrap {
  height: clamp(430px, 38vw, 560px) !important;
  aspect-ratio: auto !important;
  border-radius: 22px !important;
  border: 1px solid rgba(226, 194, 118, 0.24) !important;
  box-shadow: 0 34px 100px rgba(0,0,0,0.34) !important;
  background: #0b243d !important;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6,21,38,0.04), rgba(6,21,38,0.26)),
    linear-gradient(45deg, rgba(226,194,118,0.16), transparent 48%);
  mix-blend-mode: soft-light;
}

.about-img-wrap img {
  filter: saturate(0.88) sepia(0.13) hue-rotate(-10deg) contrast(1.10) brightness(0.92) !important;
  transform: scale(1.035);
}

.about-badge {
  right: -28px !important;
  bottom: -26px !important;
}

/* Gallery text readability: no dark-blue text on dark-blue cards */
.operations-gallery-section .section-label,
.operations-gallery-section .section-desc,
.operations-gallery-section .gallery-group-title,
.operations-gallery-section .gallery-group-desc,
.operations-gallery-section .gallery-note-card strong,
.operations-gallery-section .gallery-note-card p {
  text-shadow: none !important;
}

.operations-gallery-section .gallery-note-card,
.operations-gallery-section .gallery-group-header,
.operations-gallery-section .gallery-group,
.operations-gallery-section .gallery-card {
  background: linear-gradient(145deg, rgba(18, 24, 32, 0.94), rgba(8, 27, 47, 0.92)) !important;
  border: 1px solid rgba(226, 194, 118, 0.18) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,0.24) !important;
}

.operations-gallery-section .gallery-note-card strong,
.operations-gallery-section .gallery-group-title {
  color: #f4efe4 !important;
}

.operations-gallery-section .gallery-note-card p,
.operations-gallery-section .gallery-group-desc {
  color: rgba(232, 238, 246, 0.72) !important;
}

.operations-gallery-section .gallery-note-eyebrow,
.operations-gallery-section .gallery-group-count,
.operations-gallery-section .section-label {
  color: var(--gold2) !important;
}

.operations-gallery-section .gallery-group-count {
  background: rgba(226, 194, 118, 0.10) !important;
  border-color: rgba(226, 194, 118, 0.36) !important;
}

/* Make gallery visuals larger and more cinematic */
.operations-gallery-section {
  padding: 86px 0 96px !important;
}

.gallery-showcase {
  gap: 38px !important;
}

.gallery-grid-neutral {
  gap: 24px !important;
}

.gallery-grid-corporate .gallery-card:nth-child(1),
.gallery-grid-corporate .gallery-card:nth-child(2),
.gallery-grid-operational .gallery-card:nth-child(1),
.gallery-grid-operational .gallery-card:nth-child(2) {
  min-height: 360px !important;
}

.gallery-card {
  border-radius: 26px !important;
}

.gallery-card img {
  filter: saturate(0.95) sepia(0.07) hue-rotate(-6deg) contrast(1.08) brightness(0.94) !important;
}

.gallery-card:hover img {
  filter: saturate(1.03) sepia(0.04) hue-rotate(-4deg) contrast(1.10) brightness(0.98) !important;
}

/* Operations map transition: remove grey strip impression between sections */
#locations {
  margin-top: 0 !important;
  padding-top: 96px !important;
  border-top: 1px solid rgba(226, 194, 118, 0.12);
}

#locations::before {
  background: radial-gradient(circle at 52% 0%, rgba(226,194,118,0.10), transparent 34%) !important;
  opacity: 1 !important;
}

/* Footer now matches the premium dark system, not a white block */
footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(226, 194, 118, 0.08), transparent 30%),
    linear-gradient(180deg, #061526 0%, #050d18 100%) !important;
  border-top: 1px solid rgba(226, 194, 118, 0.18) !important;
  color: var(--text) !important;
}

footer .footer-brand p,
footer .footer-links a,
footer .footer-bottom,
footer .footer-bottom a {
  color: rgba(232, 238, 246, 0.68) !important;
}

footer .footer-links a:hover,
footer .footer-bottom a:hover {
  color: var(--gold2) !important;
}

footer .footer-col-title {
  color: var(--gold2) !important;
}

footer .footer-bottom {
  border-top: 1px solid rgba(226, 194, 118, 0.12) !important;
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr !important;
  }
  .about-visual {
    transform: none;
  }
  .about-img-wrap {
    height: clamp(320px, 58vw, 460px) !important;
  }
  .gallery-grid-corporate .gallery-card:nth-child(1),
  .gallery-grid-corporate .gallery-card:nth-child(2),
  .gallery-grid-operational .gallery-card:nth-child(1),
  .gallery-grid-operational .gallery-card:nth-child(2) {
    min-height: 300px !important;
  }
}

@media (max-width: 640px) {
  .operations-gallery-section {
    padding: 64px 0 76px !important;
  }
  #locations {
    padding-top: 72px !important;
  }
  .about-img-wrap {
    height: 300px !important;
    border-radius: 18px !important;
  }
  .about-badge {
    right: 12px !important;
    bottom: -20px !important;
  }
  .gallery-grid-corporate .gallery-card:nth-child(1),
  .gallery-grid-corporate .gallery-card:nth-child(2),
  .gallery-grid-operational .gallery-card:nth-child(1),
  .gallery-grid-operational .gallery-card:nth-child(2) {
    min-height: 250px !important;
  }
}

/* Map view buttons readability fix: keep inactive white pills with dark text */
.map-view-btn {
  background: rgba(245, 248, 251, 0.96) !important;
  color: #08213a !important;
  border: 1px solid rgba(226, 194, 118, 0.28) !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16) !important;
}

.map-view-btn:hover,
.map-view-btn.active {
  background: linear-gradient(135deg, var(--gold2), var(--gold)) !important;
  color: #061526 !important;
  border-color: rgba(226, 194, 118, 0.95) !important;
}

/* Contact form frame fix: remove the outer box/frame while keeping input fields visible */
#contact .contact-form {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
}

#contact .contact-form::before,
#contact .contact-form::after {
  display: none !important;
  content: none !important;
}

/* Location cards alignment fix: keep four project cards in one balanced premium row */
#locations .locations-list {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
  align-items: stretch !important;
}

#locations .location-item {
  min-height: 318px !important;
  display: flex !important;
  flex-direction: column !important;
}

#locations .location-desc {
  flex: 1 1 auto !important;
}

#locations .location-status,
#locations .status-active,
#locations .status-planned {
  color: var(--gold2) !important;
  margin-top: auto !important;
}

@media (max-width: 1100px) {
  #locations .locations-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  #locations .locations-list {
    grid-template-columns: 1fr !important;
  }
}

/* Map localization readability fix: project names should stay visible on dark cards */
.map-side-panel .map-location-card strong,
.map-detail-card h4 {
  color: var(--gold2) !important;
}
.map-side-panel .map-location-card small,
.map-detail-card p,
.map-side-panel p {
  color: rgba(226, 235, 244, 0.78) !important;
}
.map-side-panel h3 {
  color: #f5f7fb !important;
}
.map-side-panel .legend-item {
  color: rgba(226, 235, 244, 0.78) !important;
}

/* Multilingual layout stability: prevent long RU/KZ/CN labels from breaking cards */
.project-card,
.sector-card,
.location-item,
.map-location-card,
.contact-form,
.gallery-card {
  min-width: 0 !important;
}

.project-name,
.project-type,
.project-body,
.project-meta-val,
.project-meta-key,
.sector-name,
.sector-desc,
.sector-tag,
.location-name,
.location-country,
.location-desc,
.location-status,
.map-location-card strong,
.map-location-card small,
.map-detail-card h4,
.map-detail-card p,
.form-label,
.form-control,
.form-submit,
.footer-links a {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.project-card {
  min-height: 430px;
}

.project-meta-item {
  min-width: 0;
}

.project-type,
.location-country,
.location-status,
.sector-tag {
  line-height: 1.45;
}

.map-toolbar,
.lang-switcher {
  flex-wrap: wrap;
}

.map-view-btn,
.lang-btn,
.form-submit {
  white-space: normal;
}

@media (max-width: 760px) {
  .project-card {
    min-height: auto;
  }

  .project-type {
    letter-spacing: 0.12em;
  }

  .project-meta {
    grid-template-columns: 1fr !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   Client visual cleanup patch — solid backgrounds, stable cards
   ───────────────────────────────────────────────────────────── */

/* Requested solid dark-blue background: no section gradients in these areas */
.esg-section-block,
#sustainability,
#locations,
.operations-gallery-section {
  background: #061526 !important;
  background-image: none !important;
}

.esg-section-block::before,
#sustainability::before,
#locations::before,
.operations-gallery-section::before {
  display: none !important;
  content: none !important;
  background: none !important;
}

/* Keep the ESG block corporate and readable, but remove decorative gradient layers */
.green-banner {
  background-color: #071725 !important;
  background-image: linear-gradient(rgba(5, 16, 31, 0.76), rgba(5, 16, 31, 0.76)), url("assets/esg-green-mining-facility.jpg") !important;
  border-color: rgba(226, 194, 118, 0.20) !important;
}

/* Locations/map area: solid blue panel, no radial/linear gradient */
#locations .map-wrap,
.map-wrap {
  background: #071725 !important;
  background-image: none !important;
  border-color: rgba(226, 194, 118, 0.18) !important;
}

/* Hero/stat cards: equal layout across EN/RU/KZ/CN */
.hero-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-items: stretch !important;
}

.stat-card {
  min-height: 136px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 24px 26px !important;
}

.stat-num {
  font-size: clamp(17px, 1.35vw, 22px) !important;
  line-height: 1.18 !important;
  margin-bottom: 12px !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.stat-label {
  font-size: clamp(11px, 0.86vw, 13px) !important;
  line-height: 1.45 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

html[lang="ru"] .stat-num,
html[lang="kk"] .stat-num {
  font-size: clamp(15px, 1.15vw, 19px) !important;
}

html[lang="ru"] .stat-label,
html[lang="kk"] .stat-label {
  font-size: clamp(10.5px, 0.78vw, 12px) !important;
}

/* Core Industrial Sectors: make every card the same visual size */
.sectors-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-items: stretch !important;
}

.sector-card {
  min-height: 282px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 30px 28px !important;
}

.sector-icon {
  margin-bottom: 18px !important;
}

.sector-name {
  min-height: 54px !important;
  display: flex !important;
  align-items: flex-end !important;
  font-size: clamp(19px, 1.55vw, 22px) !important;
  line-height: 1.12 !important;
}

.sector-desc {
  flex: 1 1 auto !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.sector-tag {
  margin-top: auto !important;
  padding-top: 18px !important;
  letter-spacing: 0.10em !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

html[lang="ru"] .sector-name,
html[lang="kk"] .sector-name {
  font-size: clamp(17px, 1.3vw, 20px) !important;
}

html[lang="ru"] .sector-desc,
html[lang="kk"] .sector-desc {
  font-size: 12.5px !important;
  line-height: 1.48 !important;
}

html[lang="ru"] .sector-tag,
html[lang="kk"] .sector-tag {
  font-size: 9px !important;
}

/* Nav CTA localization: keep it compact on all languages */
.nav-cta {
  width: 86px !important;
  min-width: 86px !important;
  flex: 0 0 86px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  white-space: nowrap !important;
}

/* Gallery header: remove the boxed frame shown above the photos */
.operations-gallery-section .gallery-group-header {
  margin-bottom: 18px !important;
  padding: 0 0 14px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.operations-gallery-section .gallery-group-header::before,
.operations-gallery-section .gallery-group-header::after {
  display: none !important;
  content: none !important;
}

.operations-gallery-section .gallery-group-count {
  background: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 980px) {
  .sectors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .sector-card {
    min-height: 260px !important;
  }
  .stat-card {
    min-height: 128px !important;
    padding: 20px 18px !important;
  }
}

@media (max-width: 640px) {
  .hero-stats,
  .sectors-grid {
    grid-template-columns: 1fr !important;
  }
  .stat-card,
  .sector-card {
    min-height: auto !important;
  }
  .sector-name {
    min-height: auto !important;
  }
  .nav-cta {
    display: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   Client visual cleanup patch 2 — equal hero stat cards + no frames
   ───────────────────────────────────────────────────────────── */

/* Keep hero statistic boxes the same visual size across EN/RU/KZ/CN */
.hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.82fr) !important;
  align-items: center !important;
}

.hero-stats {
  width: 100% !important;
  max-width: 460px !important;
  justify-self: end !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.stat-card {
  min-height: 132px !important;
  height: 132px !important;
  padding: 22px 24px !important;
  box-sizing: border-box !important;
  justify-content: center !important;
}

.stat-num {
  font-size: clamp(16px, 1.15vw, 18px) !important;
  line-height: 1.18 !important;
  margin-bottom: 12px !important;
}

.stat-label {
  font-size: clamp(11px, 0.82vw, 12px) !important;
  line-height: 1.45 !important;
}

html[lang="ru"] .stat-num,
html[lang="kk"] .stat-num,
html[lang="zh"] .stat-num {
  font-size: clamp(15px, 1.06vw, 17px) !important;
  line-height: 1.20 !important;
}

html[lang="ru"] .stat-label,
html[lang="kk"] .stat-label,
html[lang="zh"] .stat-label {
  font-size: clamp(10.5px, 0.78vw, 11.5px) !important;
  line-height: 1.48 !important;
}

/* Gallery sections: remove all decorative frames around headers, groups, counters and images */
.operations-gallery-section,
.operations-gallery-section .container,
.operations-gallery-section .gallery-showcase,
.operations-gallery-section .gallery-group,
.operations-gallery-section .gallery-group-header,
.operations-gallery-section .gallery-grid-neutral,
.operations-gallery-section .gallery-card,
.operations-gallery-section .gallery-card-featured,
.operations-gallery-section .gallery-group-count {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.operations-gallery-section .gallery-group,
.operations-gallery-section .gallery-group-header,
.operations-gallery-section .gallery-grid-neutral {
  background: transparent !important;
  background-image: none !important;
}

.operations-gallery-section .gallery-group {
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.operations-gallery-section .gallery-group-header {
  margin: 0 0 20px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
}

.operations-gallery-section .gallery-group-count {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: var(--gold2) !important;
}

.operations-gallery-section .gallery-card {
  background: transparent !important;
  border-radius: 22px !important;
}

.operations-gallery-section .gallery-card img {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

/* Keep solid dark-blue background without gradients in gallery and locations */
.operations-gallery-section,
#locations {
  background: #061526 !important;
  background-image: none !important;
}

.operations-gallery-section::before,
.operations-gallery-section::after,
#locations::before,
#locations::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
  }
  .hero-stats {
    justify-self: start !important;
    max-width: 500px !important;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    max-width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .stat-card {
    height: 128px !important;
    min-height: 128px !important;
    padding: 18px 16px !important;
  }
}

@media (max-width: 430px) {
  .hero-stats {
    grid-template-columns: 1fr !important;
  }
  .stat-card {
    height: auto !important;
    min-height: 112px !important;
  }
}


/* ─────────────────────────────────────────────────────────────
   Requested transfer patch — applied to the originally uploaded v3 file
   1) About heading + larger Jiangxi Operating Base image
   2) Investor Trust / Institutional Confidence block
   3) ESG image-backed premium panel
   4) Featured Projects operating-asset cards
   5) Contact section with industrial background
   ───────────────────────────────────────────────────────────── */

/* 1. About / Integrated Industrial Capabilities */
#about {
  background: #061526 !important;
  padding-top: 92px !important;
}
#about .about-grid {
  grid-template-columns: minmax(520px, 1.18fr) minmax(360px, 0.82fr) !important;
  gap: clamp(42px, 5vw, 78px) !important;
  align-items: center !important;
}
#about .about-visual {
  min-height: clamp(500px, 42vw, 670px) !important;
}
#about .about-img-wrap {
  height: clamp(500px, 42vw, 670px) !important;
  min-height: 500px !important;
  border-radius: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
}
#about .about-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: saturate(1.04) contrast(1.05) brightness(0.98) !important;
}
#about .about-badge {
  left: 28px !important;
  right: 28px !important;
  bottom: 28px !important;
  width: auto !important;
  max-width: none !important;
  border-radius: 0 !important;
  padding: 22px 26px !important;
  background: rgba(226, 194, 118, 0.92) !important;
  box-shadow: 0 28px 70px rgba(0,0,0,0.28) !important;
}
#about .about-badge-num {
  font-size: clamp(18px, 1.45vw, 24px) !important;
}
#about .about-badge-label {
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
}
#about .about-content .section-title {
  font-size: clamp(48px, 5.4vw, 76px) !important;
  line-height: 1.04 !important;
}

/* 2. Investor trust section */
.trust-section {
  background: #061526 !important;
  padding: 90px 0 86px !important;
}
.trust-panel {
  padding: clamp(34px, 4vw, 58px) !important;
  border-top: 1px solid rgba(226, 194, 118, 0.32) !important;
  border-bottom: 1px solid rgba(226, 194, 118, 0.22) !important;
  background: #071725 !important;
}
.trust-head {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr) !important;
  gap: clamp(32px, 5vw, 72px) !important;
  align-items: start !important;
  margin-bottom: 48px !important;
}
.trust-title {
  margin-bottom: 0 !important;
}
.trust-desc {
  color: rgba(226,235,244,0.82) !important;
  line-height: 1.75 !important;
  font-size: 16px !important;
  max-width: 560px !important;
}
.trust-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  background: rgba(10, 31, 54, 0.62) !important;
}
.trust-card {
  min-height: 276px !important;
  padding: 34px 30px 30px !important;
  border-left: 1px solid rgba(226, 194, 118, 0.16) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}
.trust-card:first-child {
  border-left: 0 !important;
}
.trust-num {
  color: var(--gold2) !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  font-size: 13px !important;
  margin-bottom: 34px !important;
}
.trust-card h3 {
  color: #f6f0e5 !important;
  font-family: var(--serif) !important;
  font-size: clamp(25px, 2.15vw, 34px) !important;
  line-height: 0.98 !important;
  margin: 0 0 24px !important;
}
.trust-card p {
  color: rgba(226,235,244,0.76) !important;
  font-size: 14px !important;
  line-height: 1.62 !important;
  margin: 0 !important;
}

/* 3. ESG panel exactly as requested: image-backed, premium, not flat */
.esg-section-block,
#sustainability {
  background: #061526 !important;
  padding: 90px 0 96px !important;
}
.green-banner {
  min-height: clamp(520px, 40vw, 680px) !important;
  display: grid !important;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr) !important;
  gap: clamp(42px, 6vw, 82px) !important;
  align-items: center !important;
  padding: clamp(44px, 6vw, 76px) !important;
  border: 1px solid rgba(226,194,118,0.22) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background:
    linear-gradient(90deg, rgba(6, 21, 38, 0.88) 0%, rgba(6, 21, 38, 0.67) 50%, rgba(6, 21, 38, 0.88) 100%),
    url("assets/esg-green-mining-facility.jpg") center / cover no-repeat !important;
}
.green-title {
  font-size: clamp(48px, 5.1vw, 82px) !important;
  line-height: 1.16 !important;
}
.green-desc {
  color: rgba(232,238,246,0.78) !important;
  font-size: 15px !important;
  line-height: 1.85 !important;
  max-width: 650px !important;
}
.green-cert {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin-top: 28px !important;
  background: transparent !important;
  border: 0 !important;
}
.green-cert span {
  min-height: 126px !important;
  padding: 24px 26px !important;
  background: rgba(7, 23, 37, 0.68) !important;
  border: 1px solid rgba(226, 194, 118, 0.15) !important;
  backdrop-filter: blur(8px) !important;
}
.green-cert strong {
  color: var(--gold2) !important;
}

/* 4. Featured projects: operating industrial asset cards */
#projects {
  background: #061526 !important;
  padding-top: 98px !important;
}
#projects .projects-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 28px !important;
  max-width: 1160px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
#projects .project-card {
  min-height: 455px !important;
  padding: 42px 42px 32px !important;
  border-radius: 0 !important;
  border: 1px solid rgba(226,194,118,0.22) !important;
  box-shadow: none !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  overflow: hidden !important;
  isolation: isolate !important;
}
#projects .project-card::before,
#projects .project-card::after {
  display: none !important;
  content: none !important;
}
#projects .project-dexing {
  background:
    linear-gradient(180deg, rgba(6,21,38,0.38) 0%, rgba(6,21,38,0.84) 56%, rgba(6,21,38,0.96) 100%),
    url("assets/project-dexing-granite-yard.jpg") center / cover no-repeat !important;
}
#projects .project-benxi {
  background:
    linear-gradient(180deg, rgba(6,21,38,0.36) 0%, rgba(6,21,38,0.84) 56%, rgba(6,21,38,0.96) 100%),
    url("assets/benxi-iron-mine-mine-entrance.jpg") center / cover no-repeat !important;
}
#projects .project-hezhou {
  background:
    linear-gradient(180deg, rgba(6,21,38,0.36) 0%, rgba(6,21,38,0.84) 56%, rgba(6,21,38,0.96) 100%),
    url("assets/dexing-granite-quarry-quarry-overview.jpg") center / cover no-repeat !important;
}
#projects .project-akshily {
  background:
    linear-gradient(180deg, rgba(6,21,38,0.30) 0%, rgba(6,21,38,0.80) 52%, rgba(6,21,38,0.96) 100%),
    url("assets/akshily-site-exploration.jpg") center / cover no-repeat !important;
}
#projects .project-type {
  width: fit-content !important;
  padding: 8px 12px !important;
  border: 1px solid rgba(226,194,118,0.42) !important;
  background: rgba(6,21,38,0.55) !important;
  color: var(--gold2) !important;
  margin-bottom: 20px !important;
}
#projects .project-name {
  font-size: clamp(36px, 3.7vw, 54px) !important;
  line-height: 0.94 !important;
  margin-bottom: 16px !important;
}
#projects .project-body {
  max-width: 690px !important;
  color: rgba(232,238,246,0.78) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}
#projects .project-meta {
  margin-top: auto !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(226,194,118,0.16) !important;
  background: transparent !important;
}
#projects .project-meta-item {
  background: rgba(7,23,37,0.54) !important;
  padding: 16px 18px !important;
}

/* 5. Contact section background */
#contact {
  background:
    linear-gradient(90deg, rgba(6,21,38,0.96) 0%, rgba(6,21,38,0.82) 50%, rgba(6,21,38,0.95) 100%),
    url("assets/contact-industrial-background.jpg") center / cover no-repeat !important;
  padding: 104px 0 !important;
}
#contact .contact-info > div:first-child,
#contact .contact-links,
#contact .contact-info > div:last-child,
#contact .contact-form {
  background: rgba(7,23,37,0.62) !important;
  border: 1px solid rgba(226,194,118,0.18) !important;
  backdrop-filter: blur(8px) !important;
}
#contact .contact-form {
  padding: 34px !important;
}
#contact .contact-form::before,
#contact .contact-form::after {
  display: none !important;
}

@media (max-width: 1100px) {
  #about .about-grid,
  .trust-head,
  .green-banner,
  #contact .contact-grid {
    grid-template-columns: 1fr !important;
  }
  #about .about-visual,
  #about .about-img-wrap {
    min-height: 420px !important;
    height: 420px !important;
  }
  .trust-grid,
  #projects .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 700px) {
  #about .about-visual,
  #about .about-img-wrap {
    min-height: 320px !important;
    height: 320px !important;
  }
  .trust-panel,
  .green-banner,
  #contact .contact-form {
    padding: 24px !important;
  }
  .trust-grid,
  .green-cert,
  #projects .projects-grid {
    grid-template-columns: 1fr !important;
  }
  .trust-card,
  #projects .project-card {
    min-height: auto !important;
  }
}


/* ─────────────────────────────────────────────────────────────
   About image correction — restore the older premium photo layout,
   but keep the Jiangxi Operating Base image larger.
   ───────────────────────────────────────────────────────────── */
#about .about-grid {
  grid-template-columns: minmax(500px, 1.08fr) minmax(360px, 0.92fr) !important;
  gap: clamp(48px, 5vw, 82px) !important;
  align-items: center !important;
}

#about .about-visual {
  min-height: auto !important;
  position: relative !important;
  transform: translateX(-12px) !important;
  padding-bottom: 34px !important;
}

#about .about-img-wrap {
  height: clamp(460px, 38vw, 590px) !important;
  min-height: 460px !important;
  aspect-ratio: auto !important;
  border-radius: 22px !important;
  border: 1px solid rgba(226, 194, 118, 0.22) !important;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32) !important;
  background: #0b243d !important;
  overflow: hidden !important;
}

#about .about-img-wrap::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(180deg, rgba(6,21,38,0.03), rgba(6,21,38,0.16)),
    linear-gradient(45deg, rgba(226,194,118,0.10), transparent 52%) !important;
  mix-blend-mode: soft-light !important;
}

#about .about-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: saturate(0.96) contrast(1.06) brightness(0.98) !important;
  transform: scale(1.01) !important;
}

#about .about-badge {
  left: auto !important;
  right: -30px !important;
  bottom: 4px !important;
  width: auto !important;
  max-width: min(520px, 86%) !important;
  border-radius: 0 !important;
  padding: 22px 34px !important;
  text-align: center !important;
  background: rgba(226, 194, 118, 0.94) !important;
  color: #061526 !important;
  box-shadow: 0 24px 70px rgba(0,0,0,0.30) !important;
  border: 1px solid rgba(255,255,255,0.26) !important;
}

#about .about-badge-num {
  font-size: clamp(28px, 2.45vw, 40px) !important;
  line-height: 1.02 !important;
  color: #061526 !important;
}

#about .about-badge-label {
  margin-top: 8px !important;
  font-size: 10px !important;
  line-height: 1.25 !important;
  letter-spacing: 0.18em !important;
  color: #061526 !important;
}

@media (max-width: 1100px) {
  #about .about-grid {
    grid-template-columns: 1fr !important;
  }
  #about .about-visual {
    transform: none !important;
    padding-bottom: 40px !important;
  }
  #about .about-img-wrap {
    height: clamp(390px, 58vw, 520px) !important;
    min-height: 390px !important;
  }
  #about .about-badge {
    right: 22px !important;
    bottom: 0 !important;
    max-width: min(500px, calc(100% - 44px)) !important;
  }
}

@media (max-width: 700px) {
  #about .about-img-wrap {
    height: 340px !important;
    min-height: 340px !important;
    border-radius: 18px !important;
  }
  #about .about-badge {
    left: 16px !important;
    right: 16px !important;
    bottom: 0 !important;
    max-width: none !important;
    padding: 18px 20px !important;
  }
  #about .about-badge-num {
    font-size: 26px !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   Institutional Confidence correction
   Restored the older, cleaner trust-card layout shown in the reference:
   smaller bordered cards, single-line heading composition, no oversized block.
   ───────────────────────────────────────────────────────────── */
#trust.trust-section,
.trust-section#trust {
  background: #061526 !important;
  padding: 76px 0 78px !important;
}

#trust .trust-panel {
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding: 30px 0 32px !important;
  border-top: 1px solid rgba(226, 194, 118, 0.24) !important;
  border-bottom: 1px solid rgba(226, 194, 118, 0.18) !important;
  background: transparent !important;
  box-shadow: none !important;
}

#trust .trust-head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr) !important;
  gap: clamp(34px, 5vw, 90px) !important;
  align-items: end !important;
  margin-bottom: 30px !important;
}

#trust .trust-title,
#trust .section-title.trust-title {
  font-size: clamp(34px, 3.25vw, 52px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.035em !important;
  margin: 0 !important;
  white-space: normal !important;
}

#trust .trust-title em {
  display: inline !important;
  margin-left: 0.16em !important;
  color: var(--gold2) !important;
  font-style: italic !important;
}

#trust .trust-desc {
  max-width: 620px !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  color: rgba(226, 235, 244, 0.82) !important;
  margin: 0 !important;
}

#trust .trust-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  background: transparent !important;
  border: 0 !important;
}

#trust .trust-card,
#trust .trust-card:first-child {
  min-height: 190px !important;
  padding: 24px 24px 22px !important;
  border: 1px solid rgba(226, 194, 118, 0.18) !important;
  background: rgba(10, 31, 54, 0.46) !important;
  box-shadow: none !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

#trust .trust-num {
  margin-bottom: 22px !important;
  font-size: 12px !important;
  line-height: 1 !important;
  letter-spacing: 0.18em !important;
  color: var(--gold2) !important;
  font-weight: 800 !important;
}

#trust .trust-card h3 {
  font-size: clamp(22px, 1.75vw, 30px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.025em !important;
  margin: 0 0 16px !important;
  color: #f6f0e5 !important;
  font-family: var(--serif) !important;
}

#trust .trust-card p {
  font-size: 13px !important;
  line-height: 1.52 !important;
  color: rgba(226, 235, 244, 0.76) !important;
  margin: 0 !important;
}

@media (max-width: 1100px) {
  #trust .trust-panel {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  #trust .trust-head {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    align-items: start !important;
  }
  #trust .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  #trust.trust-section,
  .trust-section#trust {
    padding: 56px 0 !important;
  }
  #trust .trust-grid {
    grid-template-columns: 1fr !important;
  }
  #trust .trust-title,
  #trust .section-title.trust-title {
    font-size: clamp(32px, 10vw, 44px) !important;
  }
  #trust .trust-card,
  #trust .trust-card:first-child {
    min-height: auto !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   Location cards premium redesign
   Request: make the project/location cards more attractive while keeping
   the previous compact four-card structure.
   ───────────────────────────────────────────────────────────── */
#locations .locations-list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
  margin-top: 42px !important;
}

#locations .location-item {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  min-height: 430px !important;
  padding: 178px 26px 24px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(226, 194, 118, 0.24) !important;
  background:
    linear-gradient(180deg, rgba(11, 31, 53, 0.72), rgba(7, 21, 37, 0.98)) !important;
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease !important;
}

#locations .location-item::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  height: 158px !important;
  z-index: -2 !important;
  background-size: cover !important;
  background-position: center !important;
  filter: saturate(0.95) contrast(1.05) brightness(0.84) !important;
  transform: scale(1.015) !important;
}

#locations .location-item::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  pointer-events: none !important;
  background:
    linear-gradient(180deg, rgba(5, 17, 31, 0.06) 0%, rgba(5, 17, 31, 0.60) 132px, rgba(5, 17, 31, 0.98) 172px),
    radial-gradient(circle at 18% 10%, rgba(226, 194, 118, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(226, 194, 118, 0.10), transparent 42%) !important;
}

#locations .location-item[data-location-card="akshily"]::before {
  background-image: url('assets/akshily-site-exploration.jpg') !important;
  background-position: center 42% !important;
}

#locations .location-item[data-location-card="dexing"]::before {
  background-image: url('assets/dexing-granite-quarry-aerial-view.jpg') !important;
  background-position: center 45% !important;
}

#locations .location-item[data-location-card="benxi"]::before {
  background-image: url('assets/benxi-iron-mine-mine-entrance.jpg') !important;
  background-position: center 50% !important;
}

#locations .location-item[data-location-card="hezhou"]::before {
  background-image: url('assets/operations-03-integrated-processing-facility.jpg') !important;
  background-position: center 48% !important;
}

#locations .location-item:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(226, 194, 118, 0.46) !important;
  box-shadow:
    0 30px 88px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(226, 194, 118, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

#locations .location-country {
  position: absolute !important;
  top: 18px !important;
  left: 18px !important;
  right: 18px !important;
  width: fit-content !important;
  max-width: calc(100% - 36px) !important;
  margin: 0 !important;
  padding: 8px 12px !important;
  border-radius: 999px !important;
  background: rgba(6, 21, 38, 0.70) !important;
  border: 1px solid rgba(226, 194, 118, 0.30) !important;
  color: var(--gold2) !important;
  font-size: 9px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.22em !important;
  font-weight: 800 !important;
  backdrop-filter: blur(12px) !important;
}

#locations .location-name {
  font-size: clamp(25px, 1.65vw, 32px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.025em !important;
  margin: 0 0 20px !important;
  color: #f7efe2 !important;
  text-wrap: balance !important;
}

#locations .location-desc {
  display: grid !important;
  gap: 0 !important;
  flex: 1 1 auto !important;
  margin: 0 !important;
  color: rgba(226, 235, 244, 0.78) !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

#locations .location-desc span {
  display: block !important;
  padding: 12px 0 !important;
  border-top: 1px solid rgba(226, 235, 244, 0.09) !important;
}

#locations .location-desc strong {
  color: var(--gold2) !important;
  font-weight: 800 !important;
}

#locations .location-status,
#locations .status-active,
#locations .status-planned {
  align-self: flex-start !important;
  margin-top: 18px !important;
  padding: 8px 12px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(226, 194, 118, 0.34) !important;
  background: rgba(226, 194, 118, 0.10) !important;
  color: var(--gold2) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  letter-spacing: 0.18em !important;
  font-weight: 900 !important;
}

#locations .location-item[data-location-card="akshily"] .location-status {
  background: rgba(226, 235, 244, 0.08) !important;
  border-color: rgba(226, 194, 118, 0.42) !important;
}

@media (max-width: 1200px) {
  #locations .locations-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  #locations .location-item {
    min-height: 390px !important;
  }
}

@media (max-width: 680px) {
  #locations .locations-list {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  #locations .location-item {
    min-height: auto !important;
    padding: 160px 22px 22px !important;
    border-radius: 18px !important;
  }
  #locations .location-item::before {
    height: 142px !important;
  }
  #locations .location-name {
    font-size: 26px !important;
  }
}


/* ─────────────────────────────────────────────────────────────
   Final spacing cleanup requested by client
   - remove the visible shade/band between Trust and Sectors
   - bring the two sections slightly closer together
   ───────────────────────────────────────────────────────────── */
body,
main,
section,
#trust.trust-section,
.trust-section#trust,
#industrial-sectors.sectors-section,
#industrial-sectors,
#industrial-sectors .container,
#industrial-sectors .about-directions {
  background: #061526 !important;
  background-image: none !important;
}

#trust.trust-section,
.trust-section#trust {
  padding-top: 66px !important;
  padding-bottom: 38px !important;
  margin-bottom: 0 !important;
}

#trust .trust-panel {
  margin-bottom: 0 !important;
}

#industrial-sectors.sectors-section,
#industrial-sectors {
  padding-top: 34px !important;
  padding-bottom: 78px !important;
  margin-top: 0 !important;
}

#industrial-sectors .about-directions {
  margin-top: 0 !important;
  padding-top: 36px !important;
  padding-bottom: 42px !important;
  border-top-color: rgba(226, 194, 118, 0.18) !important;
  border-bottom-color: rgba(226, 194, 118, 0.14) !important;
  box-shadow: none !important;
}

#industrial-sectors::before,
#industrial-sectors::after,
#industrial-sectors .about-directions::before,
#industrial-sectors .about-directions::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

@media (max-width: 700px) {
  #trust.trust-section,
  .trust-section#trust {
    padding-bottom: 28px !important;
  }
  #industrial-sectors.sectors-section,
  #industrial-sectors {
    padding-top: 28px !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   Responsive typography system update
   Request: make fonts and font sizes consistent and adaptive across
   desktop, laptop, tablet and mobile screens for EN/RU/KZ/CN.
   ───────────────────────────────────────────────────────────── */
:root {
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', Arial, Helvetica, sans-serif;
  --type-nav: clamp(10px, 0.72vw, 12px);
  --type-eyebrow: clamp(9px, 0.62vw, 11px);
  --type-small: clamp(12px, 0.78vw, 13px);
  --type-body: clamp(14px, 0.92vw, 16px);
  --type-body-lg: clamp(15px, 1vw, 18px);
  --type-card-title: clamp(22px, 1.55vw, 30px);
  --type-section-title: clamp(38px, 3.9vw, 62px);
  --type-hero-title: clamp(48px, 6.1vw, 88px);
  --line-tight: 1.04;
  --line-title: 1.08;
  --line-body: 1.62;
  --letter-eyebrow: 0.18em;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body) !important;
  font-size: var(--type-body) !important;
  line-height: var(--line-body) !important;
  font-weight: 400 !important;
  text-rendering: optimizeLegibility;
}

body[lang="zh"] {
  --font-heading: 'Noto Serif SC', 'Songti SC', 'SimSun', serif;
  --font-body: 'Noto Sans SC', 'Microsoft YaHei', Arial, Helvetica, sans-serif;
  --type-card-title: clamp(21px, 1.45vw, 28px);
  --type-section-title: clamp(36px, 3.65vw, 58px);
  --type-hero-title: clamp(44px, 5.7vw, 80px);
}

body[lang="ru"],
body[lang="kk"] {
  --type-card-title: clamp(21px, 1.45vw, 28px);
  --type-section-title: clamp(34px, 3.55vw, 56px);
  --type-hero-title: clamp(44px, 5.45vw, 80px);
}

h1, h2, h3,
.hero-title,
.section-title,
.green-title,
.project-name,
.location-name,
.gallery-group-title,
.gallery-card-title,
.sector-name,
.trust-card h3,
.contact-block-title,
.footer-brand .logo-text {
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  letter-spacing: -0.025em !important;
  text-wrap: balance;
}

p,
.hero-desc,
.section-desc,
.green-desc,
.sector-desc,
.project-body,
.project-loc,
.location-desc,
.trust-desc,
.trust-card p,
.contact-text,
.form-note,
.footer-links a,
.footer-bottom {
  font-family: var(--font-body) !important;
  font-size: var(--type-body) !important;
  line-height: var(--line-body) !important;
  letter-spacing: 0 !important;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.hero-title {
  font-size: var(--type-hero-title) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.04em !important;
}

.section-title,
#trust .trust-title,
#trust .section-title.trust-title,
.green-title {
  font-size: var(--type-section-title) !important;
  line-height: var(--line-title) !important;
  letter-spacing: -0.035em !important;
}

.hero-desc,
.section-desc,
.green-desc,
#trust .trust-desc {
  font-size: var(--type-body-lg) !important;
  line-height: 1.68 !important;
}

.hero-label,
.section-label,
.green-label,
.trust-label,
.gallery-kicker,
.gallery-group-count,
.project-type,
.project-meta-key,
.location-country,
.location-status,
.sector-tag,
.map-detail-kicker,
.map-side-kicker,
.form-label,
.nav-cta,
.lang-btn,
.btn-primary,
.btn-ghost,
.form-submit {
  font-family: var(--font-body) !important;
  font-size: var(--type-eyebrow) !important;
  line-height: 1.22 !important;
  letter-spacing: var(--letter-eyebrow) !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
}

.logo-text {
  font-family: var(--font-heading) !important;
  font-size: clamp(16px, 1.06vw, 18px) !important;
  line-height: 1.08 !important;
}

.logo-sub,
.nav-links a {
  font-family: var(--font-body) !important;
  font-size: var(--type-nav) !important;
  line-height: 1.2 !important;
  letter-spacing: 0.13em !important;
}

.stat-num,
.stat-label,
.project-meta-val,
.map-location-card,
.map-location-status,
.legend-item,
.form-control,
.contact-link,
.usp-list li,
.about-badge-label {
  font-family: var(--font-body) !important;
  font-size: var(--type-small) !important;
  line-height: 1.45 !important;
}

.project-name,
.location-name,
.sector-name,
.gallery-card-title,
#trust .trust-card h3 {
  font-size: var(--type-card-title) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.025em !important;
}

#trust .trust-card p,
.sector-desc,
.project-body,
.location-desc,
.gallery-group-desc,
.gallery-card-title + p,
.form-control,
.contact-text {
  font-size: var(--type-small) !important;
  line-height: 1.58 !important;
}

#trust .trust-grid,
#industrial-sectors .sectors-grid,
#projects .projects-grid,
#locations .locations-list {
  align-items: stretch !important;
}

#trust .trust-card,
.sector-card,
.project-card,
.location-item,
.gallery-card {
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  hyphens: auto !important;
}

.sector-card,
#trust .trust-card {
  min-height: clamp(184px, 15vw, 236px) !important;
}

.project-card {
  min-height: clamp(360px, 31vw, 470px) !important;
}

.gallery-card-title {
  max-width: 96% !important;
}

@media (max-width: 1180px) {
  :root {
    --type-hero-title: clamp(44px, 7vw, 72px);
    --type-section-title: clamp(34px, 4.8vw, 54px);
    --type-card-title: clamp(21px, 2.1vw, 28px);
    --type-body: clamp(14px, 1.18vw, 15.5px);
    --type-body-lg: clamp(15px, 1.35vw, 17px);
  }

  nav {
    padding-left: clamp(20px, 4vw, 42px) !important;
    padding-right: clamp(20px, 4vw, 42px) !important;
  }

  .nav-links {
    gap: clamp(18px, 2.4vw, 28px) !important;
  }
}

@media (max-width: 900px) {
  :root {
    --type-hero-title: clamp(42px, 10vw, 64px);
    --type-section-title: clamp(32px, 7vw, 48px);
    --type-card-title: clamp(20px, 4.2vw, 26px);
    --type-body: 14.5px;
    --type-body-lg: 15.5px;
    --type-small: 12.5px;
    --type-eyebrow: 9px;
    --letter-eyebrow: 0.15em;
  }

  .hero-title,
  .section-title,
  #trust .trust-title,
  .green-title {
    line-height: 1.02 !important;
  }

  .hero-desc,
  .section-desc,
  .green-desc,
  #trust .trust-desc {
    max-width: 680px !important;
  }

  .sector-card,
  #trust .trust-card,
  .project-card,
  .location-item {
    min-height: auto !important;
  }
}

@media (max-width: 640px) {
  :root {
    --type-hero-title: clamp(38px, 12vw, 52px);
    --type-section-title: clamp(30px, 10vw, 40px);
    --type-card-title: clamp(20px, 6.2vw, 24px);
    --type-body: 14px;
    --type-body-lg: 14.5px;
    --type-small: 12px;
    --type-eyebrow: 8.5px;
    --type-nav: 10px;
    --letter-eyebrow: 0.12em;
  }

  body {
    line-height: 1.58 !important;
  }

  .hero-title {
    letter-spacing: -0.035em !important;
  }

  .section-title,
  #trust .trust-title,
  #trust .section-title.trust-title,
  .green-title {
    letter-spacing: -0.03em !important;
  }

  .hero-label,
  .section-label,
  .green-label,
  .trust-label,
  .gallery-kicker,
  .gallery-group-count,
  .project-type,
  .location-country,
  .location-status,
  .sector-tag,
  .form-label,
  .nav-cta,
  .btn-primary,
  .btn-ghost,
  .form-submit {
    line-height: 1.28 !important;
  }

  .btn-primary,
  .btn-ghost,
  .form-submit,
  .nav-cta {
    min-height: 38px !important;
  }

  .project-name,
  .location-name,
  .sector-name,
  .gallery-card-title,
  #trust .trust-card h3 {
    line-height: 1.1 !important;
  }
}

@media (max-width: 380px) {
  :root {
    --type-hero-title: clamp(34px, 11vw, 44px);
    --type-section-title: clamp(28px, 9vw, 36px);
    --type-card-title: 20px;
    --type-body: 13.5px;
    --type-small: 11.5px;
    --type-eyebrow: 8px;
  }

  .hero-title br {
    display: none;
  }
}


/* ─────────────────────────────────────────────────────────────
   Contact form select fix — dark custom dropdowns
   Prevents native browser dropdowns from opening with a white panel.
───────────────────────────────────────────────────────────── */
#contact select.form-control {
  color-scheme: dark;
  background-color: var(--navy2) !important;
  color: var(--white) !important;
  border-color: rgba(201, 168, 76, 0.22) !important;
}

#contact select.form-control option,
#contact select.form-control optgroup {
  background: #102232 !important;
  color: #e8eef6 !important;
}

#contact select.form-control option:checked,
#contact select.form-control option:hover {
  background: #c9a84c !important;
  color: #061526 !important;
}

.custom-select {
  position: relative;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
}

.custom-select select.form-control {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.custom-select__button {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: rgba(13, 29, 44, 0.96);
  border: 1px solid rgba(201, 168, 76, 0.22);
  color: var(--white);
  padding: 12px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.custom-select__button::after {
  content: '';
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-right: 2px solid rgba(232, 238, 246, 0.9);
  border-bottom: 2px solid rgba(232, 238, 246, 0.9);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.custom-select.is-open .custom-select__button,
.custom-select__button:focus-visible {
  border-color: var(--gold);
  background: rgba(14, 34, 52, 0.98);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
  outline: none;
}

.custom-select.is-open .custom-select__button::after {
  transform: rotate(225deg) translate(-2px, -2px);
  border-color: var(--gold);
}

.custom-select__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 40;
  display: none;
  max-height: 250px;
  overflow-y: auto;
  padding: 6px;
  background: #0c1d2c;
  border: 1px solid rgba(201, 168, 76, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.custom-select.is-open .custom-select__menu {
  display: block;
}

.custom-select__option {
  display: block;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  background: transparent;
  color: rgba(232, 238, 246, 0.88);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.custom-select__option:hover,
.custom-select__option:focus-visible {
  background: rgba(201, 168, 76, 0.16);
  color: #ffffff;
  outline: none;
}

.custom-select__option.is-selected {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
}

@media (max-width: 700px) {
  .custom-select__button,
  .custom-select__option {
    font-size: 13px;
  }
}


/* Akshily follow-up fix: make long gallery captions fit better in KZ */
html[lang="kk"] .gallery-grid-operational .gallery-card:nth-child(n + 6) {
  aspect-ratio: 6 / 5;
}

html[lang="kk"] .gallery-grid-operational .gallery-card:nth-child(n + 6) .gallery-overlay.compact {
  padding: 16px 17px;
}

html[lang="kk"] .gallery-grid-operational .gallery-card:nth-child(n + 6) .gallery-kicker {
  font-size: 8px;
  letter-spacing: 0.09em;
  padding: 5px 8px;
  margin-bottom: 7px;
}

html[lang="kk"] .gallery-grid-operational .gallery-card:nth-child(n + 6) .gallery-card-title {
  font-size: 13px;
  line-height: 1.22;
  max-width: 100%;
}

@media (max-width: 1100px) {
  html[lang="kk"] .gallery-grid-operational .gallery-card:nth-child(n + 6) {
    aspect-ratio: 4 / 3;
  }

  html[lang="kk"] .gallery-grid-operational .gallery-card:nth-child(n + 6) .gallery-card-title {
    font-size: 14px;
  }
}

@media (max-width: 700px) {
  html[lang="kk"] .gallery-grid-operational .gallery-card:nth-child(n + 6) .gallery-card-title {
    font-size: 15px;
    line-height: 1.24;
  }
}

/* Launch readiness: stronger accessibility and responsive interaction states */
:focus-visible {
  outline: 2px solid var(--gold2, #e2c276);
  outline-offset: 3px;
}

.form-control:focus-visible,
.custom-select__button:focus-visible,
.form-submit:focus-visible,
.nav-cta:focus-visible,
.lang-btn:focus-visible,
.nav-hamburger:focus-visible {
  box-shadow: 0 0 0 3px rgba(226, 194, 118, 0.28);
}

img {
  max-width: 100%;
  height: auto;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 640px) {
  .contact-form .form-control,
  .custom-select__button,
  .form-submit {
    min-height: 46px;
  }
}
