:root {
  --black: #111111;
  --gray-bg: #f2f2f2;
  --text: #222222;
  --muted: #5c5c5c;
  --white: #ffffff;
  --gold-1:#b8862f;
  --gold-2:#e8b73f;
  --ink:#141210;
  --page-bg:#ffffff;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.about-hero {
  position: relative;
  min-height: clamp(340px, 48vw, 500px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0e0d0b;
}
.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 7, 0.92) 0%, rgba(10, 9, 7, 0.78) 32%, rgba(10, 9, 7, 0.35) 55%, rgba(10, 9, 7, 0.05) 72%),
    linear-gradient(0deg, rgba(10, 9, 7, 0.35) 0%, transparent 40%);
  z-index: 1;
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 40px) clamp(20px, 4vw, 20px);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 clamp(28px, 4vw, 40px) 0;
}
.breadcrumb a {
  color: var(--gold-2);
  text-decoration: none;
}
.breadcrumb span {
  color: #fff;
}
.breadcrumb .sep {
  color: #8a857a;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 18px 0;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-2);
}
.about-hero-inner h1 {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.08;
  margin: 0;
}
.about-hero-inner h1 .white-line {
  display: block;
  color: #fff;
}
.about-hero-inner h1 .gold-line {
  display: block;
  color: var(--gold-2);
}
.accent-line {
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  margin: 20px 0 22px 0;
}
.about-hero-inner p {
  max-width: 420px;
  font-size: clamp(14px, 1.4vw, 15.5px);
  line-height: 1.7;
  color: var(--white);
  margin: 0;
}

@media (max-width: 640px) {
  .about-hero {
    min-height: 420px;
  }
  .about-hero::after {
    background:
      linear-gradient(180deg, rgba(10, 9, 7, 0.5) 0%, rgba(10, 9, 7, 0.9) 65%, rgba(10, 9, 7, 0.96) 100%);
  }
  .about-hero-inner {
    padding-top: clamp(40px, 10vw, 60px);
    padding-bottom: 30px;
  }
  .about-hero-inner p {
    max-width: 100%;
  }
}


