/*
 * about-us.css
 * Net-new styles for About Us page ONLY.
 * Reuses from style.css: .page-hero, .diff-item, .process-step,
 * .review-card, .faq__*, .section, .grid, .btn, .reveal,
 * .stagger-children, .label, .divider, .booking-cta
 */

/* =============================================
   ABOUT HERO (reuses .page-hero from service-page.css)
   Only adds the credential badge overlay
   ============================================= */
   .page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--color-navy);
  padding-top: 190px;
}

.page-hero__bg {
  position: absolute;
  inset: -15%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(7, 27, 49, 0.9) 0%,
    rgba(7, 27, 49, 0.9) 50%,
    rgba(7, 27, 49, 0.9) 100%
  );
}

.page-hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: var(--z-above);
  width: 100%;
  padding-block: var(--space-16) var(--space-20);
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

.page-hero__breadcrumb a,
.page-hero__breadcrumb span {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast);
}

.page-hero__breadcrumb a:hover {
  color: var(--color-primary-light);
}

.page-hero__breadcrumb .sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.6rem;
}

.page-hero__breadcrumb .current {
  color: var(--color-primary);
}

.page-hero__eyebrow {
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.page-hero__eyebrow-icon {
  width: 36px;
  height: 36px;
  background: rgba(11, 148, 68, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.page-hero__title {
  color: var(--color-white);
  max-width: 700px;
  margin-bottom: var(--space-5);
}

.page-hero__desc {
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  font-size: var(--text-md);
  line-height: 1.75;
  margin-bottom: var(--space-8);
}

.page-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Diagonal bottom clip */
.page-hero__clip {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  z-index: var(--z-above);
}

.about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(11, 148, 68, 0.15);
  border: 1px solid rgba(11, 148, 68, 0.4);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5);
  margin-bottom: var(--space-5);
  backdrop-filter: blur(8px);
}

.about-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: pulse-dot 2s ease-in-out infinite;
}

.about-hero__badge-text {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-light);
}

/* =============================================
   STORY SECTION (Brad's photo + content)
   ============================================= */
.about-story__media {
  position: relative;
}

.about-story__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--color-navy-light);
  box-shadow: var(--shadow-lg);
}

.about-story__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-story__img-wrap:hover img {
  transform: scale(1.04);
}

/* Experience badge pinned to image */
.about-story__exp-badge {
  position: absolute;
  bottom: var(--space-6);
  right: calc(-1 * var(--space-6));
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 130px;
}

.about-story__exp-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1;
  display: block;
}

.about-story__exp-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  display: block;
  margin-top: var(--space-1);
}

/* Floating accent card */
.about-story__accent {
  position: absolute;
  top: var(--space-6);
  left: calc(-1 * var(--space-8));
  background: var(--color-navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.about-story__accent-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.about-story__accent-text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Credentials list */
.credentials {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-block: var(--space-6);
}

.credential {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-dark-gray);
}

.credential__icon {
  width: 32px;
  height: 32px;
  background: rgba(11, 148, 68, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* =============================================
   VALUES / MISSION SECTION
   Dark band - reuses .diff-item fully
   Only adds the decorative watermark text
   ============================================= */
.about-values {
  position: relative;
  overflow: hidden;
}

.about-values__watermark {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 11rem);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* =============================================
   TIMELINE (shop history)
   ============================================= */
.timeline {
  position: relative;
  padding-left: var(--space-10);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-10);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-10) + 10px);
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 3px rgba(11, 148, 68, 0.3);
  transition: box-shadow var(--transition-slow);
}

.timeline-item:hover::before {
  box-shadow: 0 0 0 6px rgba(11, 148, 68, 0.15), var(--shadow-glow);
}

.timeline-item__year {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.timeline-item__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.timeline-item__desc {
  font-size: var(--text-sm);
  color: var(--color-mid-gray);
  line-height: 1.7;
}

/* =============================================
   SERVICE AREA MAP CALLOUT
   ============================================= */
.service-area {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  position: relative;
  overflow: hidden;
}

.service-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 30px,
    rgba(255,255,255,0.015) 30px, rgba(255,255,255,0.015) 60px
  );
}

.service-area__inner {
  position: relative;
}

.service-area__counties {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.service-area__county {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-primary);
  transition: all var(--transition-fast);
}

.service-area__county:hover {
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
}

.service-area__county .icon {
  color: var(--color-primary);
  font-size: 0.75rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-story__exp-badge {
    right: var(--space-4);
  }
  .about-story__accent {
    left: var(--space-4);
  }
}

@media (max-width: 768px) {
  .about-story__accent {
    display: none;
  }
  .about-story__exp-badge {
    position: relative;
    bottom: auto;
    right: auto;
    display: inline-flex;
    align-items: center;
    gap: var(--space-4);
    margin-top: var(--space-4);
    text-align: left;
    min-width: unset;
  }
  .service-area__counties {
    grid-template-columns: 1fr;
  }
  .timeline {
    padding-left: var(--space-8);
  }
}