/* ==========================================================================
   Lohabour — About.css
   About-page-only styles. Assumes base.css is already loaded for
   variables, typography, buttons, reveal system, section primitives,
   tags, header, and footer. Self-contained — no dependency on any
   other page's stylesheet.
   ========================================================================== */

/* =========================================================
   ABOUT HERO — THEN / NOW IMAGE BLEND
   ========================================================= */

.about-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8vh;
  overflow: hidden;
  background: var(--bg-secondary);
}


/* ---------------- MEDIA WRAPPER ---------------- */

.about-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  isolation: isolate;
}


/* ---------------- NOW — MODERN IMAGE ---------------- */

.about-hero__media img.about-hero__now {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center center;

  z-index: 1;

  filter:
    saturate(0.96) contrast(1.02);
}


/* ---------------- THEN — HISTORIC IMAGE ---------------- */

.about-hero__media img.about-hero__then {
  position: absolute;

  top: 0;
  bottom: 0;
  left: 0;

  width: 52%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center center;

  z-index: 2;

  filter:
    saturate(0.65) sepia(0.10) contrast(1.03) brightness(0.98);

  /*
     * The historic image gradually disappears
     * toward the right.
     */
  -webkit-mask-image:
    linear-gradient(90deg,
      #000 0%,
      #000 58%,
      rgba(0, 0, 0, 0.92) 68%,
      rgba(0, 0, 0, 0.55) 80%,
      rgba(0, 0, 0, 0.15) 92%,
      transparent 100%);

  mask-image:
    linear-gradient(90deg,
      #000 0%,
      #000 58%,
      rgba(0, 0, 0, 0.92) 68%,
      rgba(0, 0, 0, 0.55) 80%,
      rgba(0, 0, 0, 0.15) 92%,
      transparent 100%);
}


/* ---------------- DARK READABILITY GRADIENT ---------------- */

.about-gradient {
  position: absolute;
  inset: 0;

  z-index: 3;

  pointer-events: none;

  background:
    /*
         * Darker on the left for the text
         */
    linear-gradient(90deg,
      rgba(10, 10, 9, 0.78) 0%,
      rgba(10, 10, 9, 0.58) 35%,
      rgba(10, 10, 9, 0.30) 68%,
      rgba(10, 10, 9, 0.18) 100%),

    /*
         * Bottom fade
         */
    linear-gradient(180deg,
      rgba(10, 10, 9, 0.18) 0%,
      rgba(10, 10, 9, 0.15) 45%,
      rgba(10, 10, 9, 0.88) 100%);
}


.about-gradient--strong {
  background:
    linear-gradient(180deg,
      rgba(10, 10, 9, 0.48) 0%,
      rgba(10, 10, 9, 0.86) 100%);
}


/* ---------------- CONTENT ---------------- */

.about-hero__inner {
  position: relative;
  z-index: 4;

  width: 100%;
  max-width: var(--container);

  margin: 0 auto;
  padding: 0 var(--gutter);
}


/* ---------------- ANIMATION ---------------- */

@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.about-fade {
  animation:
    aboutFadeUp 1s var(--ease-soft) var(--d, 0s) both;
}


/* ---------------- TYPOGRAPHY ---------------- */

.about-hero__headline {
  max-width: 880px;
  margin: 0;

  font-family: var(--font-display);
  font-weight: 300;

  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 0.98;

  letter-spacing: -0.035em;
  text-wrap: balance;

  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.4);
}


.about-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 18px;

  font-size: 11px;

  color: rgba(241, 239, 232, 0.82);

  text-shadow:
    0 1px 12px rgba(0, 0, 0, 0.45);
}


.about-hero__kicker::before {
  content: '';

  width: 28px;
  height: 1px;

  flex: 0 0 auto;

  background: var(--accent);
}


.about-hero__sub {
  max-width: 640px;

  margin-top: 24px;

  font-size: 17px;
  line-height: 1.6;

  color: rgba(241, 239, 232, 0.82);

  text-shadow:
    0 1px 14px rgba(0, 0, 0, 0.4);
}


