/* ============================================================
   ABOUT PAGE — SWISS BENTO REDESIGN
   ============================================================ */

/* ---- ABOUT HERO ---- */
.about-hero {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 550px;
  background-image: url("/cat-commercial.png");
  /* Exact exhibition stall from user mockup */
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  /* Dark screen overlay to pop white text */
  z-index: 1;
}

.about-hero-title {
  position: relative;
  z-index: 2;
  font-size: clamp(6rem, 15vw, 18rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;

  color: #ffffff;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ---- INTRO SECTION (CENTERED profile text) ---- */
.about-intro-new {
  padding: 100px 0;
  background: var(--white);
}

.about-intro-lead-text {
  font-size: 35px;
  line-height: 1.6;
  color: var(--text-primary);
  font-weight: 400;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-intro-lead-text strong {
  font-weight: 800;
  color: var(--text-primary);
}

/* ---- VALUE SECTION (DELIVERING VALUE stacked text) ---- */
.about-value-new {
  padding: 100px 0 120px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.about-value-grid-new {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  /* 2-column bento structure */
  gap: 80px;
  align-items: flex-start;
}

.about-value-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 350px;
}

.about-value-stacked-title {
  font-size: 53px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-transform: none;
  margin: 0;
}

.about-value-btn-wrap {
  margin-top: 40px;
}

.btn-capsule-outline {
  display: inline-block;
  padding: 20px 48px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand-red);
  background: transparent;
  border: 1px solid rgba(230, 57, 70, 0.4);
  border-radius: 50px;
  text-decoration: none;

  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-capsule-outline:hover {
  background: var(--brand-red);
  color: #ffffff;
  border-color: var(--brand-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
}

.about-value-right-desc {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-value-right-desc p {
  font-size: 35px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* ---- IN FOCUS SECTION (ABOUT PAGE) ---- */
.about-infocus-section {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  height: 100vh;
  /* CHANGED FROM 60vh */
  min-height: 480px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: flex-end;
  /* Push content to bottom */
  padding: 80px 64px;
  /* Matches layout margins exactly */
}

.about-infocus-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.about-infocus-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-infocus-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.2) 60%,
      rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}

.about-infocus-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-infocus-video-note {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ff3333;
  /* High-contrast red from mockup */

  margin: 0 0 16px 0;
  letter-spacing: 0.05em;
}

.about-infocus-title {
  font-size: 35px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 24px 0;
  letter-spacing: -0.01em;
}

.about-infocus-btn-wrap {
  display: flex;
}

.btn-infocus-pill-white {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  /* White outline text */
  font-size: 0.85rem;
  font-weight: 800;
  padding: 12px 32px;
  border-radius: 50px;

  letter-spacing: 0.1em;
  border: 1px solid #ffffff;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-infocus-pill-white:hover {
  background: #ffffff;
  color: var(--brand-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* ---- STATS BAR ---- */
.about-stats {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #f5c469;
  /* Solid gold-yellow background from user mockup */
  color: #ffffff;
  /* Explicit white */
  padding: 60px 0;
  border-top: none;
  border-bottom: none;
  position: relative;
  z-index: 10;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 1 !important;
  /* Force visibility */
  transform: none !important;
}

.stat-num {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff !important;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: lowercase;
  /* Lowercase labels as requested */
  letter-spacing: 0.02em;
  color: #ffffff !important;
}

/* ---- PRINCIPAL SECTION ---- */
.principal-section {
  padding: 120px 0;
  background: var(--white);
}

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

.principal-img {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #ffffff;
}

.principal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ---- TEAM GRID ---- */
.about-team {
  padding: 120px 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.team-grid-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
}

.team-card-about {
  display: flex;
  flex-direction: column;
}

.team-img-about {
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 24px;
  background: #ffffff;
}

.team-img-about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- AWARDS LIST SECTION ---- */
.about-awards-list-section {
  padding: 120px 0;
  background: var(--white);
}

.awards-list-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid #e2e2e2;
  margin-top: 20px;
}

.award-list-row {
  display: flex;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid #e2e2e2;
  transition: background-color 0.2s ease;
}

.award-year {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-red);
  /* Sleek red for year */
  width: 100px;
  flex-shrink: 0;
}

.award-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.01em;

  flex: 1;
  /* Stretch to occupy middle area */
  padding-right: 32px;
}

.award-body {
  font-size: 0.8rem;
  font-weight: 600;
  color: #999;
  letter-spacing: 0.05em;

  text-align: right;
  padding-right: 32px;
  white-space: nowrap;
}

.award-star {
  font-size: 0.9rem;
  color: #1a1a1a;
  width: 20px;
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

/* ---- CAREER SECTION ---- */
.about-career {
  padding: 120px 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.career-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.career-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

/* ---- QUOTE SECTION ---- */
.about-quote-section {
  padding: 120px 20px;
  background: #81be8a;
  /* Sage Green from user mockup */
  text-align: center;
  color: #ffffff;
}

.about-quote-body {
  font-family: var(--sans);
  font-size: 53px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  max-width: 1300px;
  margin: 0 auto 32px;
  letter-spacing: -0.01em;

}

.about-quote-author {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.9;
  letter-spacing: 0.1em;

}

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
  .principal-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .principal-img {
    max-width: 500px;
  }
}

@media (max-width: 1100px) {

  .about-intro-grid,
  .about-value-grid,
  .career-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-value-grid-new {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-value-left {
    min-height: auto;
  }

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

  .about-stats-grid {
    grid-template-columns: repeat(2, 2fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .team-grid-four {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-stats .stat-item {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15) !important;
  }

  .about-stats .stat-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none !important;
  }

  .about-hero {
    height: 50vh;
    min-height: 350px;
  }

  .about-hero-title {
    font-size: clamp(3.5rem, 12vw, 6rem);
  }

  .about-intro-new {
    padding: 60px 20px;
  }

  .about-intro-lead-text {
    font-size: 24px;
  }

  .about-value-new {
    padding: 60px 20px;
  }

  .about-value-stacked-title {
    font-size: 32px;
  }

  .about-value-right-desc p {
    font-size: 24px;
  }

  .about-infocus-section {
    padding: 40px 20px;
    height: auto;
    min-height: 400px;
  }

  .about-infocus-title {
    font-size: 28px;
  }

  .btn-infocus-pill-white {
    display: inline-block;
    white-space: normal;
    word-wrap: break-word;
    max-width: 85%;
    height: auto;
    text-align: left;
    line-height: 1.4;
    padding: 16px 32px;
    font-size: 1rem;
  }

  .principal-section {
    padding: 60px 20px;
  }

  .principal-img {
    max-width: 100%;
  }

  .about-team {
    padding: 60px 20px;
  }

  .about-awards-list-section {
    padding: 60px 20px;
  }

  .about-career {
    padding: 60px 20px;
  }

  .about-quote-section {
    padding: 60px 20px;
  }

  .about-quote-body {
    font-size: 32px;
  }

  .award-list-row {
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 0;
  }

  .award-year {
    width: 100%;
    margin-bottom: 4px;
  }

  .award-title {
    width: 100%;
    flex: none;
    padding-right: 0;
    font-size: 0.95rem;
  }

  .award-body {
    width: calc(100% - 30px);
    text-align: left;
    padding-right: 0;
    font-size: 0.75rem;
  }

  .award-star {
    width: 20px;
  }

  .desktop-only {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .about-intro-lead-text {
    font-size: 20px;
  }

  .about-value-stacked-title {
    font-size: 35px;
  }

  .about-value-right-desc p {
    font-size: 20px;
  }

  .about-infocus-title {
    font-size: 24px;
  }

  .btn-infocus-pill-white {
    display: inline-block;
    white-space: normal;
    word-wrap: break-word;
    max-width: 85%;
    height: auto;
    text-align: left;
    line-height: 1.4;
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .about-quote-body {
    font-size: 26px;
  }
}