/* TripValet — About Page */

:root {
  --deep: #082770; --tropical: #205EB6; --sky: #5A9DDD; --sky-light: #d4edfb;
  --white: #ffffff; --cloud: #f0f8ff; --sand: #fffbf4; --gold: #C9A84C;
  --gold-light: #e8c97a;
  --text: #082770; --text-mid: #2d5490; --text-body: #2c3e6b;
  --gradient: linear-gradient(135deg, #082770 0%, #205EB6 55%, #5A9DDD 100%);
}

/* ===== HERO (matched to approved Corporate hero pattern) ===== */
.tv-page-about .hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 160px 400px 80px 80px;
}
.tv-page-about .hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.tv-page-about .hero-content { position: relative; z-index: 2; max-width: 640px; }
.tv-page-about .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.4);
  border-radius: 40px; padding: 8px 18px; margin-bottom: 28px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  animation: tvAboutFadeUp 0.6s ease both;
}
.tv-page-about .hero-content h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(38px, 5vw, 66px);
  color: var(--deep); line-height: 1.05; margin-bottom: 24px;
  font-weight: 400;
  animation: tvAboutFadeUp 0.6s 0.1s ease both;
}
.tv-page-about .hero-content h1 em { font-style: italic; color: var(--tropical); }
.tv-page-about .hero-content > p {
  font-size: 18px; color: var(--text-mid); line-height: 1.75;
  margin-bottom: 16px; font-weight: 300;
  animation: tvAboutFadeUp 0.6s 0.18s ease both;
}
.tv-page-about .hero-disclaimer {
  font-size: 13px; color: #7a96c0; margin-bottom: 44px;
  animation: tvAboutFadeUp 0.6s 0.22s ease both;
}
.tv-page-about .hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: tvAboutFadeUp 0.6s 0.28s ease both;
}
.tv-page-about .btn-gold-lg {
  background: var(--gold); color: var(--deep);
  padding: 16px 36px; border-radius: 8px; font-size: 15px; font-weight: 700;
  text-decoration: none; box-shadow: 0 6px 24px rgba(201,168,76,0.32);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.tv-page-about .btn-gold-lg:hover {
  transform: translateY(-2px); background: var(--gold-light);
  box-shadow: 0 10px 36px rgba(201,168,76,0.45);
}
.tv-page-about .hero-outline {
  border: 2px solid rgba(8,39,112,0.2); color: var(--deep);
  padding: 14px 30px; border-radius: 8px; font-size: 15px; font-weight: 600;
  text-decoration: none; transition: border-color 0.2s, background 0.2s;
}
.tv-page-about .hero-outline:hover {
  border-color: var(--tropical); background: rgba(8,39,112,0.04);
}

/* Floating stat cards — right side of hero */
.tv-page-about .hero-stats {
  position: absolute; right: 80px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 16px; z-index: 2;
  animation: tvAboutFadeUp 0.7s 0.4s ease both;
}
.tv-page-about .hero-stat-card {
  background: white; border: 1px solid rgba(8,39,112,0.1);
  border-radius: 16px; padding: 22px 28px; min-width: 240px;
  box-shadow: 0 8px 40px rgba(8,39,112,0.1);
}
.tv-page-about .hero-stat-card strong {
  display: block; font-family: 'DM Serif Display', serif;
  font-size: 36px; color: var(--tropical); line-height: 1.1; margin-bottom: 4px;
  font-weight: 400;
}
.tv-page-about .hero-stat-card strong.gold { color: var(--gold); }
.tv-page-about .hero-stat-card span { font-size: 12.5px; color: var(--text-mid); line-height: 1.4; }

/* ===== SHARED SECTION TYPE ===== */
.tv-page-about section { padding: 110px 48px; position: relative; }
.tv-page-about .section-inner { max-width: 1200px; margin: 0 auto; }
.tv-page-about .section-kicker {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--tropical); margin-bottom: 18px;
}
.tv-page-about .section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(34px, 4.4vw, 54px);
  color: var(--deep); line-height: 1.1;
  margin-bottom: 22px; font-weight: 400;
}
.tv-page-about .section-title em { font-style: italic; color: var(--tropical); }
.tv-page-about .section-sub {
  font-size: 18px; color: var(--text-body); line-height: 1.75;
  max-width: 720px;
}

