/* ==========================================================================
   About Us — matches Homepage design system
   Fonts: Playfair Display (headlines) + Inter (body)
   Colors: primary #0b0c0c, secondary #775928, gold #B08D57, surface #f9f9f9
   ========================================================================== */

.site-main--about {
  --hp-gutter: 24px;
  --hp-section-y: clamp(3rem, 6vw, 5rem);
  --hp-container-x: 5%;
  --hp-max: 1440px;
  --hp-radius: 12px;
  --hp-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08), 0 4px 10px -5px rgba(0, 0, 0, 0.04);
  --hp-shadow-hover: 0 20px 40px -12px rgba(0, 0, 0, 0.12);

  overflow-x: hidden;
  padding-top: 0 !important;
  background: var(--color-surface);
  font-family: var(--font-body);
  color: var(--color-on-surface);
}

.site-main--about ::selection {
  background-color: var(--color-secondary-fixed);
  color: var(--color-on-secondary-fixed);
}

.site-main--about .hp-container {
  width: 100%;
  max-width: var(--hp-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--hp-container-x);
  padding-right: var(--hp-container-x);
  box-sizing: border-box;
}

/* ── Shared section / type (homepage tokens) ── */
.ab-section {
  padding-top: var(--hp-section-y);
  padding-bottom: var(--hp-section-y);
  background: var(--color-surface);
}

.ab-section--white {
  background: var(--color-surface-container-lowest);
}

.ab-section--soft {
  background: var(--color-surface-container-low);
}

.ab-label {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin: 0 0 12px;
}

.ab-label--light {
  color: var(--color-accent-gold);
}

.ab-title {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary);
  margin: 0;
}

.ab-title--lg {
  font-size: clamp(1.875rem, 4vw, 3.5rem);
  line-height: 1.15;
}

.ab-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-on-surface-variant);
  margin: 0;
}

.ab-body--lg {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
}

.ab-section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.ab-section-head--narrow {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.ab-section-head .ab-title {
  margin-bottom: 0;
}

.ab-section-head__line {
  width: 48px;
  height: 2px;
  background: var(--color-accent-gold);
  margin: 20px auto 0;
}

.ab-section-head__sub {
  margin-top: 16px;
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.ab-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(480px, 62vh, 720px);
  padding: 140px 0 72px;
  overflow: hidden;
}

.ab-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  image-rendering: auto;
  z-index: 0;
}

.ab-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 12, 12, 0.35) 0%,
    rgba(11, 12, 12, 0.45) 40%,
    rgba(11, 12, 12, 0.72) 100%
  );
  z-index: 1;
}

.ab-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.ab-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.ab-hero__eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--color-accent-gold);
  flex-shrink: 0;
}

.ab-hero__eyebrow-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
}

.ab-hero__title {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 20px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.ab-hero__desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 560px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

/* ══════════════════════════════════════
   MISSION / VISION BENTO
   ══════════════════════════════════════ */
.ab-bento__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hp-gutter);
}

@media (min-width: 768px) {
  .ab-bento__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(280px, auto);
  }

  .ab-bento__mission {
    grid-column: 1 / span 7;
    grid-row: 1;
  }

  .ab-bento__media--mission {
    grid-column: 8 / span 5;
    grid-row: 1;
  }

  .ab-bento__media--vision-img {
    grid-column: 1 / span 5;
    grid-row: 2;
  }

  .ab-bento__vision {
    grid-column: 6 / span 7;
    grid-row: 2;
  }
}

.ab-bento__mission,
.ab-bento__vision {
  border-radius: var(--hp-radius);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  box-shadow: var(--hp-shadow);
}

.ab-bento__mission {
  background: #fff;
  border: 1px solid rgba(232, 222, 211, 0.8);
}

.ab-bento__mission .ab-title,
.ab-bento__vision .ab-title {
  margin-bottom: 16px;
}

.ab-bento__mission .ab-body {
  margin-bottom: 0;
}

.ab-bento__tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(176, 141, 87, 0.25);
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ab-bento__tag .material-symbols-outlined {
  font-size: 22px;
  color: var(--color-accent-gold);
}

.ab-bento__media {
  position: relative;
  min-height: 280px;
  border-radius: var(--hp-radius);
  overflow: hidden;
  box-shadow: var(--hp-shadow);
}

@media (min-width: 768px) {
  .ab-bento__media {
    min-height: 100%;
  }
}

.ab-bento__media-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.7s ease;
}

