/* ─── agency-about-v2.css ─── About Redesign Overrides ─── */

:root {
  --abt-accent: #c4570a;
  --abt-accent-soft: #fff5ed;
  --abt-ink: #1a1a1a;
  --abt-muted: #555;
  --abt-subtle: #999;
  --abt-border: rgba(0,0,0,0.06);
  --abt-warm: #faf8f5;
  --abt-radius: 20px;
  --abt-radius-sm: 14px;
  --abt-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  text-align: center;
  padding: 140px clamp(24px, 5vw, 80px) 80px;
  background: none;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/about-img.png') center center / cover no-repeat;
  z-index: 0;
  filter: blur(5px) brightness(0.92);
  transform: scale(1.05);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(100, 65, 40, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
  pointer-events: none;
}

.page-hero > * {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #f5a623;
  margin-bottom: 20px;
  background: none;
  padding: 0;
  border-radius: 0;
}

.hero-title {
  margin-bottom: 16px;
}

.hero-title .line-italic {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  color: #f5a623;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  background: none;
  -webkit-text-fill-color: #f5a623;
}

.hero-title .line-bold {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: clamp(4.5rem, 12vw, 9rem);
  font-weight: 800;
  line-height: 0.95;
  color: #fff;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: block;
  margin-top: 8px;
  background: none;
  -webkit-text-fill-color: #fff;
}

.hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  max-width: 560px;
  margin: 20px auto 0;
  font-weight: 400;
}

/* ═══════════════════════════════════════════
   TIMELINE  ──  Central line, dot markers
   ═══════════════════════════════════════════ */
.timeline-section {
  padding: 80px 48px;
  background: var(--abt-warm);
  border-radius: var(--abt-radius);
  margin-top: 20px;
  position: relative;
}

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Central vertical line */
.timeline-list {
  position: relative;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent 0%, var(--abt-accent) 15%, var(--abt-accent) 85%, transparent 100%);
  transform: translateX(-50%);
  opacity: 0.15;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-top: none !important;
  position: relative;
}

.timeline-item:nth-child(even) .timeline-image {
  order: -1;
}

/* Dot marker on timeline */
.timeline-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--abt-accent);
  border: 3px solid var(--abt-warm);
  box-shadow: 0 0 0 3px rgba(196,87,10,0.12);
  z-index: 2;
}

.timeline-year {
  font-size: 13px;
  font-weight: 800;
  color: var(--abt-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.timeline-year::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--abt-border), transparent);
  max-width: 120px;
}

.timeline-item-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--abt-ink);
  margin-bottom: 14px;
  line-height: 1.25;
}

.timeline-item-desc {
  font-size: 15px;
  color: var(--abt-muted);
  line-height: 1.75;
}

.timeline-image {
  border-radius: var(--abt-radius) !important;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  background: var(--abt-warm);
  transition: transform 0.4s var(--abt-ease), box-shadow 0.4s var(--abt-ease);
}

.timeline-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--abt-ease);
}

.timeline-image:hover img {
  transform: scale(1.04);
}

.timeline-image-logo {
  background: #fff;
}

.timeline-image-logo img {
  object-fit: contain;
  padding: 32px;
}

/* ═══════════════════════════════════════════
   PROCESS  ──  Numbered steps, no cards
   ═══════════════════════════════════════════ */
.process-section {
  padding: 80px 48px;
  background: #fff;
  border: none !important;
  box-shadow: none !important;
  border-radius: var(--abt-radius) !important;
  margin-top: 20px;
}

.process-header {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.process-eyebrow {
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--abt-accent);
  background: var(--abt-accent-soft);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.process-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--abt-ink);
  line-height: 1.2;
}

.process-title span {
  color: var(--abt-accent);
  font-style: normal;
}

.process-subtitle {
  font-size: 16px;
  color: var(--abt-muted);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.process-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

/* Connecting line between steps */
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--abt-border), var(--abt-accent), var(--abt-border));
  opacity: 0.2;
  z-index: 0;
}

.process-step {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 32px 24px;
  position: relative;
  z-index: 1;
  text-align: center;
  transition: transform 0.3s var(--abt-ease);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: none !important;
  border-color: transparent !important;
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--abt-accent);
  opacity: 0.12;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
  transition: opacity 0.3s var(--abt-ease);
}