.about-hero__tags {
  margin-top: 20px;
  margin-bottom: 32px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .about-hero__then {
    width: 60%;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 740px) {

  .about-hero {
    min-height: 90svh;

    align-items: center;

    padding:
      90px 0 50px;
  }

  .about-hero__then {
    width: 70%;
    height: 100%;

    object-position: 45% center;
    filter:
      saturate(0.38) sepia(0.20) contrast(1.05) brightness(0.96);

    -webkit-mask-image:
      linear-gradient(90deg,
        #000 0%,
        #000 48%,
        rgba(0, 0, 0, 0.88) 62%,
        rgba(0, 0, 0, 0.50) 76%,
        rgba(0, 0, 0, 0.12) 92%,
        transparent 100%);

    mask-image:
      linear-gradient(90deg,
        #000 0%,
        #000 48%,
        rgba(0, 0, 0, 0.88) 62%,
        rgba(0, 0, 0, 0.50) 76%,
        rgba(0, 0, 0, 0.12) 92%,
        transparent 100%);
  }


  .about-hero__now {
    object-position: 55% center;
  }


  .about-gradient {
    background:
      linear-gradient(90deg,
        rgba(10, 10, 9, 0.74) 0%,
        rgba(10, 10, 9, 0.52) 45%,
        rgba(10, 10, 9, 0.25) 100%),

      linear-gradient(180deg,
        rgba(10, 10, 9, 0.24) 0%,
        rgba(10, 10, 9, 0.18) 45%,
        rgba(10, 10, 9, 0.92) 100%);
  }


  .about-hero__headline {
    font-size: clamp(38px, 11vw, 54px);

    letter-spacing: -0.04em;
  }


  .about-hero__sub {
    font-size: 15px;
    line-height: 1.65;

    margin-top: 20px;
  }


  .about-hero__ctas .btn {
    width: min(100%, 320px);

    min-height: 44px;

    justify-content: center;
    text-align: center;
  }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

  .about-hero {
    min-height: 92svh;

    padding:
      84px 0 42px;
  }


  .about-hero__then {
    /*
         * Slightly narrower so the modern image
         * is clearly visible on small phones.
         */
    width: 58%;

    object-position: 35% center;
  }


  .about-hero__headline {
    font-size: clamp(36px, 10.8vw, 48px);
  }


  .about-hero__sub {
    max-width: 330px;

    font-size: 14px;
    line-height: 1.65;
  }
}

/* =========================================================
   SHORT DESKTOP / LAPTOP SCREENS
   Keep typography unchanged — allow hero to grow and scroll.
   Example: 1200 × 650
   ========================================================= */

@media (min-width: 741px) and (max-height: 750px) {

  .about-hero {
    min-height: 700px;
    height: auto;

    padding-top: 100px;
    padding-bottom: 60px;

    /*
     * Do not clip the hero when the viewport is short.
     * The page can scroll naturally.
     */
    overflow: visible;
  }
}

/* ---------------- Introduction ---------------- */

.about-intro__statement {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--accent);
  font-size: 12px;
}

/* ---------------- History — vertical timeline ---------------- */

.about-timeline {
  max-width: 780px;
  margin: 8px auto 0;
}

.about-timeline__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 28px;
}

.about-timeline__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-timeline__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
  margin-top: 6px;
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.about-timeline__line {
  width: 1px;
  flex: 1 1 auto;
  background: var(--border);
  margin-top: 6px;
}

.about-timeline__content {
  padding-bottom: 48px;
}

.about-timeline__era {
  margin-bottom: 8px;
}

.about-timeline__content h3 {
  font-size: 21px;
  font-weight: 500;
  margin: 0 0 10px;
}

.about-timeline__content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
  max-width: 60ch;
}

.about-timeline__item:last-child .about-timeline__content {
  padding-bottom: 0;
}

@media (max-width: 600px) {
  .about-timeline__item {
    grid-template-columns: 20px 1fr;
    gap: 18px;
  }
}

/* ---------------- Heritage — then/now split ---------------- */

/* =========================================================
   ABOUT — HERITAGE / THEN & NOW
   ========================================================= */

.about-heritage {
  padding: 120px 0 0;
  background: var(--bg-secondary);
}


/* ---------------- IMAGE SPLIT ---------------- */