.company-overview{padding:20px 50px; background:var(--white);}
.overview-inner{max-width:1300px; margin:0 auto; display:flex; gap:60px; align-items:flex-start;}
.overview-text{flex:1.4;}
.overview-text h2{font-size:22px; font-weight:700; margin-bottom:14px;}
.overview-text .rule{width:36px; height:2px; background:#c9972e; margin-bottom:24px;}
.overview-text p{font-size:14.5px; color:var(--muted); margin-bottom:18px;}
.overview-text p:last-child{margin-bottom:0;}

.overview-card{flex:1; background:var(--white); border:1px solid #c9972e; padding:32px; border-radius: 10px;}
.overview-card .card-logo{display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:28px;}
.overview-card .card-logo .mark{width:38px; height:38px; border:2px solid var(--black); border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:16px;}
.overview-card .card-logo .txt{text-align:left; line-height:1.15;}
.overview-card .card-logo .txt .n{font-size:22px; font-weight:700;}
.overview-card .card-logo .txt .s{font-size:8px; letter-spacing:3px; color:var(--muted);}

.map-placeholder{background-color:#fafafa; background-image:radial-gradient(#d9d9d9 1px, transparent 1px); background-size:11px 11px; position:relative; margin-bottom:24px; border-radius:2px;}
.map-placeholder .pin{position:absolute; width:16px; height:16px;}
.map-placeholder .pin.p1{top:38%; left:26%;}
.map-placeholder .pin.p2{top:35%; left:70%;}

.overview-card h4{font-size:14.5px; font-weight:700; margin-bottom:8px;}
.overview-card p{font-size:13px; color:var(--muted); margin-bottom:16px; width: 300px;}
.overview-card .flags{display:flex; gap:8px;}
.overview-card .flags svg{width:24px; height:16px; border-radius:2px;}

@media (max-width: 1024px){
  .company-overview{padding:60px 30px;}
  .overview-inner{gap:40px;}
}
@media (max-width: 860px){
  .company-overview{padding:50px 20px;}
  .overview-inner{flex-direction:column; gap:36px;}
  .overview-card{width:100%;}
}


.pmv-section{padding:0 50px 20px 50px;}
.pmv-inner{
  max-width:1320px;
  margin:0 auto;
  display:flex;
  border:1px solid #c9972e;
  background:var(--white);
  border-radius: 10px;
}
.pmv-card{
  flex:1;
  padding:20px;
  text-align:center;
  border-right:1px solid #c9972e;
}
.pmv-card:last-child{border-right:none;}

.pmv-icon{
  width:60px; height:60px;
  background:var(--black);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px auto;
}
.pmv-icon svg{width:40px; height:40px;}

.pmv-card h3{
  font-size:16px;
  font-weight:700;
  margin-bottom:12px;
}
.pmv-rule{
  width:30px;
  height:2px;
  background:#c9973e;
  margin:0 auto 18px auto;
}
.pmv-card p{
  font-size:13.5px;
  color:var(--muted);
  max-width:350px;
  margin:0 auto;
  line-height:1.7;
}

@media (max-width: 1024px){
  .pmv-section{padding:0 30px 60px 30px;}
}
@media (max-width: 860px){
  .pmv-section{padding:0 20px 50px 20px;}
  .pmv-inner{flex-direction:column;}
  .pmv-card{border-right:none; border-bottom:1px solid #e2e2e2;}
  .pmv-card:last-child{border-bottom:none;}
}



.core-values-section{padding:0 50px 20px 50px;}
.core-values-inner{
  max-width:1300px;
  margin:0 auto;
  background:#f7f7f7;
  padding:20px;
  text-align:center;
  border-radius: 10px;
}
.core-values-inner h2{
  font-size:25px;
  font-weight:700;
  margin-bottom:12px;
}
.cv-rule{
  width:36px;
  height:2px;
  background:#c9973e;
  margin:0 auto 25px auto;
}

.cv-row{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:0;
}
.cv-item{
  flex:1;
  display:flex;
  align-items:flex-start;
  gap:16px;
  text-align:left;
  max-width:340px;
}
.cv-divider{
  width:1px;
  align-self:stretch;
  background:#c9973e;
  margin:4px 30px;
}

.cv-icon{
  width:60px; height:60px;
  background:var(--black);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.cv-icon svg{width:45px; height:45px;}

.cv-text h4{
  font-size:15px;
  font-weight:700;
  margin-bottom:6px;
}
.cv-text p{
  font-size:13px;
  color:var(--muted);
  line-height:1.6;
}

@media (max-width: 1024px){
  .core-values-section{padding:0 30px 60px 30px;}
  .core-values-inner{padding:40px 30px;}
}
@media (max-width: 860px){
  .core-values-section{padding:0 20px 50px 20px;}
  .core-values-inner{padding:35px 20px;}
  .cv-row{flex-direction:column; gap:26px; align-items:stretch;}
  .cv-item{max-width:100%;}
  .cv-divider{display:none;}
}



.leadership-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 20px) clamp(16px, 4vw, 20px);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 4vw, 50px);
  align-items: center;
}
.leadership-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-1);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}
.leadership-eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-1);
}

.leadership-text h2 {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
  font-weight: 700;
  color: #111;
  margin: 0 0 18px 0;
}
.leadership-text p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #000;
  max-width: 440px;
  margin: 0 0 26px 0;
}
.leadership-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--gold-2);
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--ink);
  cursor: pointer;
  transition: transform .15s ease, background .2s ease;
}
.leadership-btn:hover {
  transform: translateY(-1px);
  background: #221d17;
}
.leadership-btn svg {
  width: 15px;
  height: 15px;
  color: var(--gold-2);
}
.leadership-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #0e0d0b;
  /* fallback while image loads */
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}
.leadership-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 820px) {
  .leadership-section {
    grid-template-columns: 1fr;
  }
}