.ab-bento__media--hover:hover .ab-bento__media-bg {
  transform: scale(1.06);
}

.ab-bento__media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 12, 0.15);
  transition: background 0.3s ease;
  pointer-events: none;
}

.ab-bento__media--hover:hover .ab-bento__media-overlay {
  background: rgba(11, 12, 12, 0.05);
}

.ab-bento__vision {
  background: var(--color-primary-container);
  color: #fff;
  border: none;
}

.ab-bento__vision .ab-title {
  color: #fff;
}

.ab-bento__vision .ab-body {
  color: rgba(255, 255, 255, 0.82);
}

/* ══════════════════════════════════════
   TIMELINE
   ══════════════════════════════════════ */
.ab-timeline__track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.ab-timeline__track::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    transparent,
    var(--color-accent-gold) 15%,
    var(--color-primary) 50%,
    var(--color-accent-gold) 85%,
    transparent
  );
  display: none;
}

@media (min-width: 768px) {
  .ab-timeline__track::before {
    display: block;
  }
}

.ab-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}

@media (min-width: 768px) {
  .ab-timeline__item {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .ab-timeline__item--left .ab-timeline__text {
    grid-column: 1;
    grid-row: 1;
    padding-right: 56px;
    text-align: right;
  }

  .ab-timeline__item--left .ab-timeline__media {
    grid-column: 2;
    grid-row: 1;
    padding-left: 56px;
  }

  .ab-timeline__item--right .ab-timeline__text {
    grid-column: 2;
    grid-row: 1;
    padding-left: 56px;
    text-align: left;
  }

  .ab-timeline__item--right .ab-timeline__media {
    grid-column: 1;
    grid-row: 1;
    padding-right: 56px;
  }
}

.ab-timeline__text {
  text-align: center;
}

.ab-timeline__year {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-accent-gold);
  margin: 0 0 8px;
  line-height: 1.1;
}

.ab-timeline__heading {
  font-family: var(--font-headline);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 12px;
  line-height: 1.3;
}

.ab-timeline__text .ab-body {
  max-width: 420px;
}

@media (min-width: 768px) {
  .ab-timeline__item--left .ab-timeline__text .ab-body {
    margin-left: auto;
  }

  .ab-timeline__item--right .ab-timeline__text .ab-body {
    margin-right: auto;
  }
}

.ab-timeline__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--color-primary);
  border: 3px solid var(--color-accent-gold);
  border-radius: 50%;
  z-index: 2;
  display: none;
  box-shadow: 0 0 0 4px var(--color-surface-container-lowest);
}

@media (min-width: 768px) {
  .ab-timeline__dot {
    display: block;
  }
}

.ab-timeline__image {
  height: 220px;
  border-radius: var(--hp-radius);
  border: 1px solid rgba(232, 222, 211, 0.9);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--hp-shadow);
}

/* ══════════════════════════════════════
   MANUFACTURING
   ══════════════════════════════════════ */
.ab-manufacturing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 768px) {
  .ab-manufacturing__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ab-manufacturing__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  order: 2;
}

@media (min-width: 768px) {
  .ab-manufacturing__gallery {
    order: 1;
  }

  .ab-manufacturing__content {
    order: 2;
  }
}

.ab-manufacturing__photo {
  aspect-ratio: 1;
  border-radius: var(--hp-radius);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--hp-shadow);
}

.ab-manufacturing__photo--offset {
  margin-top: 28px;
}

.ab-manufacturing__content .ab-title {
  margin-bottom: 16px;
}

.ab-manufacturing__content > .ab-body {
  margin-bottom: 32px;
}

.ab-manufacturing__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ab-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: var(--hp-radius);
  border: 1px solid rgba(232, 222, 211, 0.8);
  box-shadow: var(--hp-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ab-feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--hp-shadow-hover);
}

.ab-feature__icon-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-surface-container-low);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
}

.ab-feature__icon-wrap .material-symbols-outlined {
  font-size: 24px;
  color: var(--color-accent-gold);
}

.ab-feature__title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  margin: 0 0 6px;
}