.about-heritage__split {
  position: relative;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 2px;

  background: var(--border);
}


.about-heritage__panel {
  position: relative;

  aspect-ratio: 4 / 3;

  overflow: hidden;
}


.about-heritage__panel img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.8s var(--ease-soft),
    filter 0.5s ease;
}


/* ---------------- THEN ---------------- */

.about-heritage__panel--then img {
  object-position: center center;

  /*
     * Subtle historical treatment.
     * Don't make it too faded.
     */
  filter:
    saturate(0.65) sepia(0.10) contrast(1.03) brightness(0.98);
}


/* ---------------- NOW ---------------- */

.about-heritage__panel--now img {
  object-position: center center;
}


/* ---------------- HOVER ---------------- */

.about-heritage__panel:hover img {
  transform: scale(1.025);
}


/* ---------------- LABELS ---------------- */

.about-heritage__panel-label {
  position: absolute;

  bottom: 20px;
  left: 20px;

  z-index: 2;

  color: var(--text);

  background: rgba(10, 10, 9, 0.62);

  padding: 6px 12px;

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}


/* ---------------- CENTER ARROW ---------------- */

.about-heritage__arrow {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  z-index: 5;

  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--accent);
  color: #0A0A09;

  font-size: 22px;
  font-weight: 600;

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.20);
}


/* ---------------- TEXT ---------------- */

.about-heritage__text {
  max-width: 760px;

  margin:
    56px 0 100px;
}


.about-heritage__statement {
  margin: 24px 0;

  font-family: var(--font-display);

  font-weight: 300;

  font-size: clamp(24px, 3vw, 34px);

  line-height: 1.3;

  letter-spacing: -0.015em;

  color: var(--text);
}

.about-heritage .link-arrow {
  margin-bottom: 20px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .about-heritage__panel {
    aspect-ratio: 3 / 2;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .about-heritage {
    padding: 80px 0 0;
  }


  .about-heritage__split {
    grid-template-columns: 1fr;

    gap: 2px;
  }


  .about-heritage__panel {
    /*
         * Don't make them too short on phones.
         */
    aspect-ratio: 4 / 3;
  }


  /* THEN */

  .about-heritage__panel--then img {
    object-position: 35% center;

    filter:
      saturate(0.68) sepia(0.08) contrast(1.02) brightness(1);
  }


  /* NOW */

  .about-heritage__panel--now img {
    object-position: center center;
  }


  /* ---------------- ARROW ---------------- */

  .about-heritage__arrow {
    /*
         * Put the arrow exactly between
         * the two stacked images.
         */
    top: 50%;

    width: 48px;
    height: 48px;

    font-size: 19px;
  }


  /* ---------------- LABELS ---------------- */

  .about-heritage__panel-label {
    bottom: 14px;
    left: 14px;

    padding: 5px 10px;
  }


  /* ---------------- TEXT ---------------- */

  .about-heritage__text {
    margin:
      40px 0 70px;
  }
}

/* ---------------- Our approach ---------------- */

.about-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 8px;
}

.about-approach-item {
  background: var(--bg);
  padding: 32px 26px;
}

.about-approach-item__num {
  display: block;
  margin-bottom: 16px;
}

.about-approach-item h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 10px;
}

.about-approach-item p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 900px) {
  .about-approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .about-approach-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------- Custom / OEM / ODM ---------------- */

.about-oem {
  position: relative;
  padding: 120px 0;
  background: #050504;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.about-oem .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-oem .mono-label {
  justify-content: center;
}

.about-oem .lede {
  margin-left: auto;
  margin-right: auto;
}

.about-oem-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 48px 0 40px;
}

.about-oem-flow__step {
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 18px;
  white-space: nowrap;
}

.about-oem-flow__arrow {
  color: var(--accent);
  flex: 0 0 auto;
}

@media (max-width: 700px) {
  .about-oem {
    padding: 90px 0;
  }

  .about-oem-flow {
    flex-direction: column;
    gap: 10px;
  }

  .about-oem-flow__arrow {
    transform: rotate(90deg);
  }
}

/* ---------------- Lohabour today — tag cloud ---------------- */

.about-today-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ---------------- Figures ---------------- */

