/* ============================================================ */
/* ABOUT PAGE SPECIFIC STYLES                                   */
/* ============================================================ */

/* Base reset - page specific */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

/* ============================================================ */
/* HERO - RESPONSIVE FIXED */
/* ============================================================ */
.hero-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 60vh;
  min-height: 400px;
  max-height: 820px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

@media (min-width: 640px) {
  .hero-full {
    height: 70vh;
    min-height: 480px;
  }
}

@media (min-width: 768px) {
  .hero-full {
    height: 80vh;
    min-height: 520px;
  }
}

@media (min-width: 1024px) {
  .hero-full {
    height: 88vh;
    min-height: 560px;
  }
}

.hero-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: contrast(1.08) saturate(1.04) brightness(0.98);
}

.hero-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(11, 19, 43, 0.12) 0%, rgba(11, 19, 43, 0.02) 70%, rgba(11, 19, 43, 0) 100%);
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.30) 40%,
      rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

/* faded background text - RESPONSIVE */
.bg-text-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  overflow: hidden;
}

.bg-text-container .faded {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: rgba(19, 24, 53, 0.025);
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.82;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  transform: translateY(-6%);
}

@media (min-width: 768px) {
  .bg-text-container .faded {
    font-size: clamp(4rem, 16vw, 12rem);
  }
}

@media (min-width: 1024px) {
  .bg-text-container .faded {
    font-size: clamp(5rem, 22vw, 15rem);
  }
}

/* ============================================================ */
/* ABOUT GRID - RESPONSIVE */
/* ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.8rem 5.5rem;
    max-width: 820px;
    text-align: left;
  }
}

/* ============================================================ */
/* FEATURE CARDS - RESPONSIVE */
/* ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(19, 24, 53, .08);
}

@media (min-width: 768px) {
  .feature-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(19, 24, 53, .08);
  position: relative;
  transition: .35s ease;
  background: #fff;
}

@media (min-width: 768px) {
  .feature-item {
    padding: 3rem;
  }
}

.feature-item:nth-child(odd) {
  border-right: none;
}

@media (min-width: 768px) {
  .feature-item:nth-child(odd) {
    border-right: 1px solid rgba(19, 24, 53, .08);
  }
}

.feature-item.full {
  grid-column: 1/-1;
  border-right: none;
}

.feature-item:hover {
  background: #fafafa;
}

.feature-item .num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #D62828 !important;
  line-height: 1;
  margin-bottom: 1rem;
  transition: .35s;
}

@media (min-width: 768px) {
  .feature-item .num {
    font-size: 4.2rem;
    margin-bottom: 1.4rem;
  }
}

.feature-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #131835;
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
  transition: .35s;
}

@media (min-width: 768px) {
  .feature-item h4 {
    font-size: 1.55rem;
    margin-bottom: 1rem;
  }
}

.feature-accent {
  width: 32px;
  height: 2px;
  background: #D62828;
  margin-bottom: 1rem;
  transition: .35s;
}

@media (min-width: 768px) {
  .feature-accent {
    width: 42px;
    margin-bottom: 1.3rem;
  }
}

.feature-item p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #5E6678;
  max-width: 100%;
  font-weight: 400;
}

@media (min-width: 768px) {
  .feature-item p {
    font-size: 1rem;
    line-height: 1.9;
    max-width: 92%;
  }
}

.feature-item:hover .num {
  color: #D62828 !important;
}

.feature-item:hover h4 {
  transform: translateX(6px);
}

.feature-item:hover .feature-accent {
  width: 72px;
}

/* ============================================================ */
/* STORY/MISSION/VISION CARDS - RESPONSIVE */
/* ============================================================ */
.story-mission-card {
  position: relative;
  overflow: hidden;
  padding: 1.8rem;
  background: #ffffff;
  border: 1px solid rgba(19, 24, 53, 0.10);
  min-height: 100%;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .story-mission-card {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .story-mission-card {
    padding: 3rem 2.5rem;
  }
}

.story-mission-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 40, 40, 0.25);
  box-shadow: 0 20px 50px rgba(19, 24, 53, 0.08);
}

.story-mission-card .bg-num {
  position: absolute;
  top: 1.5rem;
  right: 1.2rem;
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(19, 24, 53, 0.055);
  pointer-events: none;
}

@media (min-width: 768px) {
  .story-mission-card .bg-num {
    font-size: 4rem;
    right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .story-mission-card .bg-num {
    font-size: 5rem;
    right: 2rem;
  }
}

.story-mission-card .red-accent {
  width: 32px;
  height: 2px;
  background: #D62828;
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .story-mission-card .red-accent {
    width: 42px;
    margin-bottom: 1.5rem;
  }
}

.story-mission-card h3 {
  position: relative;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #131835;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .story-mission-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .story-mission-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

.story-mission-card p {
  position: relative;
  color: #5E6678;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
  .story-mission-card p {
    font-size: 0.98rem;
    line-height: 1.9;
    margin-bottom: 1rem;
  }
}

.story-mission-card p:last-child {
  margin-bottom: 0;
}

/* ============================================================ */
/* STATS - RESPONSIVE */
/* ============================================================ */
.stat-card {
  text-align: center;
  padding: 0.8rem;
  transition: .35s ease;
  opacity: 0;
  transform: translateY(20px);
}

@media (min-width: 768px) {
  .stat-card {
    padding: 1rem;
  }
}

.stat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 700;
  color: #131835;
  line-height: 1;
  letter-spacing: -.04em;
  transition: .35s ease;
}

@media (min-width: 768px) {
  .stat-card h3 {
    font-size: clamp(3.4rem, 5vw, 5rem);
  }
}

.stat-card h3 span {
  color: #D62828;
  font-size: .55em;
}

.stat-line {
  width: 32px;
  height: 2px;
  background: #D62828;
  margin: 16px auto 14px;
  transition: .35s ease;
}

@media (min-width: 768px) {
  .stat-line {
    width: 42px;
    margin: 24px auto 20px;
  }
}

.stat-card p {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #6B7280;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .stat-card p {
    font-size: 0.82rem;
    letter-spacing: .22em;
    line-height: 1.6;
  }
}

.stat-card:hover h3 {
  color: #D62828;
  transform: translateY(-4px);
}

.stat-card:hover .stat-line {
  width: 70px;
}

/* ============================================================ */
/* GSAP INITIAL STATES */
/* ============================================================ */
.gsap-fade-up,
.gsap-features,
.gsap-feature-item,
.gsap-stats,
.gsap-stat-item {
  opacity: 0;
}

.stat-card {
  opacity: 0;
  transform: translateY(20px);
}

/* ============================================================ */
/* RESPONSIVE - ADDITIONAL FIXES */
/* ============================================================ */

/* About Intro Heading */
.about-intro-heading {
  font-size: 2.5rem;
}

@media (min-width: 640px) {
  .about-intro-heading {
    font-size: 3.5rem;
  }
}

@media (min-width: 768px) {
  .about-intro-heading {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .about-intro-heading {
    font-size: 6rem;
  }
}

/* Section Title */
.section-title {
  font-size: 2rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 5rem;
  }
}

/* Hero Heading */
.hero-heading {
  font-size: 2.5rem;
}

@media (min-width: 640px) {
  .hero-heading {
    font-size: 3.5rem;
  }
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-heading {
    font-size: 5.5rem;
  }
}

@media (min-width: 1280px) {
  .hero-heading {
    font-size: 7rem;
  }
}