/* ═══════════════════════════════════════════════════
   About page — about.css
═══════════════════════════════════════════════════ */

.ab-main {
  background: var(--dovetail-white);
}

/* ═══════════════════════════════════════════════════
   Hero — full-bleed split
═══════════════════════════════════════════════════ */

.ab-hero {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 88vh;
}

/* ── Left: cream content panel ── */
.ab-hero-left {
  background: var(--dovetail-bg);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 100px 60px 100px max(40px, calc((100vw - 1400px) / 2 + 40px));
}

.ab-hero-left-inner {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
}

/* ── Breadcrumb nav ── */
.ab-breadcrumb {
  margin-bottom: 36px;
}

.ab-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--dovetail-taupe-700);
}

.ab-breadcrumb li {
  display: flex;
  align-items: center;
}

.ab-breadcrumb li:not(:last-child)::after {
  content: '/';
  margin: 0 8px;
  color: var(--dovetail-taupe-700);
  opacity: 0.45;
  font-size: 10px;
}

.ab-breadcrumb a {
  color: var(--dovetail-taupe-700);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ab-breadcrumb a:hover {
  color: var(--dovetail-accent);
}

.ab-breadcrumb [aria-current="page"] {
  color: var(--dovetail-dark);
}

/* ── h1 ── */
.ab-hero-h1 {
  margin: 0 0 36px;
  line-height: 1;
  text-wrap: balance;
}

.ab-h1-cal {
  display: block;
  font-family: "Cal Sans", sans-serif;
  font-size: clamp(44px, 5.5vw, 84px);
  font-weight: 600;
  color: var(--dovetail-dark);
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.ab-h1-ott {
  display: block;
  font-family: "Old Standard TT", serif;
  font-style: italic;
  font-size: clamp(34px, 4.4vw, 68px);
  font-weight: 400;
  color: var(--dovetail-accent-strong);
  line-height: 1.05;
  margin-top: 8px;
}

/* ── Hero prose ── */
.ab-hero-prose {
  margin: 0 0 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(31, 30, 27, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ab-hero-prose p {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: var(--dovetail-taupe-700);
  text-wrap: pretty;
}

/* ── CTA button ── */
.ab-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--dovetail-dark);
  color: var(--dovetail-white);
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.25s ease, color 0.25s ease;
}

.ab-hero-cta:hover {
  background: var(--dovetail-accent);
  color: var(--dovetail-dark);
}

/* ── Right: portrait ── */
.ab-hero-right {
  position: relative;
  overflow: hidden;
}

.ab-hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .ab-hero-cta,
  .ab-breadcrumb a {
    transition: none;
  }
}

/* ── Tablet ── */
@media (max-width: 1023px) {
  .ab-hero {
    min-height: 72vh;
  }

  .ab-hero-left {
    padding: 72px 48px 72px 40px;
  }

}

/* ── Mobile ── */
@media (max-width: 767px) {
  .ab-hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .ab-hero-left {
    justify-content: flex-start;
    padding: 56px 24px 64px;
  }

  .ab-hero-left-inner {
    max-width: 100%;
  }

  .ab-hero-right {
    aspect-ratio: 3 / 4;
  }

  .ab-hero-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: left bottom;
  }

}