.about-figures {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-figures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.about-figure {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-figure__value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3.4vw, 46px);
  color: var(--text);
  letter-spacing: -0.01em;
}

.about-figure__label {
  color: var(--accent);
  margin-top: 4px;
}

.about-figure__sublabel {
  font-size: 12.5px;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .about-figures-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 500px) {
  .about-figures-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------- Global presence ---------------- */

/* ==================================================
   WORLD MAP
   ================================================== */

.about-map {
  position: relative;
  width: 100%;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  isolation: isolate;
}

.about-map__svg {
  display: block;
  width: 100%;
  height: auto;
}

.about-map__svg .about-map__land {
  fill: #201f1c;
  stroke: none;
  transition: fill 0.4s var(--ease);
}

.about-map__svg .about-map__borders {
  fill: none;
  stroke: rgba(241, 239, 232, 0.06);
  stroke-width: 0.6;
}


/* ==================================================
   MAP MARKERS LAYER
   ================================================== */

.about-map__markers {
  position: absolute;

  /* Matches the map padding so markers align with SVG */
  inset: 40px 0 0 0;

  z-index: 10;

  /*
     * The marker itself restores pointer-events.
     * This prevents the marker layer from interfering
     * with the rest of the map.
     */
  pointer-events: none;
}


/* ==================================================
   MARKER
   ================================================== */

.about-map__point {
  position: absolute;

  left: var(--x);
  top: var(--y);

  transform: translate(-50%, -50%);

  width: var(--d, 14px);
  height: var(--d, 14px);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  z-index: 1;

  pointer-events: auto;
}


/*
 * Bring the active marker above neighboring markers
 * and above the map.
 */
.about-map__point:hover,
.about-map__point:focus-visible,
.about-map__point:focus-within {
  z-index: 100;
}


/* ==================================================
   PROJECT MARKER DOT
   ================================================== */

.about-map__dot {
  position: absolute;
  inset: 0;

  border-radius: 50%;

  background: var(--accent-soft);
  border: 1px solid var(--accent);

  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.about-map__point:hover .about-map__dot,
.about-map__point:focus-visible .about-map__dot {
  background: var(--accent);
  transform: scale(1.12);
}


/* ==================================================
   PULSE
   ================================================== */

.about-map__pulse {
  position: absolute;
  inset: 0;

  border-radius: 50%;

  background: var(--accent);
  opacity: 0.35;

  animation: aboutMapPulse 2.6s ease-out infinite;

  pointer-events: none;
}

@keyframes aboutMapPulse {

  0% {
    transform: scale(0.7);
    opacity: 0.35;
  }

  100% {
    transform: scale(2.1);
    opacity: 0;
  }

}


/* ==================================================
   HQ MARKER
   ================================================== */

.about-map__point--hq {
  width: 16px;
  height: 16px;

  /*
     * HQ sits slightly above normal markers.
     */
  z-index: 2;
}


/*
 * When the HQ is hovered/focused, make sure
 * the entire marker + tooltip is on top.
 */
.about-map__point--hq:hover,
.about-map__point--hq:focus-visible,
.about-map__point--hq:focus-within {
  z-index: 200;
}


/*
 * HQ uses a diamond instead of a circle.
 */
.about-map__point--hq .about-map__dot {
  border-radius: 3px;

  transform: rotate(45deg);

  background: var(--accent);
  border-color: var(--text);
}


/*
 * HQ hover state.
 *
 * Keep the rotation AND scale.
 */
.about-map__point--hq:hover .about-map__dot,
.about-map__point--hq:focus-visible .about-map__dot {
  transform: rotate(45deg) scale(1.15);
}


/* ==================================================
   TOOLTIP
   ================================================== */

.about-map__tooltip {
  position: absolute;

  bottom: calc(100% + 10px);
  left: 50%;

  transform:
    translateX(-50%) translateY(4px);

  display: flex;
  flex-direction: column;
  gap: 2px;

  min-width: 150px;

  padding: 10px 14px;

  background: #0A0A09;

  border: 1px solid var(--border);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.5);

  font-size: 12px;
  line-height: 1.5;

  color: var(--text-secondary);

  opacity: 0;

  pointer-events: none;

  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease);

  /*
     * Tooltip must sit above all markers.
     */
  z-index: 1000;

  white-space: nowrap;
}