.process-step:hover .step-number {
  opacity: 0.3;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--abt-ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-desc {
  font-size: 14px;
  color: var(--abt-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   VALUES  ──  Asymmetric blocks, no cards
   ═══════════════════════════════════════════ */
.values-section {
  padding: 80px 48px;
  background: var(--abt-warm);
  border-radius: var(--abt-radius);
  margin-top: 20px;
  border-top: none !important;
}

.values-container {
  max-width: 1000px;
  margin: 0 auto;
}

.values-eyebrow {
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--abt-accent);
  background: var(--abt-accent-soft);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.values-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--abt-ink);
  margin-bottom: 48px;
  line-height: 1.2;
}

.values-title span {
  color: var(--abt-accent);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

/* Asymmetric sizing */
.value-card:nth-child(1) {
  grid-row: span 1;
}

.value-card:nth-child(2) {
  grid-row: span 1;
}

.value-card:nth-child(3) {
  grid-row: span 1;
}

.value-card {
  background: #fff;
  border: none !important;
  border-radius: var(--abt-radius-sm) !important;
  padding: 36px 28px;
  transition: transform 0.3s var(--abt-ease), box-shadow 0.3s var(--abt-ease);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: transparent !important;
}

.value-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--abt-ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.value-card-desc {
  font-size: 14px;
  color: var(--abt-muted);
  line-height: 1.7;
}

/* Quote ── Full width, typographic, no side-stripe */
.values-quote {
  background: #fff;
  border: none !important;
  border-radius: var(--abt-radius) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  padding: 48px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.values-quote::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 200px;
  color: var(--abt-accent);
  opacity: 0.04;
  position: absolute;
  top: -40px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-size: 22px;
  color: var(--abt-ink);
  line-height: 1.6;
  font-style: normal;
  margin-bottom: 20px;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.quote-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--abt-subtle);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   CTA  ──  Gradient, confident
   ═══════════════════════════════════════════ */
.cta-section {
  padding: 72px 48px;
  background: linear-gradient(135deg, var(--abt-accent) 0%, #d98a33 100%);
  border: none !important;
  box-shadow: none !important;
  border-radius: var(--abt-radius) !important;
  text-align: center;
  margin-top: 20px;
  color: #fff;
}

.cta-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 14px;
}

.cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.btn-cta-primary {
  padding: 14px 32px;
  background: #fff;
  color: var(--abt-accent);
  border: none;
  border-radius: var(--abt-radius-sm);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: all 0.25s var(--abt-ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-cta-secondary {
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--abt-radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s var(--abt-ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-cta-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATION
   ═══════════════════════════════════════════ */
.idx-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--abt-ease), transform 0.55s var(--abt-ease);
}

.idx-reveal.idx-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1080px) {
  .page-hero,
  .timeline-section,
  .process-section,
  .values-section,
  .cta-section {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hero-title {
    font-size: 60px;
  }
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-grid::before {
    display: none;
  }
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .abt-shell {
    width: calc(100% - 16px);
    padding-top: 120px;
  }
  .page-hero {
    min-height: 60vh;
    padding: 100px 20px 60px !important;
  }
  .hero-title .line-italic {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }
  .hero-title .line-bold {
    font-size: clamp(2.4rem, 9vw, 3.4rem);
  }
  .hero-subtitle {
    font-size: 15px;
    max-width: 90%;
  }
  .timeline-list::before {
    left: 20px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 0 32px 44px;
  }
  .timeline-item:nth-child(even) .timeline-image {
    order: 0;
  }
  .timeline-item::after {
    left: 20px;
    transform: translate(-50%, -50%);
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .step-number {
    font-size: 40px;
  }
  .values-quote {
    padding: 36px 28px;
  }
  .quote-text {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .abt-shell {
    width: calc(100% - 12px);
    padding-top: 112px;
  }
  .page-hero,
  .timeline-section,
  .process-section,
  .values-section,
  .cta-section {
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 16px !important;
  }
  .timeline-section,
  .process-section,
  .values-section,
  .cta-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .hero-title .line-italic {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
  }
  .hero-title .line-bold {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .hero-subtitle {
    font-size: 14px;
    max-width: 94%;
  }
  .timeline-title,
  .process-title,
  .values-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .step-number {
    font-size: 36px;
    margin-bottom: 14px;
  }
  .cta-title {
    font-size: 26px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-cta-primary,
  .btn-cta-secondary {
    width: min(280px, 100%);
  }
  .quote-text {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .page-hero {
    padding: 80px 16px 48px !important;
  }
  .hero-title .line-italic {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }
  .hero-title .line-bold {
    font-size: clamp(1.8rem, 7.5vw, 2.4rem);
  }
  .hero-subtitle {
    font-size: 13px;
  }
  .timeline-item-title {
    font-size: 20px;
  }
}