/* ===== OUR STORY ===== */
.tv-page-about .story { background: var(--cloud); }
.tv-page-about .story-intro {
  text-align: center; max-width: 820px; margin: 0 auto 80px;
}
.tv-page-about .story-intro .section-kicker { display: inline-block; }
.tv-page-about .story-intro .section-sub { margin: 0 auto; }
.tv-page-about .story-belief {
  font-family: 'DM Serif Display', serif;
  font-style: italic; font-size: clamp(28px, 3vw, 38px);
  color: var(--tropical); line-height: 1.3;
  margin: 28px auto 24px; max-width: 680px;
}
.tv-page-about .story-list {
  font-size: 17px; color: var(--text-body);
  max-width: 520px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}

.tv-page-about .story-chapter {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 70px; align-items: center;
  margin-bottom: 110px;
}
.tv-page-about .story-chapter:last-child { margin-bottom: 0; }
.tv-page-about .story-chapter.reverse { grid-template-columns: 1.1fr 1fr; }
.tv-page-about .story-chapter.reverse .story-visual { order: 2; }
.tv-page-about .story-chapter.reverse .story-body { order: 1; }

.tv-page-about .story-visual {
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(8,39,112,0.18);
  aspect-ratio: 5/6;
  position: relative;
}
.tv-page-about .story-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tv-page-about .story-visual-tag {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-radius: 12px; padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.5);
}
.tv-page-about .story-visual-tag-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 4px;
}
.tv-page-about .story-visual-tag-text {
  font-family: 'DM Serif Display', serif;
  font-size: 16px; color: var(--deep); line-height: 1.3;
}

.tv-page-about .story-chapter-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--deep); line-height: 1.15;
  margin-bottom: 22px; font-weight: 400;
}
.tv-page-about .story-chapter-title em { font-style: italic; color: var(--tropical); }
.tv-page-about .story-body p {
  font-size: 16.5px; color: var(--text-body); line-height: 1.8;
  margin-bottom: 16px;
}
.tv-page-about .story-body p:last-child { margin-bottom: 0; }
.tv-page-about .story-body p strong { color: var(--deep); font-weight: 600; }

.tv-page-about .story-mission {
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  color: var(--deep);
  line-height: 1.55;
  margin: 18px 0;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(32,94,182,0.06), rgba(90,157,221,0.1));
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  display: flex; flex-direction: column; gap: 4px;
}
.tv-page-about .story-tagline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--tropical);
  margin-top: 18px;
}

.tv-page-about .story-uses {
  margin: 18px 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px;
}
.tv-page-about .story-uses li {
  list-style: none;
  font-size: 15px; color: var(--text-mid);
  padding-left: 22px; position: relative;
  line-height: 1.6;
}
.tv-page-about .story-uses li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
}

/* ===== MEET THE TEAM ===== */
.tv-page-about .team { background: var(--white); }
.tv-page-about .team-header { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.tv-page-about .team-header .section-sub { margin: 0 auto; }

.tv-page-about .team-founders {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; margin-bottom: 56px;
}
.tv-page-about .team-founder-card {
  background: var(--cloud);
  border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(8,39,112,0.08);
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.tv-page-about .team-founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(8,39,112,0.14);
}
.tv-page-about .team-founder-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--gradient);
}
.tv-page-about .team-founder-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block;
}
.tv-page-about .team-founder-body { padding: 28px 30px 32px; }
.tv-page-about .team-founder-name {
  font-family: 'DM Serif Display', serif;
  font-size: 26px; color: var(--deep);
  margin-bottom: 6px; line-height: 1.2; font-weight: 400;
}
.tv-page-about .team-founder-title {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
}

.tv-page-about .team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tv-page-about .team-card {
  text-align: left;
  transition: transform 0.3s;
}
.tv-page-about .team-card:hover { transform: translateY(-4px); }
.tv-page-about .team-photo {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--gradient);
  box-shadow: 0 12px 32px rgba(8,39,112,0.12);
}
.tv-page-about .team-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block;
}
.tv-page-about .team-name {
  font-family: 'DM Serif Display', serif;
  font-size: 19px; color: var(--deep);
  margin-bottom: 4px; line-height: 1.2; font-weight: 400;
}
.tv-page-about .team-title {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--tropical);
  line-height: 1.5;
}