/* Tooltip title */

.about-map__tooltip strong {
  font-family: var(--font-display);

  font-size: 13px;
  font-weight: 600;

  color: var(--text);
}


/* Project count */

.about-map__tooltip em {
  font-style: normal;

  font-family: var(--font-mono);

  font-size: 10px;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: var(--accent);
}


/*
 * Show tooltip.
 */
.about-map__point:hover .about-map__tooltip,
.about-map__point:focus-visible .about-map__tooltip,
.about-map__point:focus-within .about-map__tooltip {

  opacity: 1;

  transform:
    translateX(-50%) translateY(0);

  pointer-events: auto;
}


/* ==================================================
   GLOBAL LOCATION LINE
   ================================================== */

.about-global__line {
  margin: 32px 0 8px;

  padding-top: 24px;

  border-top: 1px solid var(--border);

  color: var(--text-secondary);

  text-transform: none;

  letter-spacing: 0.04em;
}


/* ==================================================
   GLOBAL LOCATION GRID
   ================================================== */

.about-global-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;

  margin-top: 32px;
}

.about-global-item h4 {
  font-family: var(--font-display);

  font-size: 16px;
  font-weight: 500;

  color: var(--text);

  margin: 0 0 6px;
}

.about-global-item p {
  font-size: 12.5px;

  color: var(--text-secondary);

  margin: 0;
}


/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 900px) {

  .about-map {
    margin-top: 32px;
    padding-top: 32px;
  }

  .about-map__markers {
    inset: 32px 0 0 0;
  }

  /*
     * Slightly reduce the largest project circles.
     */
  .about-map__point {
    width: min(var(--d, 14px), 34px);
    height: min(var(--d, 14px), 34px);
  }

  .about-map__point--hq {
    width: 15px;
    height: 15px;
  }

  .about-global-grid {
    gap: 20px;
  }

}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 700px) {

  .about-map {
    margin-top: 28px;
    padding-top: 28px;
  }

  .about-map__markers {
    inset: 28px 0 0 0;
  }


  /*
     * Smaller project markers on phones.
     *
     * This prevents the 9-project / 6-project circles
     * from becoming visually dominant.
     */
  .about-map__point {
    width: min(var(--d, 12px), 24px);
    height: min(var(--d, 12px), 24px);
  }


  /*
     * Smaller HQ diamond.
     */
  .about-map__point--hq {
    width: 13px;
    height: 13px;
  }


  /*
     * Slightly smaller hover enlargement.
     */
  .about-map__point:hover .about-map__dot,
  .about-map__point:focus-visible .about-map__dot {
    transform: scale(1.08);
  }

  .about-map__point--hq:hover .about-map__dot,
  .about-map__point--hq:focus-visible .about-map__dot {
    transform: rotate(45deg) scale(1.1);
  }


  /*
     * Tooltip adapts to narrow screens.
     */
  .about-map__tooltip {
    min-width: 130px;
    max-width: 44vw;

    padding: 9px 11px;

    font-size: 11px;

    white-space: normal;
  }

  .about-map__tooltip strong {
    font-size: 12px;
  }

  .about-map__tooltip em {
    font-size: 9px;
  }


  /*
     * Global locations become two columns.
     */
  .about-global-grid {
    grid-template-columns: 1fr 1fr;

    gap: 20px 18px;

    margin-top: 28px;
  }

}


/* ==================================================
   SMALL PHONE
   ================================================== */

@media (max-width: 460px) {

  .about-map {
    margin-top: 24px;
    padding-top: 24px;
  }

  .about-map__markers {
    inset: 24px 0 0 0;
  }


  /*
     * Keep circles compact on very small screens.
     */
  .about-map__point {
    width: min(var(--d, 11px), 20px);
    height: min(var(--d, 11px), 20px);
  }


  .about-map__point--hq {
    width: 12px;
    height: 12px;
  }


  /*
     * Tooltip should never become wider than the phone.
     */
  .about-map__tooltip {
    min-width: 115px;
    max-width: 55vw;

    padding: 8px 10px;

    font-size: 10.5px;
  }

  .about-map__tooltip strong {
    font-size: 11.5px;
  }

  .about-map__tooltip em {
    font-size: 8.5px;
  }


  /*
     * Single-column location list.
     */
  .about-global-grid {
    grid-template-columns: 1fr;

    gap: 18px;

    margin-top: 24px;
  }


  .about-global-item h4 {
    font-size: 15px;
  }

  .about-global-item p {
    font-size: 12px;
  }

}