.ab-feature .ab-body {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* ══════════════════════════════════════
   GLOBAL REACH
   ══════════════════════════════════════ */
.ab-global {
  position: relative;
  background: linear-gradient(165deg, #141414 0%, #0b0c0c 45%, #1a1610 100%);
  color: #fff;
  overflow: hidden;
}

.ab-global__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  width: min(900px, 90vw);
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(176, 141, 87, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.ab-global__inner {
  position: relative;
  z-index: 1;
}

.ab-global__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.ab-global .ab-title {
  color: #fff;
  margin-bottom: 0;
}

.ab-section-head__line--light {
  background: var(--color-accent-gold);
  margin-top: 18px;
  margin-bottom: 0;
}

.ab-global__desc {
  color: rgba(255, 255, 255, 0.72);
  margin: 20px auto 0;
}

.ab-global__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .ab-global__stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.ab-global__stat {
  text-align: center;
  padding: 22px 16px;
  border-radius: var(--hp-radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 222, 211, 0.12);
  backdrop-filter: blur(8px);
}

.ab-global__stat-number {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-accent-gold);
  margin-bottom: 8px;
}

.ab-global__stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.ab-global__map {
  position: relative;
  width: 100%;
  height: clamp(280px, 42vw, 460px);
  border-radius: var(--hp-radius);
  overflow: hidden;
  border: 1px solid rgba(176, 141, 87, 0.28);
  background: #1a1610;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  margin-bottom: 28px;
}

.ab-global__map-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.1) brightness(0.85);
  opacity: 0.45;
  transform: scale(1.02);
}

.ab-global__map-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(176, 141, 87, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 70% 55%, rgba(176, 141, 87, 0.12) 0%, transparent 40%),
    linear-gradient(180deg, rgba(11, 12, 12, 0.15) 0%, rgba(11, 12, 12, 0.55) 100%);
  pointer-events: none;
}

.ab-global__map-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(232, 222, 211, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.ab-global__pin {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translate(-50%, -50%);
}

.ab-global__pin--top-left { top: 38%; left: 28%; }
.ab-global__pin--top-right { top: 42%; left: 72%; }
.ab-global__pin--bottom-left { top: 58%; left: 22%; }
.ab-global__pin--bottom-right { top: 55%; left: 58%; }

.ab-global__pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent-gold);
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px rgba(176, 141, 87, 0.25);
  position: relative;
  z-index: 1;
}

.ab-global__pin-pulse {
  position: absolute;
  top: 0;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: rgba(176, 141, 87, 0.45);
  animation: ab-pin-pulse 2.4s ease-out infinite;
}

@keyframes ab-pin-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(3.2); opacity: 0; }
}

.ab-global__pin-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(11, 12, 12, 0.72);
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: 999px;
  padding: 5px 10px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

@media (max-width: 640px) {
  .ab-global__pin-label {
    display: none;
  }
}

.ab-global__hubs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .ab-global__hubs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ab-global__hubs {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ab-global__hub-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
  border-radius: var(--hp-radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 222, 211, 0.12);
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.ab-global__hub-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(176, 141, 87, 0.4);
}

.ab-global__hub-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(176, 141, 87, 0.12);
  border: 1px solid rgba(176, 141, 87, 0.3);
  color: var(--color-accent-gold);
}

.ab-global__hub-icon .material-symbols-outlined {
  font-size: 22px;
}

.ab-global__hub-title {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.3;
}

.ab-global__hub-sub {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin: 0;
}

/* ══════════════════════════════════════
   TEAM
   ══════════════════════════════════════ */
.ab-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hp-gutter);
}

@media (min-width: 640px) {
  .ab-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ab-team__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ab-team__card {
  text-align: left;
}

.ab-team__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--hp-radius);
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(232, 222, 211, 0.9);
  box-shadow: var(--hp-shadow);
  background: var(--color-surface-container);
}

.ab-team__photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.45s ease;
}

.ab-team__card:hover .ab-team__photo-bg {
  transform: scale(1.04);
}

.ab-team__name {
  font-family: var(--font-headline);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 6px;
  line-height: 1.3;
}

.ab-team__role {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin: 0;
}
/* ── Video section ── */
.ab-video .hp-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ab-video__header {
  width: 100%;
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.ab-video__header .ab-label,
.ab-video__header .ab-title,
.ab-video__header .ab-body {
  text-align: center;
}

.ab-video__text {
  margin: 16px auto 0;
  max-width: 640px;
}

.ab-video__frame {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--hp-radius);
  overflow: hidden;
  background: #0b0c0c;
  border: 1px solid rgba(232, 222, 211, 0.9);
  box-shadow: var(--hp-shadow);
}

.ab-video__embed,
.ab-video__player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #0b0c0c;
}

.ab-video__player {
  object-fit: cover;
}

@media (max-width: 767px) {
  .ab-video__header {
    margin-bottom: 24px;
  }

  .ab-video__frame {
    border-radius: 10px;
  }
}