/* ===== NON-NEGOTIABLES ===== */
.tv-page-about .beliefs {
  background: linear-gradient(135deg, #082770 0%, #143A8E 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.tv-page-about .beliefs::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(90,157,221,0.18) 0%, transparent 70%);
}
.tv-page-about .beliefs::after {
  content: ''; position: absolute; bottom: -150px; left: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
}
.tv-page-about .beliefs-inner { position: relative; max-width: 1100px; margin: 0 auto; }
.tv-page-about .beliefs-header { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.tv-page-about .beliefs-header .section-kicker { color: var(--gold-light); }
.tv-page-about .beliefs-header .section-title { color: var(--white); }
.tv-page-about .beliefs-header .section-title em { color: var(--gold-light); }
.tv-page-about .beliefs-header .section-sub { color: rgba(255,255,255,0.85); margin: 0 auto; }

.tv-page-about .beliefs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}
.tv-page-about .belief-item {
  text-align: left;
  display: flex; flex-direction: column;
}
.tv-page-about .belief-num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 48px;
  color: var(--gold-light);
  line-height: 1; margin-bottom: 16px;
}
.tv-page-about .belief-item h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: var(--white);
  line-height: 1.3; margin-bottom: 12px; font-weight: 400;
  min-height: 2.6em;
  display: flex; align-items: flex-start;
}
.tv-page-about .belief-item p {
  font-size: 15.5px; line-height: 1.75;
  color: rgba(255,255,255,0.82);
  flex: 1;
}

/* ===== CLOSING ===== */
.tv-page-about .closing {
  background: var(--sand);
  text-align: center;
}
.tv-page-about .closing-inner { max-width: 760px; margin: 0 auto; }
.tv-page-about .closing-inner .section-kicker { display: block; }
.tv-page-about .closing-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(34px, 4.4vw, 50px);
  color: var(--deep); line-height: 1.15;
  margin-bottom: 24px; font-weight: 400;
}
.tv-page-about .closing-title em { font-style: italic; color: var(--tropical); }
.tv-page-about .closing-sub {
  font-size: 18px; color: var(--text-body); line-height: 1.75;
  margin: 0 auto 42px;
  max-width: 620px;
}
.tv-page-about .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.tv-page-about .btn-primary {
  background: var(--gradient);
  color: var(--white);
  font-weight: 600; font-size: 15px;
  padding: 16px 32px; border-radius: 8px;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(32,94,182,0.32);
}
.tv-page-about .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(32,94,182,0.42); }
.tv-page-about .btn-outline-dark {
  background: transparent;
  color: var(--deep);
  border: 1.5px solid rgba(8,39,112,0.25);
  font-weight: 600; font-size: 15px;
  padding: 14.5px 30px; border-radius: 8px;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.tv-page-about .btn-outline-dark:hover { background: var(--cloud); border-color: var(--tropical); }

/* ===== ANIMATIONS ===== */
@keyframes tvAboutFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Note: .reveal/.visible system is provided by shared tripvalet.js + global theme styles */
.tv-page-about .reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s ease, transform 0.8s ease; }
.tv-page-about .reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1180px) {
  .tv-page-about .hero {
    padding: 140px 60px 80px; flex-direction: column;
    align-items: flex-start; justify-content: center; min-height: auto;
  }
  .tv-page-about .hero-content { max-width: 720px; margin-bottom: 50px; }
  .tv-page-about .hero-stats {
    position: relative; right: auto; top: auto; transform: none;
    flex-direction: row; flex-wrap: wrap; gap: 14px; width: 100%;
  }
  .tv-page-about .hero-stat-card { min-width: 0; flex: 1 1 220px; }
  .tv-page-about .team-grid { grid-template-columns: repeat(3, 1fr); }
  .tv-page-about section { padding: 100px 40px; }
}

@media (max-width: 980px) {
  .tv-page-about section { padding: 80px 28px; }
  .tv-page-about .hero { padding: 120px 28px 70px; }
  .tv-page-about .hero-content h1 { font-size: clamp(36px, 6.5vw, 56px); }
  .tv-page-about .hero-content > p { font-size: 17px; }
  .tv-page-about .hero-stat-card { padding: 18px 22px; }
  .tv-page-about .hero-stat-card strong { font-size: 30px; }
  .tv-page-about .story-chapter, .tv-page-about .story-chapter.reverse {
    grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px;
  }
  .tv-page-about .story-chapter.reverse .story-visual,
  .tv-page-about .story-chapter.reverse .story-body { order: 0; }
  .tv-page-about .story-visual { aspect-ratio: 4/3; max-width: 560px; margin: 0 auto; width: 100%; }
  .tv-page-about .team-founders {
    grid-template-columns: 1fr; gap: 22px; max-width: 480px; margin: 0 auto 48px;
  }
  .tv-page-about .team-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .tv-page-about .beliefs-grid { grid-template-columns: 1fr; gap: 28px; }
  .tv-page-about .story-uses { grid-template-columns: 1fr; }
  .tv-page-about .story-belief { font-size: clamp(24px, 5vw, 32px); }
  .tv-page-about .story-mission { padding: 18px 22px; font-size: 17px; }
  .tv-page-about .story-tagline { font-size: 20px; }
}