/* ==================================================
   REDUCED MOTION
   ================================================== */

@media (prefers-reduced-motion: reduce) {

  .about-map__pulse {
    animation: none;
    display: none;
  }

  .about-map__dot,
  .about-map__tooltip {
    transition: none;
  }

}

/* =========================================================
   ABOUT — WHAT WE BELIEVE
   ========================================================= */

.about-believe {
  position: relative;

  padding: 150px 0 160px;

  background: var(--bg-secondary);

  overflow: hidden;
}


/* =========================================================
   SUBTLE ARCHITECTURAL LINE
   ========================================================= */

.about-believe {
  position: relative;

  padding: 150px 0 160px;

  background: var(--bg-secondary);

  overflow: hidden;

  border-top: 1px solid var(--border);
}


/* =========================================================
   CONTAINER
   ========================================================= */

.about-believe .container {
  position: relative;

  z-index: 1;
}


/* =========================================================
   HEADER
   ========================================================= */

.about-believe .mono-label {
  justify-content: center;

  margin-bottom: 18px;
}


.about-believe h2 {
  max-width: 820px;

  margin:
    0 auto 80px;

  text-align: center;
}


/* =========================================================
   FOUR PRINCIPLES
   ========================================================= */

.about-believe-lines {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  max-width: 1200px;

  margin:
    0 auto 85px;

  border-top:
    1px solid var(--border);

  border-bottom:
    1px solid var(--border);

  background: var(--bg-secondary);
}


/* =========================================================
   PRINCIPLE ITEMS
   ========================================================= */

.about-believe-lines p {
  position: relative;

  min-height: 145px;

  margin: 0;

  padding:
    46px 28px 38px;

  display: flex;

  align-items: flex-start;
  justify-content: center;

  font-family: var(--font-display);

  font-weight: 300;

  font-size: 21px;

  line-height: 1.35;

  color: var(--text);

  text-align: center;
}


/* =========================================================
   NUMBERING
   ========================================================= */

.about-believe-lines p::before {
  position: absolute;

  top: 14px;
  left: 50%;

  transform: translateX(-50%);

  font-family: var(--font-mono);

  font-size: 10px;

  line-height: 1;

  letter-spacing: 0.16em;

  color: var(--accent);
}


/* Individual numbers */

.about-believe-lines p:nth-child(1)::before {
  content: '01';
}

.about-believe-lines p:nth-child(2)::before {
  content: '02';
}

.about-believe-lines p:nth-child(3)::before {
  content: '03';
}

.about-believe-lines p:nth-child(4)::before {
  content: '04';
}


/* =========================================================
   VERTICAL DIVIDERS
   ========================================================= */

.about-believe-lines p:not(:last-child)::after {
  content: '';

  position: absolute;

  top: 20px;
  right: 0;
  bottom: 20px;

  width: 1px;

  background: var(--border);
}


/* =========================================================
   EXPLANATORY TEXT
   ========================================================= */

.about-believe__text {
  max-width: 680px;

  margin:
    0 auto 80px;

  text-align: center;

  color: var(--text-secondary);
}


/* =========================================================
   FINAL STATEMENT
   ========================================================= */

.about-believe__statement {
  position: relative;

  max-width: 900px;

  margin: 0 auto;

  padding:
    55px 70px;

  font-family: var(--font-display);

  font-weight: 300;

  font-size:
    clamp(34px, 5vw, 64px);

  line-height: 1.08;

  letter-spacing: -0.03em;

  color: var(--text);

  text-align: center;
}


/* =========================================================
   OPENING QUOTE
   ========================================================= */

