/* ── Focus ── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── Eyebrow ── */
.eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

/* ── Section heading ── */
.section-heading {
  font-size: 66px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  padding: 28px 0;
  transition: background 0.4s var(--ease),
              padding 0.4s var(--ease),
              border-bottom 0.4s var(--ease),
              backdrop-filter 0.4s var(--ease);
}

.nav.is-scrolled {
  background: rgb(19 31 54);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 24px 0;
  /*border-bottom: 1px solid var(--wire);*/
}

.nav__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.nav__cta {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 11px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  border-radius: 100px;
  background: none;
  transition: background 0.32s var(--spring),
              border-color 0.32s var(--spring),
              color 0.32s var(--spring),
              transform 0.32s var(--spring);
}

.nav__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}

.nav__cta:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .nav__logo-img {
    height: 34px;
  }
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-bg.png');
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    112deg,
    rgba(10, 26, 47, 0.92) 0%,
    rgba(10, 26, 47, 0.76) 48%,
    rgba(10, 26, 47, 0.40) 100%
  );
}

.hero__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40vh;
    background: linear-gradient(to top, #0b1a2f, transparent);
    pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 180px 0 104px;
}
.hero__content .hero_header {
    margin-bottom: 52px;
    width: 75%;
}

.hero__title {
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.028em;
  color: var(--white);
  margin-bottom: 30px;
}

.hero__lead {
  width: 90%;
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.88;
  color: var(--gray-1);
}

/* ── About ── */
.about {
    /*border-top: 1px solid var(--wire);*/
    padding: 150px 0 0;
    background: #0F192D;
    z-index: 2;
    display: block;
    position: relative;
}

.about__intro {
  /*margin-top: 24px;*/
  font-size: var(--text-base);
  line-height: 1.88;
  color: var(--gray-2);
}

.about__right p {
  font-size: var(--text-base);
  line-height: 1.88;
  color: var(--gray-2);
}

.about__tagline {
  font-weight: 600;
  color: var(--white);
}

.about__tile {
  overflow: hidden;
}

.about__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.82);
  transition: filter 0.55s var(--ease), transform 0.55s var(--ease);
}

.about__tile:hover img {
  filter: saturate(1) brightness(0.95);
  transform: scale(1.04);
}

/* ── Subsidiaries ── */
.subsidiaries {
    /* border-top: 1px solid var(--wire); */
    padding: 150px 0;
}

.subsidiaries__header {
  margin-bottom: 52px;
  width: 70%;
}

.subsidiary::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}

.subsidiary:hover::before {
  transform: scaleY(1);
}

.sub__lhs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.sub__logowrap {
  height: 44px;
  display: flex;
  align-items: center;
}

.sub__logo {
  max-height: 44px;
  width: auto;
  display: block;
}

.sub__btn {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 11px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.38s var(--ease), color 0.38s var(--ease);
}

.sub__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.38s var(--ease);
  z-index: 0;
}

.sub__btn:hover {
  border-color: var(--gold);
  color: var(--navy);
}

.sub__btn:hover::after {
  transform: translateX(0);
}

.sub__btn-label {
  position: relative;
  z-index: 1;
}

.sub__name {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}

.sub__tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.sub__desc {
  font-size: 16px;
  line-height: 1.88;
  color: var(--gray-2);
  max-width: 580px;
}

/* ── Values ── */
.values {
  /*border-top: 1px solid var(--wire);*/
  padding: 120px 0 150px;
}

.values__mission {
  margin-top: 22px;
  font-size: var(--text-base);
  line-height: 1.88;
  color: var(--gray-2);
}

.val-card {
  padding: 40px 32px;
  border: 1px solid var(--wire);
  border-radius: 3px;
  text-align: left;
  background: #0F192D;
    z-index: 4;
  transition: border-color 0.35s var(--ease),
              background 0.35s var(--ease),
              transform 0.38s var(--spring);
}

.val-card:hover {
    border-color: 0;
    background: rgba(201, 162, 75, 0.04);
    background-color: #0F192D;
    transform: translateY(-7px);
    z-index: 4;
}

.val-card__icon {
    width: 64px;
    height: 64px;
    margin: 24px 24px 24px 0;
}

.val-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.35s var(--ease);
}

.val-card:hover .val-card__icon img {
  filter: drop-shadow(0 0 8px rgba(201, 162, 75, 0.45));
}

.val-card__title {
    font-size: 26px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.val-card__text {
  font-size: 16px;
  line-height: 1.82;
  color: var(--gray-2);
}

/* ── Contact ── */
.contact {
    /* border-top: 1px solid var(--wire); */
    padding: 150px 0;
    background: #1E1E1E;
    z-index: 5;
    position: relative;
  }

.contact__heading {
  font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--gold);
  letter-spacing: -0.028em;
  margin-bottom: 28px;
}

.contact__text {
    width: 80%;
    font-size: var(--text-base);
    line-height: 1.88;
    color: var(--gray-2);
}

.contact__email {
    color: var(--gold);
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.contact__email::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.contact__email:hover::after {
  width: 100%;
}

.contact__location {
  font-size: 16px;
  color: var(--gray-2);
}

/* ── Footer ── */
.footer {
    border-top: 1px solid var(--wire);
    padding: 24px 0;
    background: #1b1b1b;
    z-index: 5;
    /* position: relative; */
}

.footer__left {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #828282;
  font-weight: 400;
}

.footer__right {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #828282;
  font-weight: 600;
}


@media (max-width: 768px) {


  /*OTHER STYLES*/

.nav__cta {
    letter-spacing: 0.1em;
    padding: 11px 14px;
    background: none;
    transition: background 0.32s var(--spring), border-color 0.32s var(--spring), color 0.32s var(--spring), transform 0.32s var(--spring);
}
.background_line:last-child {
  display: none;
}
.background_lines {
    grid-column-gap: 28%;
    grid-row-gap: 8.33%;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 180px 0 50px;
}

.hero__content .hero_header {
    margin-bottom: 52px;
    width: 100%;
}
.hero__title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -0.028em;
    color: var(--white);
    margin-bottom: 30px;
}
.hero__lead {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-1);
}
.section-heading {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--white);
}
.subsidiaries__header {
    margin-bottom: 52px;
    width: 100%;
}
.subsidiaries {
    /* border-top: 1px solid var(--wire); */
    padding: 150px 0 80px;
}
.subsidiary {
    gap: 60px;
    align-items: center;
    padding: 60px 30px;
    z-index: 3;
}
.contact__text {
    width: 100%;
    font-size: var(--text-base);
    line-height: 1.88;
    color: var(--gray-2);
}
.contact {
    /* border-top: 1px solid var(--wire); */
    padding: 130px 0;
    background: #1E1E1E;
    z-index: 5;
    position: relative;
}
.values {
    /* border-top: 1px solid var(--wire); */
    padding: 120px 0 120px;
}
    .contact__grid {
        gap: 10px;
    }
.contact__email {
    color: var(--gold);
    font-size: 22px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    position: relative;
}


}