@media (max-width: 680px) {
  .tv-page-about section { padding: 64px 22px; }
  .tv-page-about .hero { padding: 100px 22px 60px; }
  .tv-page-about .hero-content h1 { font-size: 36px; line-height: 1.08; }
  .tv-page-about .hero-content > p { font-size: 16px; line-height: 1.65; }
  .tv-page-about .hero-disclaimer { font-size: 12.5px; margin-bottom: 32px; }
  .tv-page-about .hero-badge {
    font-size: 10px; padding: 6px 14px; letter-spacing: 1.8px; margin-bottom: 20px;
  }
  .tv-page-about .hero-stats { flex-direction: column; gap: 12px; }
  .tv-page-about .hero-stat-card { padding: 16px 20px; }
  .tv-page-about .hero-stat-card strong { font-size: 26px; }
  .tv-page-about .hero-cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .tv-page-about .hero-cta-row a { text-align: center; width: 100%; padding: 14px 24px; font-size: 14px; }
  .tv-page-about .btn-gold-lg { padding: 14px 24px; }
  .tv-page-about .hero-outline { padding: 12px 22px; }

  .tv-page-about .section-kicker { font-size: 11px; letter-spacing: 2.5px; margin-bottom: 14px; }
  .tv-page-about .section-title { font-size: clamp(26px, 7vw, 34px); line-height: 1.15; margin-bottom: 18px; }
  .tv-page-about .section-sub { font-size: 16px; line-height: 1.65; }

  .tv-page-about .story-chapter, .tv-page-about .story-chapter.reverse { gap: 28px; margin-bottom: 56px; }
  .tv-page-about .story-visual { aspect-ratio: 4/3; border-radius: 16px; }
  .tv-page-about .story-visual-tag {
    left: 14px; right: 14px; bottom: 14px; padding: 12px 14px; border-radius: 10px;
  }
  .tv-page-about .story-visual-tag-label { font-size: 10px; letter-spacing: 1.8px; margin-bottom: 3px; }
  .tv-page-about .story-visual-tag-text { font-size: 14px; line-height: 1.3; }
  .tv-page-about .story-chapter-title { font-size: clamp(22px, 6vw, 28px); margin-bottom: 16px; }
  .tv-page-about .story-body p { font-size: 15.5px; line-height: 1.7; margin-bottom: 14px; }
  .tv-page-about .story-belief { font-size: 24px; margin: 22px auto 18px; }
  .tv-page-about .story-list { font-size: 15.5px; }
  .tv-page-about .story-uses li { font-size: 14.5px; padding-left: 20px; }
  .tv-page-about .story-mission { padding: 16px 18px; font-size: 16px; margin: 16px 0; }
  .tv-page-about .story-tagline { font-size: 18px; line-height: 1.4; margin-top: 14px; }

  .tv-page-about .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .tv-page-about .team-photo { border-radius: 12px; margin-bottom: 12px; }
  .tv-page-about .team-name { font-size: 16px; }
  .tv-page-about .team-title { font-size: 10px; letter-spacing: 1.2px; }
  .tv-page-about .team-founders {
    grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; max-width: 100%;
  }
  .tv-page-about .team-founder-card { border-radius: 16px; }
  .tv-page-about .team-founder-body { padding: 22px 24px 26px; }
  .tv-page-about .team-founder-name { font-size: 22px; }
  .tv-page-about .team-founder-title { font-size: 11px; letter-spacing: 1.6px; }

  .tv-page-about .belief-num { font-size: 40px; margin-bottom: 12px; }
  .tv-page-about .belief-item h4 { font-size: 19px; margin-bottom: 10px; min-height: 0; }
  .tv-page-about .belief-item p { font-size: 14.5px; line-height: 1.7; }

  .tv-page-about .closing-title { font-size: clamp(26px, 7vw, 32px); }
  .tv-page-about .closing-sub { font-size: 16px; }
  .tv-page-about .btn-row { flex-direction: column; gap: 10px; align-items: stretch; }
  .tv-page-about .btn-row a { text-align: center; width: 100%; padding: 14px 24px; font-size: 14px; }
}

@media (max-width: 400px) {
  .tv-page-about section { padding: 56px 18px; }
  .tv-page-about .hero { padding: 90px 18px 50px; }
  .tv-page-about .hero-content h1 { font-size: 30px; }
  .tv-page-about .team-grid { grid-template-columns: 1fr; gap: 18px; max-width: 280px; margin: 0 auto; }
}
