:root{
        --color-accent: oklch(95% 0.35 159);

}

/* ============================================================
   MOBILE ABOUT — Option B (Stacked Layout)
   Clean, isolated, and safe to override desktop version.
   Applies ONLY on screens below 900px.
============================================================ */
/* Hide mobile hero on desktop */
@media (min-width: 901px) {
  #about-mobile-hero {
    display: none !important;
  }
}



/* Hide mobile About on desktop */
@media (min-width: 901px) {
  #about-mobile {
    display: none !important;
  }
}

/* MOBILE LAYOUT */
@media (max-width: 900px) {

  /* Completely hide the desktop About system */
  /* #about-wireframe,
  #panel-left,
  #panel-right {
    display: none !important;
  } */
  /* Panels really should not exist on mobile */
  #panel-left,
  #panel-right {
    display: none !important;
  }



  /* Keep #about-wireframe as a scroll target, but hide its content */
  #about-wireframe {
    height: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
  }

  #about-wireframe > * {
    display: none;
  }

  #about-wireframe {
  scroll-margin-top: 60px; /* tweak to match your sticky nav height */
}






  /* Activate mobile About */
  #about-mobile {
    display: block;
    padding: 40px 20px;
    background: var(--color-background-2);
    color: var(--color-primary-dark);
  }

  #about-mobile h1 {
    font-size: 10vw;
    font-weight: 300;
    margin-bottom: 20px;
  }

  .about-mobile-intro {
    font-size: 1.2rem;
    line-height: 1.55;
    margin-bottom: 40px;
    max-width: 600px;
  }

  /* PERSON BLOCKS -------------------------------------------- */
  .about-mobile-person {
    margin-bottom: 60px;
  }

  .about-mobile-person img {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 16px;
  }

  .about-mobile-person h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 10px;
  }

  .about-mobile-person p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 600px;
  }

  /* Name SVG under portrait */
  .about-mobile-name {
    width: 60%;
    max-width: 300px;
    display: block;
    margin: 0 auto;
    opacity: 0.9;
  }
  /* ===== End of about-mobile.css ===== */

/* -----------------------------------------------------------
   MOBILE ABOUT HERO — POLISHED VERSION
------------------------------------------------------------ */

#about-mobile-hero {
  display: block;
  padding: 20px;
  background-color: var(--color-background-2);
}

.about-hero-inner {
  position: relative;
  width: 100%;
  border-radius: 24px;
  padding: 30px 24px 40px 24px;
  background: var(--color-accent);
  overflow: hidden;

  /* Maintain a good hero height */
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Title */
.about-hero-title {
  font-size: 14vw;              /* Bigger */
    font-variation-settings: "wght" 700;
  line-height: 1.0;
  margin: 0 0 20px 0;
  color: var(--color-background-2);
  z-index: 5;
}

/* Logo container */
.about-hero-svg-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-grow: 1;
  padding-bottom: 10px;
}

/* Responsive MA & YO logo */
.about-ma-yo {
  width: calc(100% - 20px);   /* 10px margin on each side */
  max-width: calc(100% - 20px);
  height: auto;
  display: block;
  opacity: 0.95;
  fill: var(--color-background-2);
}
}



