/*
------------------------------------------------
About Hero Section
------------------------------------------------
*/

.hs-about-hero {
  padding: 100px 0;
  background: #111;
}

.hs-about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hs-about-hero h1 {
  margin-bottom: 30px;
  line-height: 1.2;
}

.hs-about-hero-lead {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hs-about-hero-content p {
  margin-bottom: 25px;
}

.hs-about-hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

/*
------------------------------------------------
Hero Image
------------------------------------------------
*/

.hs-about-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hs-about-hero-image img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
}

/*
------------------------------------------------
Accessibility
------------------------------------------------
*/

.hs-about-hero a:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 3px;
}

/*
------------------------------------------------
About Expertise Section
------------------------------------------------
*/

.hs-about-expertise {
  padding: 100px 0;
  background: rgba(75, 0, 0, 0.25);
}

.hs-about-expertise-intro {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.hs-about-expertise h2 {
  margin-bottom: 30px;
}

.hs-about-expertise-lead {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/*
------------------------------------------------
Expertise Grid
------------------------------------------------
*/

.hs-about-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/*
------------------------------------------------
Expertise Cards
------------------------------------------------
*/

.hs-about-expertise-card {
  padding: 35px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid #333;

  border-radius: 6px;

  transition: all 0.2s ease;
}

.hs-about-expertise-card:hover {
  transform: translateY(-3px);

  border-color: rgba(255, 215, 0, 0.25);
}

/*
------------------------------------------------
Card Content
------------------------------------------------
*/

.hs-about-expertise-card h3 {
  margin-bottom: 20px;

  font-size: 1.15rem;

  line-height: 1.4;

  color: var(--hs-gold);
}

.hs-about-expertise-card p {
  margin: 0;

  line-height: 1.7;

  opacity: 0.95;
}

.hs-about-expertise-card::before {
  content: "";

  display: block;

  width: 50px;

  height: 2px;

  margin-bottom: 20px;

  background: linear-gradient(to right, var(--hs-gold), rgba(75, 0, 0, 0.5));
}

/*
------------------------------------------------
About Philosophy Section
------------------------------------------------
*/

.hs-about-philosophy {
  padding: 100px 0;
  background: #111;
}

.hs-about-philosophy-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}

/*
------------------------------------------------
Left Content
------------------------------------------------
*/

.hs-about-philosophy h2 {
  margin-bottom: 30px;
  line-height: 1.2;
}

.hs-about-philosophy-lead {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hs-about-philosophy-content p {
  margin-bottom: 25px;
}

/*
------------------------------------------------
Right Side Principles
------------------------------------------------
*/

.hs-about-philosophy-principles h3 {
  margin-bottom: 30px;
  color: var(--hs-gold);
}

.hs-about-philosophy-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

/*
------------------------------------------------
Principle Items
------------------------------------------------
*/

.hs-about-philosophy-list li {
  position: relative;

  padding: 12px 0;

  background: rgba(255, 255, 255, 0.025);

  transition: all 0.2s ease;
}

.hs-about-philosophy-list li:hover {
  transform: translateX(3px);
}

/*
------------------------------------------------
Gradient Underline
------------------------------------------------
*/

.hs-about-philosophy-list li::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 70%;

  height: 1px;

  background: linear-gradient(to right, var(--hs-gold), rgba(75, 0, 0, 0.5));
}

/*
------------------------------------------------
Accessibility
------------------------------------------------
*/

.hs-about-philosophy a:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 3px;
}

/*
------------------------------------------------
Why Highland Section
------------------------------------------------
*/

.hs-about-why {
  padding: 100px 0;
  background: rgba(75, 0, 0, 0.25);
}