.about-believe__statement::before {
  content: '“';

  position: absolute;

  top: 4px;
  left: 0;

  font-family: Georgia, serif;

  font-size: 72px;

  line-height: 1;

  color: var(--accent);

  opacity: 0.65;
}


/* =========================================================
   CLOSING QUOTE
   ========================================================= */

.about-believe__statement::after {
  content: '”';

  position: absolute;

  right: 0;
  bottom: -15px;

  font-family: Georgia, serif;

  font-size: 72px;

  line-height: 1;

  color: var(--accent);

  opacity: 0.65;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

  .about-believe {
    padding:
      120px 0 140px;
  }


  /*
     * Four items become two rows.
     */

  .about-believe-lines {
    grid-template-columns:
      repeat(2, 1fr);
  }


  /*
     * Remove the vertical divider after item 2.
     */

  .about-believe-lines p:nth-child(2)::after {
    display: none;
  }


  /*
     * Horizontal separator between rows.
     */

  .about-believe-lines p:nth-child(1),
  .about-believe-lines p:nth-child(2) {
    border-bottom:
      1px solid var(--border);
  }


  .about-believe-lines p {
    min-height: 140px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .about-believe {
    padding:
      100px 0 110px;
  }


  /*
     * Remove the large central architectural line.
     */

  .about-believe::before {
    display: none;
  }


  /* ---------------- HEADER ---------------- */

  .about-believe .mono-label {
    margin-bottom: 16px;
  }


  .about-believe h2 {
    margin-bottom: 55px;
  }


  /* ---------------- FOUR PRINCIPLES ---------------- */

  .about-believe-lines {
    grid-template-columns: 1fr;

    margin-bottom: 60px;
  }


  .about-believe-lines p {
    min-height: auto;

    padding:
      30px 30px 30px 70px;

    justify-content: flex-start;

    font-size: 19px;

    line-height: 1.4;

    text-align: left;
  }


  /*
     * Move numbers to the left.
     */

  .about-believe-lines p::before {
    top: 31px;
    left: 30px;

    transform: none;

    font-size: 10px;
  }


  /*
     * Remove desktop vertical dividers.
     */

  .about-believe-lines p:not(:last-child)::after {
    top: auto;

    right: 20px;
    bottom: 0;
    left: 20px;

    width: auto;
    height: 1px;
  }


  /* ---------------- DESCRIPTION ---------------- */

  .about-believe__text {
    margin:
      0 auto 60px;

    text-align: center;
  }


  /* ---------------- STATEMENT ---------------- */

  .about-believe__statement {
    max-width: 100%;

    padding:
      50px 38px 45px;

    font-size:
      clamp(34px, 10vw, 48px);

    line-height: 1.08;
  }


  /* Opening quote */

  .about-believe__statement::before {
    top: 2px;
    left: 5px;

    font-size: 62px;
  }


  /* Closing quote */

  .about-believe__statement::after {
    right: 5px;
    bottom: -15px;

    font-size: 62px;
  }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

  .about-believe {
    padding:
      90px 0 100px;
  }


  .about-believe h2 {
    margin-bottom: 45px;
  }


  .about-believe-lines p {
    padding:
      27px 22px 27px 62px;

    font-size: 17px;
  }


  .about-believe-lines p::before {
    top: 29px;
    left: 22px;
  }


  .about-believe__text {
    font-size: 15px;
    line-height: 1.65;

    margin-bottom: 55px;
  }


  .about-believe__statement {
    padding:
      45px 28px 40px;

    font-size:
      clamp(32px, 9.8vw, 42px);
  }


  .about-believe__statement::before {
    left: 2px;

    font-size: 55px;
  }


  .about-believe__statement::after {
    right: 2px;
    bottom: -12px;

    font-size: 55px;
  }

}

/* ---------------- Final CTA banner ---------------- */

.cta-banner {
  position: relative;
  padding: 160px 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner .about-hero__media img {
  object-position: bottom;
}


.cta-banner .container {
  position: relative;
  z-index: 4;
}

.cta-banner .display {
  margin: 16px auto 20px;
}

.cta-banner .lede {
  margin: 0 auto 32px;
}

.cta-banner__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.cta-banner .mono-label {
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  .about-hero__media img {
    transform: none;
  }
}