body.abt-agency-body {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-warm: #f7f7f7;
  --border: #e5e5e5;
  --primary: #c4570a;
  --primary-light: #fff2ea;
  --primary-dark: #a74708;
  --text: #111111;
  --text-muted: #4a4a4a;
  --text-subtle: #7a7a7a;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.1);
  background: var(--bg);
  color: var(--text);
  font-family: 'Be Vietnam Pro', sans-serif;
}

.abt-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 108px;
}

.page-hero {
  background: #ffffff;
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-radius: var(--idx-bezel-inner);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.045);
  padding: 84px 48px 76px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: #c4570a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 72px;
  line-height: 1.18;
  letter-spacing: -0.04em;
  color: #111111;
  margin-bottom: 20px;
  padding-top: 4px;
  padding-bottom: 8px;
  overflow: visible;
}

.hero-title .line-italic {
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5f3d25;
  display: block;
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.hero-title .line-bold {
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
  line-height: 1.28;
  padding-top: 6px;
  padding-bottom: 12px;
  font-size: clamp(2rem, 5vw, 4rem);
  overflow: visible;
  background: linear-gradient(120deg, #8e4315 12%, #d98a33 88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #a5511b;
}

.hero-subtitle {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

.timeline-section {
  padding: 72px 48px;
  background: var(--bg);
}

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

.timeline-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-subtle);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 48px;
}

.timeline-title span {
  color: var(--primary);
  font-style: italic;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

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

.timeline-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline-year::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.timeline-item-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

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

.timeline-image {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
  background: var(--surface);
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.timeline-image-logo img {
  object-fit: contain;
  padding: 28px;
  background: var(--surface);
}

.process-section {
  padding: 72px 48px;
  background: #fff;
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-radius: var(--idx-bezel-inner);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.045);
  margin-top: 16px;
}

.process-header {
  max-width: 900px;
  margin: 0 auto 48px;
}

.process-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-subtle);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.process-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.process-title span {
  color: var(--primary);
  font-style: italic;
}

.process-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.6;
}

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

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  position: relative;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.process-step:hover {
  box-shadow: var(--shadow-card);
  border-color: #c4570a;
  transform: translateY(-2px);
}

.step-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--border);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.values-section {
  padding: 72px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

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

.values-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-subtle);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.values-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 40px;
}

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

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

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.value-card:hover {
  border-color: #c4570a;
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.value-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

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

.values-quote {
  background: #fff;
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-left: 3px solid var(--primary);
  border-radius: var(--idx-bezel-inner);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.045);
  padding: 24px 28px;
}

.quote-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 12px;
}

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

.cta-section {
  padding: 72px 48px;
  background: #fff;
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-radius: var(--idx-bezel-inner);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.045);
  text-align: center;
  margin-top: 16px;
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 12px;
}

.cta-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 32px;
}

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

.btn-cta-primary,
.btn-cta-secondary {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Be Vietnam Pro', sans-serif;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn-cta-primary {
  padding: 13px 28px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  font-weight: 700;
}

.btn-cta-primary:hover {
  background: var(--primary-dark);
}

.btn-cta-primary:active {
  transform: scale(0.98);
}

.btn-cta-secondary {
  padding: 13px 28px;
  background: var(--surface);
  color: var(--text);
  border: 1.5px solid var(--border);
  font-weight: 600;
}

.btn-cta-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-cta-primary:focus-visible,
.btn-cta-secondary:focus-visible {
  outline: 2px solid rgba(196, 87, 10, 0.4);
  outline-offset: 2px;
}


@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));
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .abt-shell {
    width: calc(100% - 16px);
    padding-top: 118px;
  }

  .page-hero {
    padding-top: 72px;
    padding-bottom: 62px;
  }

  .hero-title {
    font-size: 52px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 0;
  }

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

  .values-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

}

@media (max-width: 640px) {
  .abt-shell {
    width: calc(100% - 12px);
    padding-top: 110px;
  }

  .page-hero,
  .timeline-section,
  .process-section,
  .values-section,
  .cta-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .timeline-section,
  .process-section,
  .values-section,
  .cta-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .timeline-title,
  .process-title,
  .values-title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .process-header,
  .values-container,
  .timeline-container {
    margin-bottom: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .step-number {
    font-size: 28px;
  }

  .values-quote {
    padding: 18px 18px;
  }

  .cta-title {
    font-size: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: min(280px, 100%);
  }

}

@media (max-width: 420px) {
  .page-hero {
    padding-top: 58px;
    padding-bottom: 50px;
  }

  .hero-title {
    font-size: 34px;
  }

  .timeline-item-title {
    font-size: 20px;
  }
}