.hs-about-why-intro {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.hs-about-why h2 {
  margin-bottom: 30px;
}

.hs-about-why-lead {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/*
------------------------------------------------
Why Highland Grid
------------------------------------------------
*/

.hs-about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/*
------------------------------------------------
Why Highland Cards
------------------------------------------------
*/

.hs-about-why-card {
  position: relative;

  padding: 30px;

  background: rgba(255, 255, 255, 0.025);

  border: 1px solid #333;

  border-radius: 6px;

  transition: all 0.2s ease;
}

.hs-about-why-card:hover {
  transform: translateY(-2px);

  border-color: rgba(255, 215, 0, 0.2);
}

/*
------------------------------------------------
Subtle Accent Line
------------------------------------------------
*/

.hs-about-why-card::before {
  content: "";

  display: block;

  width: 45px;

  height: 2px;

  margin-bottom: 18px;

  background: linear-gradient(to right, var(--hs-gold), rgba(75, 0, 0, 0.5));
}

/*
------------------------------------------------
Card Content
------------------------------------------------
*/

.hs-about-why-card h3 {
  margin-bottom: 18px;

  font-size: 1.05rem;

  line-height: 1.4;

  color: var(--hs-gold);
}

.hs-about-why-card p {
  margin: 0;

  line-height: 1.7;

  opacity: 0.95;
}

/*
------------------------------------------------
About CTA
------------------------------------------------
*/

.hs-about-cta {
  padding: 120px 0;

  background: #111;

  border-top: 1px solid #333;
}

.hs-about-cta-inner {
  max-width: 900px;

  margin: 0 auto;

  text-align: center;
}

.hs-about-cta h2 {
  margin-bottom: 35px;
}

.hs-about-cta-lead {
  font-size: 1.2rem;

  margin-bottom: 30px;
}

.hs-about-cta p {
  margin-bottom: 25px;
}

.hs-about-cta-actions {
  margin: 50px 0;
}

.hs-about-cta-note {
  font-size: 0.95rem;

  opacity: 0.85;

  max-width: 700px;

  margin: 0 auto;
}

/*
------------------------------------------------
Mobile
------------------------------------------------
*/

@media (max-width: 768px) {
  .hs-about-cta {
    padding: 80px 0;
  }
}

/*
------------------------------------------------
Tablet
------------------------------------------------
*/

@media (max-width: 1100px) {
  .hs-about-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*
------------------------------------------------
Mobile
------------------------------------------------
*/

@media (max-width: 768px) {
  .hs-about-why {
    padding: 70px 0;
  }

  .hs-about-why-grid {
    grid-template-columns: 1fr;
  }

  .hs-about-why-intro {
    margin-bottom: 50px;
  }

  .hs-about-why-card {
    padding: 28px;
  }
}

/*
------------------------------------------------
Tablet
------------------------------------------------
*/

@media (max-width: 1000px) {
  .hs-about-philosophy-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/*
------------------------------------------------
Mobile
------------------------------------------------
*/

@media (max-width: 768px) {
  .hs-about-philosophy {
    padding: 70px 0;
  }

  .hs-about-philosophy-list li {
    padding: 10px 0;
  }
}

/*
------------------------------------------------
Tablet
------------------------------------------------
*/

@media (max-width: 1100px) {
  .hs-about-expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*
------------------------------------------------
Mobile
------------------------------------------------
*/

@media (max-width: 768px) {
  .hs-about-expertise {
    padding: 70px 0;
  }

  .hs-about-expertise-grid {
    grid-template-columns: 1fr;
  }

  .hs-about-expertise-intro {
    margin-bottom: 50px;
  }

  .hs-about-expertise-card {
    padding: 30px;
  }
}

/*
------------------------------------------------
Tablet
------------------------------------------------
*/

@media (max-width: 1000px) {
  .hs-about-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/*
------------------------------------------------
Mobile
------------------------------------------------
*/

@media (max-width: 768px) {
  .hs-about-hero {
    padding: 70px 0;
  }

  .hs-about-hero-actions {
    flex-direction: column;
  }

  .hs-about-hero-image {
    order: -1;
  }
}
